Home
last modified time | relevance | path

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

12

/art/test/044-proxy/src/
DReturnsAndArgPassing.java87 } catch (Exception e) { in invoke()
88 throw new Error("return type = " + returnType, e); in invoke()
188 } catch (NullPointerException e) { in testProxyReturns()
196 } catch (NullPointerException e) { in testProxyReturns()
204 } catch (NullPointerException e) { in testProxyReturns()
212 } catch (NullPointerException e) { in testProxyReturns()
220 } catch (NullPointerException e) { in testProxyReturns()
228 } catch (NullPointerException e) { in testProxyReturns()
236 } catch (NullPointerException e) { in testProxyReturns()
244 } catch (NullPointerException e) { in testProxyReturns()
[all …]
DNarrowingTest.java60 } catch (ClassCastException e) { in main()
/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/ExceptionHandle/
DExceptionHandle.java23 } catch (IOException e) { in f()
25 } catch (Exception e) { in f()
30 } catch (IOException e) { in f()
/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/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/106-exceptions2/src/
DMain.java148 Main e = null; in nullCheckTestThrow() local
151 return base.checkThrow(a,b,c,d,e,f); in nullCheckTestThrow()
167 } catch (ArrayIndexOutOfBoundsException e) { in checkAIOBE()
175 } catch (ArrayIndexOutOfBoundsException e) { in checkAIOBE()
191 } catch (ArrayIndexOutOfBoundsException e) { in checkDivZero()
193 } catch (ArithmeticException e) { in checkDivZero()
/art/test/054-uncaught/src/
DThreadDeathHandler.java29 public void uncaughtException(Thread t, Throwable e) { in uncaughtException() argument
31 e.printStackTrace(); in uncaughtException()
/art/test/050-sync-test/src/
DThreadDeathHandler.java29 public void uncaughtException(Thread t, Throwable e) { in uncaughtException() argument
31 e.printStackTrace(); in uncaughtException()
/art/test/022-interface/src/
DMain.java64 public CharSequence subSequence(int s, int e) { in objectOverrideTests()
65 return toString().subSequence(s, e); in objectOverrideTests()
81 public CharSequence subSequence(int s, int e) { in subSequence() argument
/art/test/078-polymorphic-virtual/src/
DMain.java31 } catch (Exception e) { in main()
32 System.out.println(e); in main()
/art/test/062-character-encodings/src/
DMain.java19 for (Map.Entry<String, Charset> e : all.entrySet()) { in main()
20 String canonicalName = e.getKey(); in main()
/art/test/040-miranda/src/
DMain.java50 } catch (Exception e) { in main()
51 System.out.println(" caught unexpected exception " + e); in main()
/art/test/070-nio-buffer/
Dinfo.txt1 Exercise NIO buffers (e.g. java.nio.ByteBuffer).
/art/test/107-int-math2/src/
DMain.java246 long e = 0x55; in shiftTest2() local
252 (e << 24) | (f << 16) | (g << 8) | h); in shiftTest2()
796 } catch(ClassCastException e) { in testClassCast()
801 } catch(ClassCastException e) { in testClassCast()
817 } catch(ArrayStoreException e) { in testArrayStoreException()
823 } catch(ArrayStoreException e) { in testArrayStoreException()
829 } catch(ArrayStoreException e) { in testArrayStoreException()
859 } catch (NegativeArraySizeException e) { in testArrayAllocation()
865 } catch (Throwable e) { in testArrayAllocation()
/art/test/ThreadStress/
DThreadStress.java141 } catch (InterruptedException e) { in main()
239 } catch (OutOfMemoryError e) { in run()
249 } catch (OutOfMemoryError e) { in run()
/art/test/027-arithmetic/src/
DMain.java57 long e = 0x55; in shiftTest2() local
63 (e << 24) | (f << 16) | (g << 8) | h); in shiftTest2()
/art/test/104-growth-limit/src/
DMain.java33 } catch (OutOfMemoryError e) { in main()
/art/test/068-classloader/
Dinfo.txt1 Class loaders allow code to "redefine" a given class, e.g. it's possible to
/art/test/080-oom-throw/src/
DMain.java41 } catch (OutOfMemoryError e) { in allocate()
/art/test/067-preemptive-unpark/src/
DMain.java69 int e = 0; in clearStack() local
/art/runtime/
Dcommon_test.h365 dirent* e; in TearDown() local
366 while ((e = readdir(dir)) != NULL) { in TearDown()
367 if ((strcmp(e->d_name, ".") == 0) || (strcmp(e->d_name, "..") == 0)) { in TearDown()
372 filename.append(e->d_name); in TearDown()
Dthread_list.cc96 dirent* e; in DumpUnattachedThreads() local
97 while ((e = readdir(d)) != NULL) { in DumpUnattachedThreads()
99 pid_t tid = strtol(e->d_name, &end, 10); in DumpUnattachedThreads()
/art/test/068-classloader/src/
DFancyLoader.java212 catch (ClassNotFoundException e) { in loadClass()
/art/test/003-omnibus-opcodes/src/
DIntMath.java58 long e = 0x55; in shiftTest2() local
64 (e << 24) | (f << 16) | (g << 8) | h); in shiftTest2()

12