Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 135) sorted by relevance

123456

/art/test/122-npe/src/
DMain.java46 } catch (NullPointerException e) { in methodTwo()
47 npe = e; in methodTwo()
54 } catch (NullPointerException e) { in methodTwo()
55 npe = e; in methodTwo()
62 } catch (NullPointerException e) { in methodTwo()
63 npe = e; in methodTwo()
69 } catch (NullPointerException e) { in methodTwo()
70 npe = e; in methodTwo()
76 } catch (NullPointerException e) { in methodTwo()
77 npe = e; in methodTwo()
[all …]
/art/test/484-checker-register-hints/src/
DMain.java36 int e = live1; in test1() local
44 array[2] = e + i + h; in test1()
51 live1 = e + f + g; in test1()
71 int e = live1; in test2() local
78 array[2] = e + i + h; in test2()
85 live1 = e + f + g; in test2()
107 int e = live1; in test3() local
111 live1 = e; in test3()
114 live1 = e; in test3()
118 array[2] = e + i + h; in test3()
[all …]
/art/test/044-proxy/src/
DReturnsAndArgPassing.java89 } catch (Exception e) { in invoke()
90 throw new Error("return type = " + returnType, e); in invoke()
190 } catch (NullPointerException e) { in testProxyReturns()
198 } catch (NullPointerException e) { in testProxyReturns()
206 } catch (NullPointerException e) { in testProxyReturns()
214 } catch (NullPointerException e) { in testProxyReturns()
222 } catch (NullPointerException e) { in testProxyReturns()
230 } catch (NullPointerException e) { in testProxyReturns()
238 } catch (NullPointerException e) { in testProxyReturns()
246 } catch (NullPointerException e) { in testProxyReturns()
[all …]
/art/test/412-new-array/src/
DMain.java48 short[] e = new short[5]; in $opt$TestAllocations() local
49 assertEquals(5, e.length); in $opt$TestAllocations()
85 short[] e = {4, 5, 6}; in $opt$TestWithInitializations() local
86 assertEquals(3, e.length); in $opt$TestWithInitializations()
87 assertEquals(4, e[0]); in $opt$TestWithInitializations()
88 assertEquals(5, e[1]); in $opt$TestWithInitializations()
89 assertEquals(6, e[2]); in $opt$TestWithInitializations()
137 } catch (NegativeArraySizeException e) { in testNegativeArraySize()
214 } catch (VerifyError e) { in testSmaliVerifyError()
215 error = e; in testSmaliVerifyError()
[all …]
/art/test/439-swap-double/src/
DMain.java28 callWithDoubles(a, b, c, d, e, f, g); in foo()
29 callWithDoubles(b, c, d, e, f, g, a); in foo()
30 callWithDoubles(c, d, e, f, g, a, b); in foo()
31 callWithDoubles(d, e, f, g, a, b, c); in foo()
35 double a, double b, double c, double d, double e, double f, double g) { in callWithDoubles() argument
36 System.out.println(a - b - c - d - e - f - g); in callWithDoubles()
43 double e = 5.0; field in Main
/art/test/455-set-vreg/src/
DMain.java21 int testIntVReg(int a, int b, int c, int d, int e) { in testIntVReg() argument
23 return a - b - c - d - e; in testIntVReg()
26 long testLongVReg(long a, long b, long c, long d, long e) { in testLongVReg() argument
28 return a - b - c - d - e; in testLongVReg()
31 float testFloatVReg(float a, float b, float c, float d, float e) { in testFloatVReg() argument
33 return a - b - c - d - e; in testFloatVReg()
36 double testDoubleVReg(double a, double b, double c, double d, double e) { in testDoubleVReg() argument
38 return a - b - c - d - e; in testDoubleVReg()
/art/tools/dexfuzz/src/dexfuzz/listeners/
DUniqueProgramTrackerListener.java97 } catch (FileNotFoundException e) { in getMD5SumOfProgram()
98 e.printStackTrace(); in getMD5SumOfProgram()
99 } catch (IOException e) { in getMD5SumOfProgram()
100 e.printStackTrace(); in getMD5SumOfProgram()
125 } catch (FileNotFoundException e) { in loadUniqueProgsData()
126 e.printStackTrace(); in loadUniqueProgsData()
127 } catch (IOException e) { in loadUniqueProgsData()
128 e.printStackTrace(); in loadUniqueProgsData()
129 } catch (ClassNotFoundException e) { in loadUniqueProgsData()
130 e.printStackTrace(); in loadUniqueProgsData()
[all …]
DLogFileListener.java60 } catch (IOException e) { in setup()
61 e.printStackTrace(); in setup()
69 } catch (IOException e) { in shutdown()
70 e.printStackTrace(); in shutdown()
81 } catch (IOException e) { in write()
82 e.printStackTrace(); in write()
145 } catch (IOException e) { in handleDivergences()
146 e.printStackTrace(); in handleDivergences()
162 } catch (IOException e) { in handleSeed()
163 e.printStackTrace(); in handleSeed()
/art/test/405-optimizing-long-allocator/src/
DMain.java91 long e = 0; in $opt$TestMultipleLive() local
99 e += 3; in $opt$TestMultipleLive()
124 long e = 0; in $opt$testSpillInIf() local
129 e += 3; in $opt$testSpillInIf()
132 return a - b - c - d - e; 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() argument
138 long j = e - f; in $opt$TestAgressiveLive1()
153 return a - b - c - d - e - f - g - h - i - j - k; 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() argument
159 long j = e - f; in $opt$TestAgressiveLive2()
[all …]
/art/test/401-optimizing-compiler/src/
DMain.java25 } catch (Error e) { in main()
26 error = e; in main()
93 } catch (NullPointerException e) { in main()
94 exception = e; in main()
101 } catch (NullPointerException e) { in main()
102 exception = e; in main()
146 static int $opt$TestInvokeWith5Parameters(int a, int b, int c, int d, int e) { in $opt$TestInvokeWith5Parameters() argument
147 return a - b - c - d - 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() argument
151 return a - b - c - d - e - f - g; in $opt$TestInvokeWith7Parameters()
[all …]
/art/test/404-optimizing-allocator/src/
DMain.java85 int e = 0; in $opt$reg$TestMultipleLive() local
93 e += 3; in $opt$reg$TestMultipleLive()
118 int e = 0; in $opt$reg$testSpillInIf() local
123 e += 3; in $opt$reg$testSpillInIf()
126 return a - b - c - d - e; 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() argument
132 int j = e - f; in $opt$reg$TestAgressiveLive1()
147 return a - b - c - d - e - f - g - h - i - j - k; 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() argument
153 int j = e - f; in $opt$reg$TestAgressiveLive2()
[all …]
/art/test/700-LoadArgRegs/
Dexpected.txt25 a, b, c, d, e
26 a, b, c, d, e, f
27 a, b, c, d, e, f, g
32 11, b, true, 12, e
33 11, b, true, 12, e, false
34 11, b, true, 12, e, false, 13
/art/compiler/utils/
Dassembler_thumb_test_expected.cc.inc36 " 2e: 4388 bics r0, r1\n",
43 " 3e: 42c8 cmn r0, r1\n",
54 " e: f001 0055 and.w r0, r1, #85 ; 0x55\n",
58 " 1e: f141 0055 adc.w r0, r1, #85 ; 0x55\n",
62 " 2e: f090 0f55 teq r0, #85 ; 0x55\n",
68 " 3e: f07f 0055 mvns.w r0, #85 ; 0x55\n",
118 " e: 9b06 ldr r3, [sp, #24]\n",
141 " e: f854 3d18 ldr.w r3, [r4, #-24]!\n",
150 " 2e: f834 3f18 ldrh.w r3, [r4, #24]!\n",
154 " 3e: f834 3918 ldrh.w r3, [r4], #-24\n",
[all …]
/art/test/105-invoke/src/
DMain.java35 int virI_IIIII(int a, int b, int c, int d, int e) { in virI_IIIII() argument
36 return a + b + c + d + e + 1010; in virI_IIIII()
39 int virI_IIIIII(int a, int b, int c, int d, int e, int f) { in virI_IIIIII() argument
40 return a + b + c + d + e + f + 2020; in virI_IIIIII()
59 static int statI_IIIII(int a, int b, int c, int d, int e) { in statI_IIIII() argument
60 return a + b + c + d + e + 1010; in statI_IIIII()
63 static int statI_IIIIII(int a, int b, int c, int d, int e, int f) { in statI_IIIIII() argument
64 return a + b + c + d + e + f + 2020; in statI_IIIIII()
/art/test/080-oom-throw/src/
DMain.java45 } catch (OutOfMemoryError e) { in allocate()
113 } catch (OutOfMemoryError e) { in triggerReflectionOOM()
115 } catch (InvocationTargetException e) { in triggerReflectionOOM()
117 if (!(e.getCause() instanceof OutOfMemoryError)) { in triggerReflectionOOM()
118 System.out.println("InvocationTargetException cause not OOME " + e.getCause()); in triggerReflectionOOM()
121 } catch (Exception e) { in triggerReflectionOOM()
123 System.out.println("Unexpected exception " + e); in triggerReflectionOOM()
/art/test/421-exceptions/src/
DMain.java21 } catch (NullPointerException e) { in $opt$bar()
23 } catch (RuntimeException e) { in $opt$bar()
50 } catch (RuntimeException e) { in $opt$runTest()
51 System.out.println("Caught " + e.getClass()); in $opt$runTest()
/art/test/131-structural-change/src/
DMain.java33 } catch (Exception e) { in run()
34 e.printStackTrace(System.out); in run()
43 } catch (Exception e) { in run()
44 e.printStackTrace(System.out); in run()
/art/test/008-exceptions/src/
DMain.java73 } catch (BadError e) { in exceptionsRethrowClassInitFailure()
74 System.out.println(e); in exceptionsRethrowClassInitFailure()
82 } catch (BadError e) { in exceptionsRethrowClassInitFailure()
83 System.out.println(e); in exceptionsRethrowClassInitFailure()
/art/test/124-missing-classes/src/
DMain.java36 } catch (NoClassDefFoundError e) { in testMissingFieldType()
51 } catch (NoClassDefFoundError e) { in testMissingMethodReturnType()
64 } catch (NoClassDefFoundError e) { in testMissingMethodParameterType()
76 } catch (NoClassDefFoundError e) { in testMissingInnerClass()
/art/test/440-stmp/src/
DMain.java24 baz(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o); in bar()
27 public static void baz(float a, float b, float c, float d, float e, float f, float g, in baz() argument
29 System.out.println(a - b - c - d - e - f - g - h - i - j - k - l - m - n - o); in baz()
36 float e = 5.0f; field in Main
/art/test/StaticLeafMethods/
DStaticLeafMethods.java35 static int sum(int a, int b, int c, int d, int e) { in sum() argument
36 return a + b + c + d + e; in sum()
50 static double sum(double a, double b, double c, double d, double e) { in sum() argument
51 return a + b + c + d + e; in sum()
/art/test/ExceptionHandle/
DExceptionHandle.java23 } catch (IOException e) { in f()
25 } catch (Exception e) { in f()
30 } catch (IOException e) { in f()
/art/test/NonStaticLeafMethods/
DNonStaticLeafMethods.java37 int sum(int a, int b, int c, int d, int e) { in sum() argument
38 return a + b + c + d + e; in sum()
52 double sum(double a, double b, double c, double d, double e) { in sum() argument
53 return a + b + c + d + e; in sum()
/art/test/118-noimage-dex2oat/src/
DMain.java61 } catch (Exception e) {
62 throw new RuntimeException(e);
80 } catch (InvocationTargetException e) { in testB18485243()
81 Throwable actual = e.getTargetException(); in testB18485243()
/art/test/454-get-vreg/src/
DMain.java22 int e = doCall(); in testSimpleVReg() local
24 return e + g; in testSimpleVReg()
27 long testPairVReg(long a, long b, long c, double e) { in testPairVReg() argument

123456