/external/connectedappssdk/tests/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/ |
D | CrossProfileSupportedReturnTypeTest.java | 51 TypeWithReturnValue.referenceType("Void"), in data() 52 TypeWithReturnValue.referenceType("String"), in data() 53 TypeWithReturnValue.referenceType("CharSequence"), in data() 54 TypeWithReturnValue.referenceType("String[]"), in data() 56 TypeWithReturnValue.referenceType("byte[]"), in data() 57 TypeWithReturnValue.referenceType("byte[][][]"), in data() 58 TypeWithReturnValue.referenceType("Byte"), in data() 60 TypeWithReturnValue.referenceType("short[]"), in data() 61 TypeWithReturnValue.referenceType("short[][][]"), in data() 62 TypeWithReturnValue.referenceType("Short"), in data() [all …]
|
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/ |
D | ReferenceType.java | 78 public static void validateReferenceType(int referenceType) { in validateReferenceType() argument 79 if (referenceType < 0 || referenceType > 4) { 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() 92 … public InvalidReferenceTypeException(int referenceType, String message, Object... formatArgs) { in InvalidReferenceTypeException() argument 94 this.referenceType = referenceType; in InvalidReferenceTypeException() 98 return referenceType; in getReferenceType()
|
/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/google-smali/baksmali/src/main/java/com/android/tools/smali/baksmali/ |
D | ListReferencesCommand.java | 43 private final int referenceType; field in ListReferencesCommand 49 public ListReferencesCommand(@Nonnull List<JCommander> commandAncestors, int referenceType) { in ListReferencesCommand() argument 51 this.referenceType = referenceType; in ListReferencesCommand() 71 for (Reference reference: dexFile.getReferences(referenceType)) { in run()
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | ObjectReferenceImpl.java | 89 return (ClassTypeImpl)referenceType(); in invokableReferenceType() 146 return referenceType(); in type() 149 public ReferenceType referenceType() { in referenceType() method in ObjectReferenceImpl 154 type = vm.referenceType(rtinfo.typeID, in referenceType() 181 ((ReferenceTypeImpl)referenceType()).validateFieldAccess(field); in getValues() 195 map = referenceType().getValues(staticFields); in getValues() 236 ((ReferenceTypeImpl)referenceType()).validateFieldSet(field); in setValue() 239 ReferenceType type = referenceType(); in setValue() 394 if (referenceType() instanceof InterfaceType) { in invokeMethod() 395 InterfaceType type = (InterfaceType)referenceType(); in invokeMethod() [all …]
|
D | ClassObjectReferenceImpl.java | 44 reflectedType = vm.referenceType(reply.typeID, in reflectedType() 59 return "instance of " + referenceType().name() + in toString()
|
D | InternalEventHandler.java | 68 ((ReferenceTypeImpl)cpEvent.referenceType()) in run() 73 cpEvent.referenceType().name()); in run()
|
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/instruction/ |
D | DexBackedInstruction20bc.java | 59 int referenceType = getReferenceType(); in getReference() local 60 return DexBackedReference.makeReference(dexFile, referenceType, referenceIndex); in getReference() 73 int referenceType = (dexFile.getDataBuffer().readUbyte(instructionStart + 1) >>> 6) + 1; in getReferenceType() local 74 ReferenceType.validateReferenceType(referenceType); in getReferenceType() 75 return referenceType; in getReferenceType()
|
D | DexBackedInstruction31c.java | 53 return DexBackedReference.makeReference(dexFile, opcode.referenceType, in getReference() 59 return opcode.referenceType; in getReferenceType()
|
D | DexBackedInstruction21c.java | 54 … dexFile, opcode.referenceType, dexFile.getDataBuffer().readUshort(instructionStart + 2)); in getReference() 59 return opcode.referenceType; in getReferenceType()
|
D | DexBackedInstruction3rc.java | 60 return DexBackedReference.makeReference(dexFile, opcode.referenceType, in getReference() 66 return opcode.referenceType; in getReferenceType()
|
D | DexBackedInstruction22c.java | 63 … dexFile, opcode.referenceType, dexFile.getDataBuffer().readUshort(instructionStart + 2)); in getReference() 68 return opcode.referenceType; in getReferenceType()
|
D | DexBackedInstruction4rcc.java | 60 return DexBackedReference.makeReference(dexFile, opcode.referenceType, in getReference() 66 return opcode.referenceType; in getReferenceType()
|
/external/leakcanary2/shark/src/main/java/shark/ |
D | LeakTraceReference.kt | 19 val referenceType: ReferenceType, constant in shark.LeakTraceReference 42 return when (referenceType) { 51 return when (referenceType) {
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/ |
D | TypeHelper.java | 35 ResolvedReferenceType referenceType = (ResolvedReferenceType) type; in isProperType() local 36 return referenceType.typeParametersValues().stream().allMatch(it -> isProperType(it)); in isProperType() 136 private static boolean isUnboxable(ResolvedType referenceType) { in isUnboxable() argument 137 if (!referenceType.isReferenceType()) { in isUnboxable() 140 …return Arrays.stream(ResolvedPrimitiveType.values()).anyMatch(pt -> referenceType.asReferenceType(… in isUnboxable() 143 private static ResolvedType toUnboxedType(ResolvedReferenceType referenceType) { in toUnboxedType() argument 144 throw new UnsupportedOperationException(referenceType.toString()); in toUnboxedType()
|
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/reference/ |
D | DexBackedReference.java | 41 …public static Reference makeReference(@Nonnull DexBackedDexFile dexFile, int referenceType, int re… in makeReference() argument 42 switch (referenceType) { in makeReference() 58 throw new ExceptionWithContext("Invalid reference type: %d", referenceType); in makeReference()
|
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/ |
D | ASTReference.java | 66 private int referenceType; field in ASTReference 302 if (referenceType == RUNT) in execute() 317 if ((referenceType != QUIET_REFERENCE || warnInvalidQuietReferences) && in execute() 387 (referenceType != QUIET_REFERENCE || warnInvalidQuietReferences) && in execute() 402 (referenceType != QUIET_REFERENCE || warnInvalidQuietReferences) && in execute() 473 if (referenceType == RUNT) in render() 564 if (referenceType != QUIET_REFERENCE) in render() 606 if (logOnNull && referenceType != QUIET_REFERENCE) in render() 1075 referenceType = QUIET_REFERENCE; in getRoot() 1107 referenceType = FORMAL_REFERENCE; in getRoot() [all …]
|
/external/mockito/src/main/java/org/mockito/internal/util/ |
D | Primitives.java | 45 public static boolean isAssignableFromWrapper(Class<?> valueClass, Class<?> referenceType) { in isAssignableFromWrapper() argument 46 if (isPrimitiveOrWrapper(valueClass) && isPrimitiveOrWrapper(referenceType)) { in isAssignableFromWrapper() 48 .isAssignableFrom(Primitives.primitiveTypeOf(referenceType)); in isAssignableFromWrapper()
|
/external/spdx-tools/rdfloader/parser2v3/ |
D | parse_package_test.go | 198 <spdx:referenceType> 200 </spdx:referenceType> 215 <spdx:referenceType> 217 </spdx:referenceType> 231 <spdx:referenceType> 233 </spdx:referenceType> 257 <spdx:referenceType> 259 </spdx:referenceType> 283 <spdx:referenceType> 285 </spdx:referenceType> [all …]
|
/external/spdx-tools/rdfloader/parser2v2/ |
D | parse_package_test.go | 198 <spdx:referenceType> 200 </spdx:referenceType> 215 <spdx:referenceType> 217 </spdx:referenceType> 231 <spdx:referenceType> 233 </spdx:referenceType> 257 <spdx:referenceType> 259 </spdx:referenceType> 283 <spdx:referenceType> 285 </spdx:referenceType> [all …]
|
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/immutable/reference/ |
D | ImmutableReferenceFactory.java | 74 public static ImmutableReference of(int referenceType, Reference reference) { in of() argument 75 switch (referenceType) { in of() 91 throw new ExceptionWithContext("Invalid reference type: %d", referenceType); in of()
|
/external/leakcanary2/shark/src/test/java/shark/internal/ |
D | AndroidReferenceReadersHprofTest.kt | 31 assertThat(mapReference.referenceType).isEqualTo(ARRAY_ENTRY) in <lambda>() 42 assertThat(mapReference.referenceType).isEqualTo(ARRAY_ENTRY) in <lambda>() 58 assertThat(mapReference.referenceType).isEqualTo(ARRAY_ENTRY) in <lambda>()
|
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/immutable/instruction/ |
D | ImmutableInstruction31c.java | 54 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction31c() 69 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|
D | ImmutableInstruction21c.java | 54 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction21c() 69 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|
D | ImmutableInstruction3rc.java | 58 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction3rc() 75 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
|