Home
last modified time | relevance | path

Searched refs:getValue (Results 1 – 25 of 48) sorted by relevance

12

/art/test/638-checker-inline-caches/src/
DMain.java18 int getValue() { return 42; } in getValue() method in SubA
23 int getValue() { return 38; } in getValue() method in SubB
28 int getValue() { return 10; } in getValue() method in SubD
33 int getValue() { return -4; } in getValue() method in SubE
55 return a.getValue(); in inlineMonomorphicSubA()
83 return a.getValue(); in inlinePolymophicSubASubB()
111 return a.getValue(); in inlinePolymophicCrossDexSubASubC()
120 return a.getValue(); in inlineMegamorphic()
129 return a.getValue(); in inlineMissingTypes()
138 return a.getValue(); in noInlineCache()
DSuper.java18 abstract int getValue(); in getValue() method in Super
/art/test/ProfileTestMultiDex/
DMain.java31 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()
51 return s.getValue() + sec.getIdentity(); in inlineMultiMonomorphic()
55 return s.getValue() + sec.getIdentity(); in inlineMultiPolymorphic()
59 return s.getValue() + sec.getIdentity() + thr.getIdentity(); in inlineTriplePolymorphic()
63 return s.getValue() + sec.getIdentity(); in inlineMultiMegamorphic()
67 return s.getValue() + sec.getIdentity(); in inlineMultiMissingTypes()
[all …]
DSecond.java30 int getValue() { return 24; } in getValue() method in SubC
/art/test/084-class-init/src/
DMain.java100 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()
DIntHolder.java35 public int getValue() { in getValue() method in IntHolder
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DEncodedMethod.java52 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
DEncodedField.java44 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/
DMain.java29 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/
DMain.java25 return a.getValue(); in attemptInlineMonomorphic()
31 return a.getValue(); in attemptInlinePolymorphic()
34 public int getValue() { in getValue() method in Main
/art/test/616-cha-interface-default/src/
DMain.java49 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/test/078-polymorphic-virtual/src/
DMain.java36 System.out.println(derived1.getValue()); in main()
37 System.out.println(derived2.getValue()); in main()
38 System.out.println(derived3.getValue()); in main()
DBase.java29 public int getValue() { in getValue() method in Base
/art/test/2035-structural-native-method/src-art/art/
DTest2035.java26 public native long getValue(); in getValue() method in Test2035.Transform
74 System.out.println("value is " + t.getValue()); in doTest()
76 System.out.println("value is " + t.getValue()); in doTest()
/art/test/580-crc32/src/
DMain.java37 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/odsign/test-src/com/android/tests/odsign/
DDeviceState.java75 entry.getKey(), entry.getValue() != null ? entry.getValue() : ""); in restore()
79 if (entry.getValue() != null) { in restore()
82 entry.getKey(), entry.getValue())); in restore()
92 String.format("cp '%s' '%s'", entry.getValue(), entry.getKey())); in restore()
93 mTestInfo.getDevice().executeShellV2Command(String.format("rm '%s'", entry.getValue())); in restore()
/art/test/064-field-access/src/
DMain.java70 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/
DSubC.java18 public int getValue() { return 24; } in getValue() method in SubC
/art/test/445-checker-licm/src/
DMain.java19 static int getValue() { in getValue() method in Main.ValueHolder
131 sum += ValueHolder.getValue(); in clinitCheck()
/art/libartservice/service/javatests/com/android/server/art/
DArtdRefCacheTest.java167 deathRecipient.getValue().binderDied(mBinder); in testBinderDied()
169 deathRecipient.getValue().binderDied(mBinder); in testBinderDied()
174 deathRecipient.getValue().binderDied(differentBinder); in testBinderDied()
201 deathRecipient.getValue().binderDied(mBinder); in testComplex()
/art/test/141-class-unload/src-ex/
DIntHolder.java26 public static int getValue() { in getValue() method in IntHolder
/art/tools/ahat/src/main/com/android/ahat/
DQuery.java97 if (entry.getValue() != null) { in with()
101 newQuery.append(entry.getValue()); in with()
/art/test/1974-resize-array/src/art/
DTest1974.java99 .filter((x) -> x.getValue().equals(the_value)) in runHashMap()
109 .sorted((x, y) -> x.getValue().compareTo(y.getValue())) in runHashMap()
112 System.out.print("(" + Arrays.toString(e.getKey()) + "->" + e.getValue() + "), "); in runHashMap()
119 .sorted((x, y) -> x.getValue().compareTo(y.getValue())) in runHashMap()
122 System.out.print("(" + Arrays.toString(e.getKey()) + "->" + e.getValue() + "), "); in runHashMap()
/art/libartservice/service/java/com/android/server/art/
DDexUseManagerLocal.java314 SecondaryDexUse secondaryDexUse = entry.getValue(); in getSecondaryDexInfoImpl()
408 String classLoaderContext = Utils.assertNonEmpty(entry.getValue()); in notifyDexContainersLoaded()
623 Utils.assertNonEmpty(entry.getValue()); in validateInputs()
624 errorMsg = ArtJni.validateClassLoaderContext(entry.getKey(), entry.getValue()); in validateInputs()
686 PackageDexUse packageDexUse = entry.getValue(); in cleanup()
720 PrimaryDexUse primaryDexUse = entry.getValue(); in cleanupPrimaryDexUsesLocked()
756 SecondaryDexUse secondaryDexUse = entry.getValue(); in cleanupSecondaryDexUsesLocked()
897 entry.getValue().toProto(packageBuilder); in toProto()
930 entry.getValue().toProto(primaryBuilder); in toProto()
935 entry.getValue().toProto(secondaryBuilder); in toProto()
[all …]
/art/test/063-process-manager/src/
DMain.java51 for (StackTraceElement e : entry.getValue()) { in checkManager()

12