Home
last modified time | relevance | path

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

12345678910>>...13

/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/123-inline-execute2/src/
DMain.java49 double e = (double) j; in main() local
50 System.out.println("Math.cbrt(" + e + ") = " in main()
51 + String.format(Locale.US, "%.12f", Math.cbrt(e))); in main()
52 System.out.println("Math.log(" + e + ") = " in main()
53 + String.format(Locale.US, "%.12f", Math.log(e))); in main()
54 System.out.println("Math.log10(" + e + ") = " in main()
55 + String.format(Locale.US, "%.12f", Math.log10(e))); in main()
56 System.out.println("Math.log1p(" + e + ") = " in main()
57 + String.format(Locale.US, "%.12f", Math.log1p(e))); in main()
58 System.out.println("Math.exp(" + e + ") = " in main()
[all …]
/art/test/972-iface-super-multidex/src/
DMain.java23 } catch (Exception e) { in main()
25 e.printStackTrace(); in main()
31 } catch (Exception e) { in main()
33 e.printStackTrace(); in main()
39 } catch (InvocationTargetException e) { in main()
40 throw e.getCause(); in main()
42 } catch (AbstractMethodError e) { in main()
44 e.printStackTrace(); in main()
45 } catch (NoSuchMethodError e) { in main()
47 e.printStackTrace(); in main()
[all …]
/art/test/506-verify-aput/src/
DMain.java26 } catch (VerifyError e) { /* ignore */ in main()
27 } catch (Error e) { System.out.println(e.getClass() + " " + e.getClass().getClassLoader()); } in main()
31 } catch (VerifyError e) { /* ignore */ in main()
32 } catch (Error e) { System.out.println(e.getClass() + " " + e.getClass().getClassLoader()); } in main()
/art/test/008-exceptions/src/
DMain.java109 } catch (BadError e) { in exceptionsRethrowClassInitFailure()
110 System.out.println(e); in exceptionsRethrowClassInitFailure()
118 } catch (NoClassDefFoundError e) { in exceptionsRethrowClassInitFailure()
119 System.out.println(e); in exceptionsRethrowClassInitFailure()
120 System.out.println(e.getCause()); in exceptionsRethrowClassInitFailure()
132 } catch (BadErrorNoStringInit e) { in exceptionsRethrowClassInitFailureNoStringInit()
133 System.out.println(e); in exceptionsRethrowClassInitFailureNoStringInit()
141 } catch (NoClassDefFoundError e) { in exceptionsRethrowClassInitFailureNoStringInit()
142 System.out.println(e); in exceptionsRethrowClassInitFailureNoStringInit()
143 System.out.println(e.getCause()); in exceptionsRethrowClassInitFailureNoStringInit()
[all …]
/art/test/484-checker-register-hints/src/
DMain.java44 int e = live1; in test1() local
53 foo.field2 = e + i + h; in test1()
59 live1 = e + f + g + j; in test1()
79 int e = live1; in test2() local
87 foo.field2 = e + i + h; in test2()
94 live1 = e + f + g + j; in test2()
116 int e = live1; in test3() local
121 live1 = e; in test3()
124 live1 = e; in test3()
128 foo.field2 = 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/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/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/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/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 …]
/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/921-hello-failure/src/
DMultiRedef.java85 } catch (Exception e) { in doTest()
87 "Transformation error : " + e.getClass().getName() + "(" + e.getMessage() + ")"); in doTest()
93 } catch (Exception e) { in doTest()
95 "Transformation error : " + e.getClass().getName() + "(" + e.getMessage() + ")"); in doTest()
DMultiRetrans.java87 } catch (Exception e) { in doTest()
89 "Transformation error : " + e.getClass().getName() + "(" + e.getMessage() + ")"); in doTest()
99 } catch (Exception e) { in doTest()
101 "Transformation error : " + e.getClass().getName() + "(" + e.getMessage() + ")"); in doTest()
/art/test/911-get-stack-trace/src/art/
DFrames.java45 } catch (RuntimeException e) { in doTestSameThread()
46 System.out.println(e.getMessage()); in doTestSameThread()
53 } catch (RuntimeException e) { in doTestSameThread()
54 System.out.println(e.getMessage()); in doTestSameThread()
78 } catch (RuntimeException e) { in doTestOtherThreadWait()
79 System.out.println(e.getMessage()); in doTestOtherThreadWait()
86 } catch (RuntimeException e) { in doTestOtherThreadWait()
87 System.out.println(e.getMessage()); in doTestOtherThreadWait()
116 } catch (RuntimeException e) { in doTestOtherThreadBusyLoop()
117 System.out.println(e.getMessage()); in doTestOtherThreadBusyLoop()
[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/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/test/646-checker-hadd-char/src/
DMain.java209 char e = (char) ((sB1[i] + sB2[i]) >> 1); in main() local
210 expectEquals(e, sBo[i]); in main()
214 char e = (char) ((sB1[i] + sB2[i]) >> 1); in main() local
215 expectEquals(e, sBo[i]); in main()
219 char e = (char) ((sB1[i] + sB2[i] + 1) >> 1); in main() local
220 expectEquals(e, sBo[i]); in main()
224 char e = (char) ((sB1[i] + sB2[i] + 1) >> 1); in main() local
225 expectEquals(e, sBo[i]); in main()
229 char e = (char) ((sB1[i] + 0xffff) >> 1); in main() local
230 expectEquals(e, sBo[i]); in main()
[all …]
/art/test/646-checker-hadd-short/src/
DMain.java200 short e = (short) ((sB1[i] + sB2[i]) >> 1); in main() local
201 expectEquals(e, sBo[i]); in main()
205 short e = (short) (((sB1[i] & 0xffff) + (sB2[i] & 0xffff)) >> 1); in main() local
206 expectEquals(e, sBo[i]); in main()
210 short e = (short) ((sB1[i] + sB2[i] + 1) >> 1); in main() local
211 expectEquals(e, sBo[i]); in main()
215 short e = (short) (((sB1[i] & 0xffff) + (sB2[i] & 0xffff) + 1) >> 1); in main() local
216 expectEquals(e, sBo[i]); in main()
220 short e = (short) ((sB1[i] + 0x7fff) >> 1); in main() local
221 expectEquals(e, sBo[i]); in main()
[all …]
/art/test/646-checker-hadd-alt-char/src/
DMain.java214 char e = (char) ((sB1[i] + sB2[i]) >> 1); in main() local
215 expectEquals(e, sBo[i]); in main()
219 char e = (char) ((sB1[i] + sB2[i]) >> 1); in main() local
220 expectEquals(e, sBo[i]); in main()
224 char e = (char) ((sB1[i] + sB2[i] + 1) >> 1); in main() local
225 expectEquals(e, sBo[i]); in main()
229 char e = (char) ((sB1[i] + sB2[i] + 1) >> 1); in main() local
230 expectEquals(e, sBo[i]); in main()
234 char e = (char) ((sB1[i] + 0xffff) >> 1); in main() local
235 expectEquals(e, sBo[i]); in main()
[all …]
/art/test/646-checker-hadd-alt-short/src/
DMain.java205 short e = (short) ((sB1[i] + sB2[i]) >> 1); in main() local
206 expectEquals(e, sBo[i]); in main()
210 short e = (short) (((sB1[i] & 0xffff) + (sB2[i] & 0xffff)) >> 1); in main() local
211 expectEquals(e, sBo[i]); in main()
215 short e = (short) ((sB1[i] + sB2[i] + 1) >> 1); in main() local
216 expectEquals(e, sBo[i]); in main()
220 short e = (short) (((sB1[i] & 0xffff) + (sB2[i] & 0xffff) + 1) >> 1); in main() local
221 expectEquals(e, sBo[i]); in main()
225 short e = (short) ((sB1[i] + 0x7fff) >> 1); in main() local
226 expectEquals(e, sBo[i]); in main()
[all …]
/art/test/144-static-field-sigquit/src/
DSigQuit.java39 } catch (Exception e) {
40 if (!e.getClass().getName().equals("ErrnoException")) {
41 e.printStackTrace(System.out);
53 } catch (Exception e) { in perform()
54 if (!e.getClass().getName().equals("ErrnoException")) { in perform()
55 e.printStackTrace(System.out); in perform()
/art/test/646-checker-hadd-alt-byte/src/
DMain.java204 byte e = (byte) ((sB1[i] + sB2[i]) >> 1); in main()
205 expectEquals(e, sBo[i]); in main()
209 byte e = (byte) (((sB1[i] & 0xff) + (sB2[i] & 0xff)) >> 1); in main()
210 expectEquals(e, sBo[i]); in main()
214 byte e = (byte) ((sB1[i] + sB2[i] + 1) >> 1); in main()
215 expectEquals(e, sBo[i]); in main()
219 byte e = (byte) (((sB1[i] & 0xff) + (sB2[i] & 0xff) + 1) >> 1); in main()
220 expectEquals(e, sBo[i]); in main()
224 byte e = (byte) ((sB1[i] + 0x7f) >> 1); in main()
225 expectEquals(e, sBo[i]); in main()
[all …]
/art/test/646-checker-hadd-byte/src/
DMain.java199 byte e = (byte) ((sB1[i] + sB2[i]) >> 1); in main()
200 expectEquals(e, sBo[i]); in main()
204 byte e = (byte) (((sB1[i] & 0xff) + (sB2[i] & 0xff)) >> 1); in main()
205 expectEquals(e, sBo[i]); in main()
209 byte e = (byte) ((sB1[i] + sB2[i] + 1) >> 1); in main()
210 expectEquals(e, sBo[i]); in main()
214 byte e = (byte) (((sB1[i] & 0xff) + (sB2[i] & 0xff) + 1) >> 1); in main()
215 expectEquals(e, sBo[i]); in main()
219 byte e = (byte) ((sB1[i] + 0x7f) >> 1); in main()
220 expectEquals(e, sBo[i]); in main()
[all …]
/art/test/638-no-line-number/src/
DMain.java21 } catch (Error e) { in main()
22 e.printStackTrace(); in main()
31 public static void doThrow(Error e) { in doThrow() argument
32 throw e; in doThrow()

12345678910>>...13