HomeSort by relevance Sort by last modified time
    Searched refs:EncodedAnnotation (Results 1 - 11 of 11) sorted by null

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
AnnotationItem.java 23 public EncodedAnnotation annotation;
29 (annotation = new EncodedAnnotation()).read(file);
EncodedValue.java 26 public EncodedAnnotation encodedAnnotation;
54 (encodedAnnotation = new EncodedAnnotation()).read(file);
83 } else if (encodedAnnotation != null) {
84 encodedAnnotation.write(file);
94 } else if (encodedAnnotation != null) {
95 encodedAnnotation.incrementIndex(kind, insertedIdx);
EncodedAnnotation.java 21 public class EncodedAnnotation implements RawDexObject {
  /art/dexlayout/
dex_writer.h 44 size_t WriteEncodedAnnotation(dex_ir::EncodedAnnotation* annotation, size_t offset);
dex_verify.h 74 bool VerifyEncodedAnnotation(dex_ir::EncodedAnnotation* orig,
75 dex_ir::EncodedAnnotation* output,
dexlayout.h 99 void DumpEncodedAnnotation(dex_ir::EncodedAnnotation* annotation);
dex_ir.h 44 class EncodedAnnotation;
660 void SetEncodedAnnotation(EncodedAnnotation* encoded_annotation)
678 EncodedAnnotation* GetEncodedAnnotation() const { return encoded_annotation_.get(); }
680 EncodedAnnotation* ReleaseEncodedAnnotation() { return encoded_annotation_.release(); }
701 std::unique_ptr<EncodedAnnotation> encoded_annotation_;
724 class EncodedAnnotation {
726 EncodedAnnotation(TypeId* type, AnnotationElementVector* elements)
736 DISALLOW_COPY_AND_ASSIGN(EncodedAnnotation);
    [all...]
dex_verify.cc 501 bool VerifyEncodedAnnotation(dex_ir::EncodedAnnotation* orig,
502 dex_ir::EncodedAnnotation* output,
    [all...]
dex_writer.cc 207 size_t DexWriter::WriteEncodedAnnotation(dex_ir::EncodedAnnotation* annotation, size_t offset) {
dex_ir.cc 310 item->SetEncodedAnnotation(new EncodedAnnotation(GetTypeId(type_idx), elements));
    [all...]
dexlayout.cc 502 void DexLayout::DumpEncodedAnnotation(dex_ir::EncodedAnnotation* annotation) {
    [all...]

Completed in 171 milliseconds