/art/test/ProfileTestMultiDex/ |
D | Main.java | 31 return s.getValue(); in inlineMonomorphic() 35 return s.getValue(); in inlinePolymorphic() 39 return s.getValue(); in inlineMegamorphic() 43 return s.getValue(); in inlineMissingTypes() 47 return s.getValue(); in noInlineCache() 52 abstract int getValue(); in getValue() method in Super 56 int getValue() { return 42; } in getValue() method in SubA 60 int getValue() { return 38; }; in getValue() method in SubB 64 int getValue() { return 20; }; in getValue() method in SubD 68 int getValue() { return 16; }; in getValue() method in SubE
|
D | Second.java | 30 int getValue() { return 24; } in getValue() method in SubC
|
/art/test/638-checker-inline-caches/src/ |
D | Main.java | 18 int getValue() { return 42; } in getValue() method in SubA 22 int getValue() { return 38; } in getValue() method in SubB 26 int getValue() { return 10; } in getValue() method in SubD 30 int getValue() { return -4; } in getValue() method in SubE 51 return a.getValue(); in inlineMonomorphicSubA() 79 return a.getValue(); in inlinePolymophicSubASubB() 107 return a.getValue(); in inlinePolymophicCrossDexSubASubC() 116 return a.getValue(); in inlineMegamorphic() 125 return a.getValue(); in inlineMissingTypes() 134 return a.getValue(); in noInlineCache()
|
D | Super.java | 18 abstract int getValue(); in getValue() method in Super
|
/art/test/084-class-init/src/ |
D | Main.java | 100 SlowInit.FIELD0.getValue() + SlowInit.FIELD1.getValue() + in checkTiming() 101 SlowInit.FIELD2.getValue() + SlowInit.FIELD3.getValue()); in checkTiming() 111 field0 = SlowInit.FIELD0.getValue(); in run() 112 field1 = SlowInit.FIELD1.getValue(); in run() 113 field2 = SlowInit.FIELD2.getValue(); in run() 114 field3 = SlowInit.FIELD3.getValue(); in run()
|
D | IntHolder.java | 35 public int getValue() { in getValue() method in IntHolder
|
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | EncodedMethod.java | 52 return ((accessFlags & Flag.ACC_STATIC.getValue()) != 0); in isStatic() 56 return ((accessFlags & Flag.ACC_NATIVE.getValue()) != 0); in isNative() 64 accessFlags |= Flag.ACC_STATIC.getValue(); in setStatic() 66 accessFlags &= ~(Flag.ACC_STATIC.getValue()); in setStatic() 91 public int getValue() { in getValue() method in EncodedMethod.Flag
|
D | EncodedField.java | 44 return ((accessFlags & Flag.ACC_VOLATILE.getValue()) != 0); in isVolatile() 52 accessFlags |= Flag.ACC_VOLATILE.getValue(); in setVolatile() 54 accessFlags &= ~(Flag.ACC_VOLATILE.getValue()); in setVolatile() 75 public int getValue() { in getValue() method in EncodedField.Flag
|
/art/test/643-checker-bogus-ic/src/ |
D | Main.java | 29 return a.getValue(); in inlineMonomorphic() 38 return a.getValue(); in inlinePolymorphic() 41 public int getValue() { in getValue() method in Main
|
/art/test/707-checker-invalid-profile/src/ |
D | Main.java | 25 return a.getValue(); in attemptInlineMonomorphic() 31 return a.getValue(); in attemptInlinePolymorphic() 34 public int getValue() { in getValue() method in Main
|
/art/test/078-polymorphic-virtual/src/ |
D | Main.java | 36 System.out.println(derived1.getValue()); in main() 37 System.out.println(derived2.getValue()); in main() 38 System.out.println(derived3.getValue()); in main()
|
D | Base.java | 29 public int getValue() { in getValue() method in Base
|
/art/test/616-cha-interface-default/src/ |
D | Main.java | 49 static int getValue(Class<?> cls) { in getValue() method in Main 72 if (sMain1.foo(getValue(sMain1.getClass())) != 11) { in testImplement() 78 if (sMain2.foo(getValue(sMain2.getClass())) != 11) { in testImplement() 108 if (sMain1.foo(getValue(sMain1.getClass())) != 11) { in testImplement() 117 if (sMain3.foo(getValue(sMain3.getClass())) != -13) { in testImplement()
|
/art/tools/class2greylist/src/com/android/class2greylist/ |
D | UnsupportedAppUsageAnnotationHandler.java | 101 String expected = property.getValue().stringifyValue(); in handleAnnotation() 111 if (property.getValue().getElementValueType() != ElementValue.PRIMITIVE_INT) { in handleAnnotation() 114 property.getValue().getElementValueType()); in handleAnnotation() 118 maxTargetSdk = ((SimpleElementValue) property.getValue()).getValueInt(); in handleAnnotation() 121 implicitMemberSignature = property.getValue().stringifyValue(); in handleAnnotation()
|
D | RepeatedAnnotationHandler.java | 35 Preconditions.checkArgument(value.getValue() instanceof ArrayElementValue); in handleAnnotation() 36 ArrayElementValue array = (ArrayElementValue) value.getValue(); in handleAnnotation()
|
D | AnnotationHandler.java | 22 content.put(prop.getNameString(), prop.getValue().stringifyValue()); in stringifyAnnotationProperties()
|
/art/tools/class2greylist/test/src/com/android/class2greylist/ |
D | UnsupportedAppUsageAnnotationHandlerTest.java | 101 assertThat(greylist.getValue()).isEqualTo("La/b/Class;->method()V"); in testGreylistMethod() 122 assertThat(greylist.getValue()).isEqualTo("La/b/Class;-><init>()V"); in testGreylistConstructor() 143 assertThat(greylist.getValue()).isEqualTo("La/b/Class;->i:I"); in testGreylistField() 164 assertThat(greylist.getValue()).isEqualTo("La/b/EnumClass;->values()[La/b/EnumClass;"); in testGreylistImplicit() 185 assertThat(format.getValue()) in testGreylistImplicit_Invalid_MissingOnClass() 206 assertThat(format.getValue()) in testGreylistImplicit_Invalid_PresentOnMember() 228 assertThat(greylist.getValue()).isEqualTo("La/b/Class;->method()V"); in testGreylistMethodExpectedSignature() 269 assertThat(greylist.getValue()).isEqualTo("La/b/Class$Inner;->method()V"); in testGreylistInnerClassMethod() 307 assertThat(greylist.getValue()).isEqualTo("La/b/Class;->method(Ljava/lang/String;)V"); in testMethodArgGenerics() 447 assertThat(greylist.getValue()).isEqualTo("La/b/Class;->method(Ljava/lang/String;)V"); in testPublicBridgeExcluded() [all …]
|
D | RepeatedAnnotationHandlerTest.java | 88 classes.add(annotation.getElementValuePairs()[0].getValue().stringifyValue()); in handleAnnotation()
|
/art/test/580-crc32/src/ |
D | Main.java | 37 return crc32.getValue(); in CRC32Byte() 45 return crc32.getValue(); in CRC32BytesUsingUpdateInt() 160 return crc32.getValue(); in CRC32ByteArray() 168 return crc32.getValue(); in CRC32ByteArray() 175 return crc32.getValue(); in CRC32ByteAndByteArray() 182 return crc32.getValue(); in CRC32ByteArrayAndByte() 222 return crc32.getValue(); in CRC32BytesUsingUpdateInt() 352 return crc32.getValue(); in CRC32ByteBuffer() 420 return crc32.getValue(); in CRC32DirectByteBuffer() 429 return crc32.getValue(); in CRC32ByteAndDirectByteBuffer() [all …]
|
/art/test/064-field-access/src/ |
D | Main.java | 70 public Object getValue(Field field, Object obj, char type, in getValue() method in Main 594 this.getValue(f, validInst, typeChar, subClassAccessExceptionClass); in doReflectionTests() 595 localInst.getValue(f, validInst, typeChar, mainClassAccessExceptionClass); in doReflectionTests() 605 this.getValue(f, null, typeChar, npeClass); in doReflectionTests() 607 localInst.getValue(f, null, typeChar, npeClass); in doReflectionTests() 615 this.getValue(f, validInst, otherChar, illArgClass); in doReflectionTests() 617 localInst.getValue(f, validInst, otherChar, illArgClass); in doReflectionTests() 623 this.getValue(f, plainObj, typeChar, IllegalArgumentException.class); in doReflectionTests() 625 localInst.getValue(f, plainObj, typeChar, IllegalArgumentException.class); in doReflectionTests() 648 public Object getValue(Field field, Object obj, char type, in getValue() method in SubClass
|
/art/test/638-checker-inline-caches/src-multidex/ |
D | SubC.java | 18 public int getValue() { return 24; } in getValue() method in SubC
|
/art/test/445-checker-licm/src/ |
D | Main.java | 19 static int getValue() { in getValue() method in Main.Dummy 131 sum += Dummy.getValue(); in clinitCheck()
|
/art/test/141-class-unload/src-ex/ |
D | IntHolder.java | 26 public static int getValue() { in getValue() method in IntHolder
|
/art/tools/ahat/src/main/com/android/ahat/ |
D | Query.java | 97 if (entry.getValue() != null) { in with() 101 newQuery.append(entry.getValue()); in with()
|
/art/test/141-class-unload/src/ |
D | Main.java | 169 Method getValue = intHolder.getDeclaredMethod("getValue"); in setUpUnloadClass() local 173 System.out.println((int) getValue.invoke(intHolder)); in setUpUnloadClass() 175 System.out.println((int) getValue.invoke(intHolder)); in setUpUnloadClass()
|