/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
D | ReferenceType.java | 44 public static String toString(int referenceType) { in toString() argument 45 switch (referenceType) { in toString() 55 throw new InvalidReferenceTypeException(referenceType); in toString() 78 public static void validateReferenceType(int referenceType) { in validateReferenceType() argument 79 if (referenceType < 0 || referenceType > 3) { in validateReferenceType() 80 throw new InvalidReferenceTypeException(referenceType); in validateReferenceType() 85 private final int referenceType; field in ReferenceType.InvalidReferenceTypeException 87 public InvalidReferenceTypeException(int referenceType) { in InvalidReferenceTypeException() argument 88 super("Invalid reference type: %d", referenceType); in InvalidReferenceTypeException() 89 this.referenceType = referenceType; in InvalidReferenceTypeException() [all …]
|
D | Opcode.java | 327 public final int referenceType; field in Opcode 331 Opcode(short opcodeValue, String opcodeName, int referenceType, Format format) { in Opcode() argument 332 this(opcodeValue, opcodeName, ALL_APIS, referenceType, format, 0, (short)-1); in Opcode() 335 Opcode(short opcodeValue, String opcodeName, int referenceType, Format format, int flags) { in Opcode() argument 336 this(opcodeValue, opcodeName, ALL_APIS, referenceType, format, flags, (short)-1); in Opcode() 339 …Opcode(short opcodeValue, String opcodeName, int referenceType, Format format, int flags, short ju… in Opcode() argument 340 this(opcodeValue, opcodeName, ALL_APIS, referenceType, format, flags, jumboOpcodeValue); in Opcode() 343 …Opcode(short opcodeValue, String opcodeName, int apiConstraints, int referenceType, Format format)… in Opcode() argument 344 this(opcodeValue, opcodeName, apiConstraints, referenceType, format, 0, (short)-1); in Opcode() 347 …Opcode(short opcodeValue, String opcodeName, int apiConstraints, int referenceType, Format format,… in Opcode() argument [all …]
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
D | ResourceReferenceResolver.java | 11 private String referenceType; field in ResourceReferenceResolver 14 ResourceReferenceResolver(String referenceType) { in ResourceReferenceResolver() argument 15 this(referenceType, new String[] { referenceType }); in ResourceReferenceResolver() 18 ResourceReferenceResolver(String referenceType, String[] allowedReferenceTypesForRawValues) { in ResourceReferenceResolver() argument 19 this.referenceType = referenceType; in ResourceReferenceResolver() 28 String valuePointer = referenceType + "/" + name; in processResource()
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26244/ |
D | SegmentIndexBox.java | 176 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/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/ |
D | DexBackedInstruction20bc.java | 55 int referenceType = getReferenceType(); in getReference() local 56 …return DexBackedReference.makeReference(dexFile, referenceType, dexFile.readUshort(instructionStar… in getReference() 60 int referenceType = (dexFile.readUbyte(instructionStart + 1) >>> 6) + 1; in getReferenceType() local 61 ReferenceType.validateReferenceType(referenceType); in getReferenceType() 62 return referenceType; in getReferenceType()
|
D | DexBackedInstruction21c.java | 54 …return DexBackedReference.makeReference(dexFile, opcode.referenceType, dexFile.readUshort(instruct… in getReference() 59 return opcode.referenceType; in getReferenceType()
|
D | DexBackedInstruction31c.java | 54 return DexBackedReference.makeReference(dexFile, opcode.referenceType, in getReference() 60 return opcode.referenceType; in getReferenceType()
|
D | DexBackedInstruction3rc.java | 61 return DexBackedReference.makeReference(dexFile, opcode.referenceType, in getReference() 67 return opcode.referenceType; in getReferenceType()
|
D | DexBackedInstruction22c.java | 63 …return DexBackedReference.makeReference(dexFile, opcode.referenceType, dexFile.readUshort(instruct… in getReference() 68 return opcode.referenceType; in getReferenceType()
|
D | DexBackedInstruction35c.java | 82 return DexBackedReference.makeReference(dexFile, opcode.referenceType, in getReference() 88 return opcode.referenceType; in getReferenceType()
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
D | SyntheticAccessCommentMethodItem.java | 112 int referenceType; in writeTo() local 114 referenceType = ReferenceType.METHOD; in writeTo() 116 referenceType = ReferenceType.FIELD; in writeTo() 118 ReferenceFormatter.writeReference(writer, referenceType, accessedMember.accessedMember); in writeTo()
|
D | ReferenceFormatter.java | 46 public static void writeReference(IndentingWriter writer, int referenceType, in writeReference() argument 48 switch (referenceType) { in writeReference()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/ |
D | DexBackedReference.java | 42 …public static Reference makeReference(@Nonnull DexBackedDexFile dexFile, int referenceType, int re… in makeReference() argument 43 switch (referenceType) { in makeReference() 53 throw new ExceptionWithContext("Invalid reference type: %d", referenceType); in makeReference()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/ |
D | ImmutableReferenceFactory.java | 59 public static ImmutableReference of(int referenceType, Reference reference) { in of() argument 60 switch (referenceType) { in of() 70 throw new ExceptionWithContext("Invalid reference type: %d", referenceType); in of()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
D | Preconditions.java | 191 public static <T extends Reference> T checkReference(int referenceType, T reference) { in checkReference() argument 192 switch (referenceType) { in checkReference() 214 …throw new IllegalArgumentException(String.format("Not a valid reference type: %d", referenceType)); in checkReference()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/ |
D | ImmutableInstruction21c.java | 55 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction21c() 70 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|
D | ImmutableInstruction31c.java | 55 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction31c() 70 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|
D | ImmutableInstruction3rc.java | 59 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction3rc() 76 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|
D | ImmutableInstruction22c.java | 58 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction22c() 75 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|
D | ImmutableInstruction35c.java | 70 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction35c() 95 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|
D | ImmutableInstruction20bc.java | 56 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction20bc()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/ |
D | BuilderInstruction21c.java | 59 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|
D | BuilderInstruction31c.java | 59 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|
D | BuilderInstruction3rc.java | 64 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|
D | BuilderInstruction22c.java | 63 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|