Home
last modified time | relevance | path

Searched refs:referenceType (Results 1 – 12 of 12) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
DInstructionWithReference.java36 private ReferenceType referenceType; field in InstructionWithReference
41 this.referenceType = opcode.referenceType; in InstructionWithReference()
45 …otected InstructionWithReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) { in InstructionWithReference() argument
48 this.referenceType = referenceType; in InstructionWithReference()
55 this.referenceType = readReferenceType(opcode, buffer, bufferIndex); in InstructionWithReference()
65 return referenceType; in getReferenceType()
73 return opcode.referenceType; in readReferenceType()
77 switch (referenceType) { in lookupReferencedItem()
94 switch (referenceType) { in checkReferenceType()
DOpcode.java467 public final ReferenceType referenceType; field in Opcode
472 Opcode(short opcodeValue, String opcodeName, ReferenceType referenceType, Format format) { in Opcode() argument
473 this(opcodeValue, opcodeName, referenceType, format, 0); in Opcode()
476 …Opcode(short opcodeValue, String opcodeName, ReferenceType referenceType, Format format, int flags… in Opcode() argument
477 this(opcodeValue, opcodeName, referenceType, format, flags, (short)-1); in Opcode()
480 …Opcode(short opcodeValue, String opcodeName, ReferenceType referenceType, Format format, int flags… in Opcode() argument
483 this.referenceType = referenceType; in Opcode()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26244/
DSegmentIndexBox.java176 byte referenceType; field in SegmentIndexBox.Entry
186 …public Entry(byte referenceType, int referencedSize, long subsegmentDuration, byte startsWithSap, … in Entry() argument
187 this.referenceType = referenceType; in Entry()
196 return referenceType; in getReferenceType()
199 public void setReferenceType(byte referenceType) { in setReferenceType() argument
200 this.referenceType = referenceType; in setReferenceType()
246 "referenceType=" + referenceType + in toString()
262 if (referenceType != entry.referenceType) return false; in equals()
274 int result = (int) referenceType; in hashCode()
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
DInstructionWithJumboReference.java46 …ed InstructionWithJumboReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) { in InstructionWithJumboReference() argument
47 super(opcode, referencedItem, referenceType); in InstructionWithJumboReference()
DInstruction20bc.java69 short referenceType = (short)(val >> 6); in readReferenceType() local
70 return ReferenceType.fromValidationErrorReferenceType(referenceType); in readReferenceType()
DInstruction22c.java69 opcode.referenceType.name(), opcode.getJumboOpcode().name)); in writeInstruction()
71 … throw new RuntimeException(String.format("%s index is too large.", opcode.referenceType.name())); in writeInstruction()
DInstruction21c.java78 opcode.referenceType.name(), opcode.getJumboOpcode().name)); in writeInstruction()
80 … throw new RuntimeException(String.format("%s index is too large", opcode.referenceType.name())); in writeInstruction()
DInstruction3rc.java86 opcode.referenceType.name(), opcode.getJumboOpcode().name)); in writeInstruction()
88 … throw new RuntimeException(String.format("%s index is too large.", opcode.referenceType.name())); in writeInstruction()
DInstruction35c.java100 opcode.referenceType.name(), opcode.getJumboOpcode().name)); in writeInstruction()
102 … throw new RuntimeException(String.format("%s index is too large.", opcode.referenceType.name())); in writeInstruction()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp1374 varDecl(hasType(qualType(referenceType()))))); in TEST()
1379 varDecl(hasType(qualType(hasCanonicalType(referenceType())))))); in TEST()
3660 hasType(referenceType())))); in TEST()
3674 hasType(referenceType())))); in TEST()
3684 hasType(referenceType())))); in TEST()
3698 hasType(referenceType())))); in TEST()
3712 hasType(referenceType())))); in TEST()
3714 hasType(referenceType())))); in TEST()
3716 hasType(referenceType())))); in TEST()
3722 hasType(referenceType())))); in TEST()
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp360 REGISTER_MATCHER(referenceType); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h3185 AST_TYPE_MATCHER(ReferenceType, referenceType);