Home
last modified time | relevance | path

Searched refs:AnnotationElement (Results 1 – 7 of 7) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DEncodedAnnotation.java24 public AnnotationElement[] elements;
31 elements = new AnnotationElement[size]; in read()
33 (elements[i] = new AnnotationElement()).read(file); in read()
43 for (AnnotationElement annotationElement : elements) { in write()
55 for (AnnotationElement element : elements) { in incrementIndex()
DAnnotationElement.java21 public class AnnotationElement implements RawDexObject { class
/art/dexlayout/
Ddex_verify.h78 bool VerifyAnnotationElement(dex_ir::AnnotationElement* orig,
79 dex_ir::AnnotationElement* output,
Ddex_ir.h834 class AnnotationElement {
836 AnnotationElement(StringId* name, EncodedValue* value) : name_(name), value_(value) { } in AnnotationElement() function
845 DISALLOW_COPY_AND_ASSIGN(AnnotationElement);
848 using AnnotationElementVector = std::vector<std::unique_ptr<AnnotationElement>>;
Ddex_verify.cc547 bool VerifyAnnotationElement(dex_ir::AnnotationElement* orig, in VerifyAnnotationElement()
548 dex_ir::AnnotationElement* output, in VerifyAnnotationElement()
Ddex_writer.cc201 for (std::unique_ptr<dex_ir::AnnotationElement>& annotation_element : in WriteEncodedAnnotation()
Ddex_ir_builder.cc1208 elements->push_back(std::make_unique<AnnotationElement>( in ReadEncodedValue()