Home
last modified time | relevance | path

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

1234

/external/connectedappssdk/tests/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/
DCrossProfileSupportedReturnTypeTest.java51 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/
DReferenceType.java78 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/
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/google-smali/baksmali/src/main/java/com/android/tools/smali/baksmali/
DListReferencesCommand.java43 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/
DObjectReferenceImpl.java89 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 …]
DClassObjectReferenceImpl.java44 reflectedType = vm.referenceType(reply.typeID, in reflectedType()
59 return "instance of " + referenceType().name() + in toString()
DInternalEventHandler.java68 ((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/
DDexBackedInstruction20bc.java59 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()
DDexBackedInstruction31c.java53 return DexBackedReference.makeReference(dexFile, opcode.referenceType, in getReference()
59 return opcode.referenceType; in getReferenceType()
DDexBackedInstruction21c.java54 … dexFile, opcode.referenceType, dexFile.getDataBuffer().readUshort(instructionStart + 2)); in getReference()
59 return opcode.referenceType; in getReferenceType()
DDexBackedInstruction3rc.java60 return DexBackedReference.makeReference(dexFile, opcode.referenceType, in getReference()
66 return opcode.referenceType; in getReferenceType()
DDexBackedInstruction22c.java63 … dexFile, opcode.referenceType, dexFile.getDataBuffer().readUshort(instructionStart + 2)); in getReference()
68 return opcode.referenceType; in getReferenceType()
DDexBackedInstruction4rcc.java60 return DexBackedReference.makeReference(dexFile, opcode.referenceType, in getReference()
66 return opcode.referenceType; in getReferenceType()
/external/leakcanary2/shark/src/main/java/shark/
DLeakTraceReference.kt19 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/
DTypeHelper.java35 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/
DDexBackedReference.java41 …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/
DASTReference.java66 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/
DPrimitives.java45 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/
Dparse_package_test.go198 <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/
Dparse_package_test.go198 <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/
DImmutableReferenceFactory.java74 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/
DAndroidReferenceReadersHprofTest.kt31 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/
DImmutableInstruction31c.java54 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction31c()
69 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
DImmutableInstruction21c.java54 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction21c()
69 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()
DImmutableInstruction3rc.java58 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); in ImmutableInstruction3rc()
75 @Override public int getReferenceType() { return opcode.referenceType; } in getReferenceType()

1234