Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 249) sorted by relevance

12345678910

/art/test/636-arm64-veneer-pool/src/
DMain.java17 class C0 { public static void m(Context c, Binder b) { /* Defeat inlining. */ if (Main.doThrow) { t… in m()
18 class C1 { public static void m(Context c, Binder b) { /* Defeat inlining. */ if (Main.doThrow) { t… in m()
19 class C2 { public static void m(Context c, Binder b) { /* Defeat inlining. */ if (Main.doThrow) { t… in m()
20 class C3 { public static void m(Context c, Binder b) { /* Defeat inlining. */ if (Main.doThrow) { t… in m()
21 class C4 { public static void m(Context c, Binder b) { /* Defeat inlining. */ if (Main.doThrow) { t… in m()
23 …public static void m(Context c, Binder b) { /* Defeat inlining. */ if (Main.doThrow) { throw new E… in m()
24 …public static void mImpl(Context c, Binder b) { /* Defeat inlining. */ if (Main.doThrow) { throw n… in mImpl()
26 class C6 { public static void m(Context c, Binder b) { /* Defeat inlining. */ if (Main.doThrow) { t… in m()
27 class C7 { public static void m(Context c, Binder b) { /* Defeat inlining. */ if (Main.doThrow) { t… in m()
28 class C8 { public static void m(Context c, Binder b) { /* Defeat inlining. */ if (Main.doThrow) { t… in m()
[all …]
/art/benchmark/string-indexof/src/
DStringIndexOfBenchmark.java21 final char c = '0'; in timeIndexOf0() local
29 final char c = '1'; in timeIndexOf1() local
37 final char c = '2'; in timeIndexOf2() local
45 final char c = '3'; in timeIndexOf3() local
53 final char c = '4'; in timeIndexOf4() local
61 final char c = '7'; in timeIndexOf7() local
69 final char c = '8'; in timeIndexOf8() local
77 final char c = 'F'; in timeIndexOfF() local
85 final char c = 'G'; in timeIndexOfG() local
93 final char c = 'V'; in timeIndexOfV() local
[all …]
/art/test/042-new-instance/src/
DMain.java36 Class<?> c = Class.forName("LocalClass"); in testClassNewInstance() local
46 Class<?> c = Class.forName("otherpackage.PackageAccess"); in testClassNewInstance() local
74 Class<?> c = Class.forName("LocalClass"); in testConstructorNewInstance() local
86 Class<?> c = Class.forName("LocalClass2"); in testConstructorNewInstance() local
97 Class<?> c = Class.forName("Main$InnerClass"); in testConstructorNewInstance() local
108 Class<?> c = Class.forName("Main$StaticInnerClass"); in testConstructorNewInstance() local
119 Class<?> c = Class.forName("otherpackage.PackageAccess"); in testConstructorNewInstance() local
132 Class<?> c = Class.forName("MaybeAbstract"); in testConstructorNewInstance() local
146 Class<?> c = Class.forName("otherpackage.PackageAccess2"); in testConstructorNewInstance() local
200 Class<?> c = CC.class; in newInstance() local
/art/test/912-classes/src-art/art/
DTest912.java125 private static void testClassType(Class<?> c) throws Exception { in testClassType()
133 private static void testClassFields(Class<?> c) throws Exception { in testClassFields()
137 private static void testClassMethods(Class<?> c) throws Exception { in testClassMethods()
141 private static void testClassStatus(Class<?> c) { in testClassStatus()
145 private static void testInterfaces(Class<?> c) { in testInterfaces()
154 private static void testClassLoader(Class<?> c) { in testClassLoader()
370 private static native boolean isModifiableClass(Class<?> c); in isModifiableClass()
371 private static native String[] getClassSignature(Class<?> c); in getClassSignature()
373 private static native boolean isInterface(Class<?> c); in isInterface()
374 private static native boolean isArrayClass(Class<?> c); in isArrayClass()
[all …]
/art/test/529-checker-unresolved/src/
DMain.java27 static public void callInvokeUnresolvedVirtual(UnresolvedClass c) { in callInvokeUnresolvedVirtual()
33 static public void callInvokeUnresolvedInterface(UnresolvedInterface c) { in callInvokeUnresolvedInterface()
37 static public void callInvokeUnresolvedSuper(Main c) { in callInvokeUnresolvedSuper()
108 static public void callUnresolvedInstanceFieldAccess(UnresolvedClass c) { in callUnresolvedInstanceFieldAccess()
139 static public void callUnresolvedNull(UnresolvedClass c) { in callUnresolvedNull()
171 UnresolvedSuperClass c = (UnresolvedSuperClass) o; in testCheckCast() local
178 UnresolvedClass c = new UnresolvedClass(); in main() local
207 UnresolvedClass c; in testLicm() local
/art/test/105-invoke/src/
DMain.java27 int virI_III(int a, int b, int c) { in virI_III()
31 int virI_IIII(int a, int b, int c, int d) { in virI_IIII()
35 int virI_IIIII(int a, int b, int c, int d, int e) { in virI_IIIII()
39 int virI_IIIIII(int a, int b, int c, int d, int e, int f) { in virI_IIIIII()
51 static int statI_III(int a, int b, int c) { in statI_III()
55 static int statI_IIII(int a, int b, int c, int d) { in statI_IIII()
59 static int statI_IIIII(int a, int b, int c, int d, int e) { in statI_IIIII()
63 static int statI_IIIIII(int a, int b, int c, int d, int e, int f) { in statI_IIIIII()
/art/test/StaticLeafMethods/
DStaticLeafMethods.java29 static int sum(int a, int b, int c) { in sum()
32 static int sum(int a, int b, int c, int d) { in sum()
35 static int sum(int a, int b, int c, int d, int e) { in sum()
44 static double sum(double a, double b, double c) { in sum()
47 static double sum(double a, double b, double c, double d) { in sum()
50 static double sum(double a, double b, double c, double d, double e) { in sum()
/art/test/NonStaticLeafMethods/
DNonStaticLeafMethods.java31 int sum(int a, int b, int c) { in sum()
34 int sum(int a, int b, int c, int d) { in sum()
37 int sum(int a, int b, int c, int d, int e) { in sum()
46 double sum(double a, double b, double c) { in sum()
49 double sum(double a, double b, double c, double d) { in sum()
52 double sum(double a, double b, double c, double d, double e) { in sum()
/art/test/442-checker-constant-folding/src/
DMain.java216 int a, b, c; in IntAddition1() local
242 int a, b, c; in IntAddition2() local
267 long a, b, c; in LongAddition() local
288 float a, b, c; in FloatAddition() local
309 double a, b, c; in DoubleAddition() local
335 int a, b, c; in IntSubtraction() local
356 long a, b, c; in LongSubtraction() local
377 float a, b, c; in FloatSubtraction() local
398 double a, b, c; in DoubleSubtraction() local
424 int a, b, c; in IntMultiplication() local
[all …]
/art/test/404-optimizing-allocator/src/
DMain.java57 int c = 0; in $opt$reg$TestThreeLive() local
69 int c = 0; in $opt$reg$TestFourLive() local
83 int c = 0; in $opt$reg$TestMultipleLive() local
116 public static int $opt$reg$testSpillInIf(int a, int b, int c) { in $opt$reg$testSpillInIf()
129 public static int $opt$reg$TestAgressiveLive1(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive1()
150 public static int $opt$reg$TestAgressiveLive2(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive2()
/art/test/405-optimizing-long-allocator/src/
DMain.java63 long c = 0; in $opt$TestThreeLive() local
75 long c = 0; in $opt$TestFourLive() local
89 long c = 0; in $opt$TestMultipleLive() local
122 public static long $opt$testSpillInIf(long a, long b, long c) { in $opt$testSpillInIf()
135 …public static long $opt$TestAgressiveLive1(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive1()
156 …public static long $opt$TestAgressiveLive2(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive2()
/art/test/055-enum-performance/src/
DMain.java78 Class<SamePackagePublicEnum> c = SamePackagePublicEnum.class; in preTest() local
133 Class<SamePackagePublicEnum> c = SamePackagePublicEnum.class; in test1() local
161 Class<SamePackagePrivateEnum> c = SamePackagePrivateEnum.class; in test2() local
189 Class<OtherPackagePublicEnum> c = OtherPackagePublicEnum.class; in test3() local
/art/test/157-void-class/src-art/
DMain.java48 public static void clearResolvedTypes(Class<?> c) { in clearResolvedTypes()
54 public static native void nativeClearResolvedTypes(Class<?> c); in nativeClearResolvedTypes()
/art/test/158-app-image-class-table/src/
DMain.java46 public static void clearResolvedTypes(Class<?> c) { in clearResolvedTypes()
54 public static native void nativeClearResolvedTypes(Class<?> c); in nativeClearResolvedTypes()
/art/test/100-reflect2/src/
DMain.java23 private static char c = '\u2714'; field in Main
269 …private static void ZBCDFIJSV(boolean z, byte b, char c, double d, float f, int i, long l, short s… in ZBCDFIJSV()
273 …private static void ZBCDLFIJSV(boolean z, byte b, char c, double d, String string, float f, int i,… in ZBCDLFIJSV()
287 Class<?> c = Class.forName("sub.PPClass"); in testPackagePrivateConstructor() local
301 Class<?> c = Class.forName("sub.PPClass"); in testPackagePrivateAccessibleConstructor() local
/art/test/642-fp-callees/src/
DMain.java24 public static void caller(int a, int b, long c) { in caller()
30 public static void $noinline$callee(int a, int b, long c) { in $noinline$callee()
/art/test/655-checker-simd-arm-opt/src/
DMain.java51 …private static void encodableConstants(byte[] b, short[] s, char[] c, int[] a, long[] l, float[] f… in encodableConstants()
75 …private static int sumArray(byte[] b, short[] s, char[] c, int[] a, long[] l, float[] f, double[] … in sumArray()
88 char[] c = new char[ARRAY_SIZE]; in main() local
/art/test/410-floats/src/
DMain.java77 public static double takeThreeDouble(double a, double b, double c) { in takeThreeDouble()
81 public static float takeThreeFloat(float a, float b, float c) { in takeThreeFloat()
93 public static double invokeTakeThreeDouble(double a, double b, double c) { in invokeTakeThreeDouble()
97 public static float invokeTakeThreeFloat(float a, float b, float c) { in invokeTakeThreeFloat()
/art/test/909-attach-agent/
Dattach.cc30 static void Println(const char* c) { in Println()
42 #define CHECK_CALL_SUCCESS(c) \ in OnAttach() argument
/art/test/401-optimizing-compiler/src/
DMain.java142 static int $opt$TestInvokeWith3Parameters(int a, int b, int c) { in $opt$TestInvokeWith3Parameters()
146 static int $opt$TestInvokeWith5Parameters(int a, int b, int c, int d, int e) { in $opt$TestInvokeWith5Parameters()
150 static int $opt$TestInvokeWith7Parameters(int a, int b, int c, int d, int e, int f, int g) { in $opt$TestInvokeWith7Parameters()
194 public static void printStaticMethodWith5Args(int a, int b, int c, int d, int e) { in printStaticMethodWith5Args()
199 public static void printStaticMethodWith7Args(int a, int b, int c, int d, int e, int f, int g) { in printStaticMethodWith7Args()
/art/test/620-checker-bce-intrinsics/src/
DMain.java75 static int threeArrays(int[] a, int[] b, int[] c) { in threeArrays()
92 static int fourArrays(int[] a, int[] b, int[] c, int[] d) { in fourArrays()
154 static int threeArraysWithCleanup(int[] a, int[] b, int[] c) { in threeArraysWithCleanup()
222 int[] c = { 1, 2, 3 }; in main() local
/art/test/403-optimizing-long/src/
DMain.java96 static long $opt$TakeOneLong4(int a, int b, int c, long l) { in $opt$TakeOneLong4()
100 static long $opt$TakeOneLong5(int a, int b, int c,int d, long l) { in $opt$TakeOneLong5()
108 static long $opt$AddThreeLongs(long a, long b, long c) { in $opt$AddThreeLongs()
/art/test/439-swap-double/src/
DMain.java35 double a, double b, double c, double d, double e, double f, double g) { in callWithDoubles()
41 double c = 3.0; field in Main
/art/test/416-optimizing-arith-not/src/
DMain.java67 Class<?> c = Class.forName("TestNot"); in smaliNotInt() local
74 Class<?> c = Class.forName("TestNot"); in smaliNotLong() local
/art/test/432-optimizing-cmp/src/
DMain.java160 Class<?> c = Class.forName("TestCmp"); in smaliCmpLong() local
167 Class<?> c = Class.forName("TestCmp"); in smaliCmpGtFloat() local
174 Class<?> c = Class.forName("TestCmp"); in smaliCmpLtFloat() local
181 Class<?> c = Class.forName("TestCmp"); in smaliCmpGtDouble() local
188 Class<?> c = Class.forName("TestCmp"); in smaliCmpLtDouble() local

12345678910