Home
last modified time | relevance | path

Searched defs:e (Results 1 – 25 of 221) sorted by relevance

123456789

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DAssertionErrorTest.java25 AssertionError e = new AssertionError(); in test_Constructor() local
32 AssertionError e = new AssertionError(obj); in test_ConstructorObject() local
43 AssertionError e = new AssertionError(true); in test_ConstructorBoolean() local
49 AssertionError e = new AssertionError('a'); in test_ConstructorChar() local
55 AssertionError e = new AssertionError(1); in test_ConstructorInt() local
61 AssertionError e = new AssertionError(1L); in test_ConstructorLong() local
67 AssertionError e = new AssertionError(1.0F); in test_ConstructorFloat() local
73 AssertionError e = new AssertionError(1.0D); in test_ConstructorDouble() local
DSecurityExceptionTest.java30 SecurityException e = new SecurityException(); in test_Constructor() local
40 SecurityException e = new SecurityException("fixture"); in test_ConstructorLjava_lang_String() local
51 SecurityException e = new SecurityException("fixture", npe); in test_ConstructorLjava_lang_StringLjava_lang_Throwable() local
62 SecurityException e = new SecurityException(npe); in test_ConstructorLjava_lang_Throwable() local
DArrayIndexOutOfBoundsExceptionTest.java28 ArrayIndexOutOfBoundsException e = new ArrayIndexOutOfBoundsException(-1); in test_ConstructorI() local
39 ArrayIndexOutOfBoundsException e = new ArrayIndexOutOfBoundsException(); in test_Constructor() local
48 ArrayIndexOutOfBoundsException e = new ArrayIndexOutOfBoundsException("fixture"); in test_ConstructorLjava_lang_String() local
DIllegalArgumentExceptionTest.java30 IllegalArgumentException e = new IllegalArgumentException(); in test_Constructor() local
40 IllegalArgumentException e = new IllegalArgumentException("fixture"); in test_ConstructorLjava_lang_String() local
56 IllegalArgumentException e = new IllegalArgumentException(exception); in test_ConstructorLjava_lang_Throwable() local
68 IllegalArgumentException e = new IllegalArgumentException("fixture", in test_ConstructorLjava_lang_StringLjava_lang_Throwable() local
DClassNotFoundExceptionTest.java34 ClassNotFoundException e = new ClassNotFoundException(); in test_Constructor() local
44 ClassNotFoundException e = new ClassNotFoundException("fixture"); in test_ConstructorLjava_lang_String() local
54 ClassNotFoundException e = new ClassNotFoundException("SomeMessage", in); in test_ClassNotFoundException_LString_LThrowable() local
DExceptionInInitializerErrorTest.java26 ExceptionInInitializerError e = new ExceptionInInitializerError(); in test_Constructor() local
36 ExceptionInInitializerError e = new ExceptionInInitializerError("fixture"); in test_ConstructorLjava_lang_String() local
46 ExceptionInInitializerError e = new ExceptionInInitializerError(npe); in test_ConstructorLjava_lang_Throwable() local
DIllegalAccessErrorTest.java28 IllegalAccessError e = new IllegalAccessError(); in test_Constructor() local
38 IllegalAccessError e = new IllegalAccessError("fixture"); in test_ConstructorLjava_lang_String() local
DIndexOutOfBoundsExceptionTest.java28 IndexOutOfBoundsException e = new IndexOutOfBoundsException(); in test_Constructor() local
38 IndexOutOfBoundsException e = new IndexOutOfBoundsException("fixture"); in test_ConstructorLjava_lang_String() local
/libcore/jsr166-tests/src/test/java/jsr166/
DAbstractExecutorServiceTest.java43 ExecutorService e = new DirectExecutorService(); in testExecuteRunnable() local
61 ExecutorService e = new DirectExecutorService(); in testSubmitCallable() local
71 ExecutorService e = new DirectExecutorService(); in testSubmitRunnable() local
81 ExecutorService e = new DirectExecutorService(); in testSubmitRunnable2() local
153 ExecutorService e = new DirectExecutorService(); in testExecuteNullRunnable() local
164 ExecutorService e = new DirectExecutorService(); in testSubmitNullCallable() local
227 ExecutorService e = new DirectExecutorService(); in testInvokeAny1() local
241 ExecutorService e = new DirectExecutorService(); in testInvokeAny2() local
255 ExecutorService e = new DirectExecutorService(); in testInvokeAny3() local
273 ExecutorService e = new DirectExecutorService(); in testInvokeAny4() local
[all …]
DExecutorsTest.java23 ExecutorService e = Executors.newCachedThreadPool(); in testNewCachedThreadPool1() local
34 ExecutorService e = Executors.newCachedThreadPool(new SimpleThreadFactory()); in testNewCachedThreadPool2() local
46 ExecutorService e = Executors.newCachedThreadPool(null); in testNewCachedThreadPool3() local
55 ExecutorService e = Executors.newSingleThreadExecutor(); in testNewSingleThreadExecutor1() local
66 ExecutorService e = Executors.newSingleThreadExecutor(new SimpleThreadFactory()); in testNewSingleThreadExecutor2() local
78 ExecutorService e = Executors.newSingleThreadExecutor(null); in testNewSingleThreadExecutor3() local
87 ExecutorService e = Executors.newSingleThreadExecutor(); in testCastNewSingleThreadExecutor() local
101 ExecutorService e = Executors.newFixedThreadPool(2); in testNewFixedThreadPool1() local
112 ExecutorService e = Executors.newFixedThreadPool(2, new SimpleThreadFactory()); in testNewFixedThreadPool2() local
124 ExecutorService e = Executors.newFixedThreadPool(2, null); in testNewFixedThreadPool3() local
[all …]
DExchangerTest.java24 final Exchanger e = new Exchanger(); in testExchange() local
44 final Exchanger e = new Exchanger(); in testTimedExchange() local
64 final Exchanger e = new Exchanger(); in testExchange_InterruptedException() local
81 final Exchanger e = new Exchanger(); in testTimedExchange_InterruptedException() local
98 final Exchanger e = new Exchanger(); in testExchange_TimeoutException() local
116 final Exchanger e = new Exchanger(); in testReplacementAfterExchange() local
DForkJoinPoolTest.java58 public void uncaughtException(Thread t, Throwable e) { in uncaughtException()
414 ExecutorService e = new ForkJoinPool(1); in testExecuteRunnable() local
436 ExecutorService e = new ForkJoinPool(1); in testSubmitCallable() local
451 ExecutorService e = new ForkJoinPool(1); in testSubmitRunnable() local
466 ExecutorService e = new ForkJoinPool(1); in testSubmitRunnable2() local
548 ExecutorService e = new ForkJoinPool(1); in testExecuteNullRunnable() local
562 ExecutorService e = new ForkJoinPool(1); in testSubmitNullCallable() local
623 ExecutorService e = new ForkJoinPool(1); in testInvokeAny1() local
637 ExecutorService e = new ForkJoinPool(1); in testInvokeAny2() local
651 ExecutorService e = new ForkJoinPool(1); in testInvokeAny3() local
[all …]
DExecutorCompletionServiceTest.java44 ExecutorService e = Executors.newCachedThreadPool(); in testConstructorNPE2() local
54 ExecutorService e = Executors.newCachedThreadPool(); in testSubmitNPE() local
70 ExecutorService e = Executors.newCachedThreadPool(); in testSubmitNPE2() local
86 ExecutorService e = Executors.newCachedThreadPool(); in testTake() local
102 ExecutorService e = Executors.newCachedThreadPool(); in testTake2() local
118 ExecutorService e = Executors.newCachedThreadPool(); in testPoll1() local
143 ExecutorService e = Executors.newCachedThreadPool(); in testPoll2() local
167 ExecutorService e = new ThreadPoolExecutor( in testNewTaskForCallable() local
199 ExecutorService e = new ThreadPoolExecutor( in testNewTaskForRunnable() local
DScheduledExecutorTest.java748 ExecutorService e = new ScheduledThreadPoolExecutor(2); in testSubmitCallable() local
762 ExecutorService e = new ScheduledThreadPoolExecutor(2); in testSubmitRunnable() local
776 ExecutorService e = new ScheduledThreadPoolExecutor(2); in testSubmitRunnable2() local
790 ExecutorService e = new ScheduledThreadPoolExecutor(2); in testInvokeAny1() local
804 ExecutorService e = new ScheduledThreadPoolExecutor(2); in testInvokeAny2() local
819 ExecutorService e = new ScheduledThreadPoolExecutor(2); in testInvokeAny3() local
837 ExecutorService e = new ScheduledThreadPoolExecutor(2); in testInvokeAny4() local
854 ExecutorService e = new ScheduledThreadPoolExecutor(2); in testInvokeAny5() local
870 ExecutorService e = new ScheduledThreadPoolExecutor(2); in testInvokeAll1() local
884 ExecutorService e = new ScheduledThreadPoolExecutor(2); in testInvokeAll2() local
[all …]
DEntryTest.java23 Map.Entry e = new AbstractMap.SimpleEntry(k1, v1); in testConstructor1() local
42 Map.Entry e = new AbstractMap.SimpleEntry(e2); in testConstructor3() local
63 Map.Entry e = new AbstractMap.SimpleEntry(e2); in testEquals() local
81 Map.Entry e = new AbstractMap.SimpleEntry(k2, v1); in testNotEquals() local
102 Map.Entry e = new AbstractMap.SimpleEntry(e2); in testSetValue1() local
/libcore/luni/src/main/java/java/util/concurrent/
DBlockingDeque.java192 void addFirst(E e); in addFirst()
207 void addLast(E e); in addLast()
223 boolean offerFirst(E e); in offerFirst()
239 boolean offerLast(E e); in offerLast()
253 void putFirst(E e) throws InterruptedException; in putFirst()
267 void putLast(E e) throws InterruptedException; in putLast()
288 boolean offerFirst(E e, long timeout, TimeUnit unit) in offerFirst()
310 boolean offerLast(E e, long timeout, TimeUnit unit) in offerLast()
420 boolean add(E e); in add()
440 boolean offer(E e); in offer()
[all …]
DTransferQueue.java57 boolean tryTransfer(E e); in tryTransfer()
76 void transfer(E e) throws InterruptedException; in transfer()
105 boolean tryTransfer(E e, long timeout, TimeUnit unit) in tryTransfer()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
DSAXExceptionTest.java29 SAXException e = new SAXException(); in testSAXParseException() local
39 SAXException e = new SAXException(ERR, c); in testSAXException_String_Exception() local
59 SAXException e = new SAXException(ERR); in testSAXException_String() local
75 SAXException e = new SAXException(c); in testSAXException_Exception() local
89 SAXException e = new SAXException(ERR); in testToString() local
DSAXParseExceptionTest.java47 SAXParseException e = new SAXParseException(ERR, l, c); in testSAXParseException_String_Locator_Exception() local
99 SAXParseException e = new SAXParseException(ERR, l); in testSAXParseException_String_Locator() local
137 SAXParseException e = new SAXParseException(ERR, PUB, SYS, ROW, COL, c); in testSAXParseException_String_String_String_int_int_Exception() local
183 SAXParseException e = new SAXParseException(ERR, PUB, SYS, ROW, COL); in testSAXParseException_String_String_String_int_int() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DUndeclaredThrowableExceptionTest.java29 UndeclaredThrowableException e = new UndeclaredThrowableException( in test_UndeclaredThrowableException_LThrowable() local
40 UndeclaredThrowableException e = new UndeclaredThrowableException(null, in test_UndeclaredThrowableException_LThrowable_LString() local
51 UndeclaredThrowableException e = new UndeclaredThrowableException(null); in test_getUndeclaredThrowable() local
/libcore/luni/src/main/java/java/util/
DDeque.java182 void addFirst(E e); in addFirst()
202 void addLast(E e); in addLast()
220 boolean offerFirst(E e); in offerFirst()
238 boolean offerLast(E e); in offerLast()
373 boolean add(E e); in add()
396 boolean offer(E e); in offer()
470 void push(E e); in push()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DServiceConfigurationErrorTest.java38 ServiceConfigurationError e = new ServiceConfigurationError("fixture"); in test_ConstructorLjava_lang_String() local
50 ServiceConfigurationError e = new ServiceConfigurationError("fixture", in test_ConstructorLjava_lang_StringLjava_lang_Throwable() local
74 ServiceConfigurationError e = new ServiceConfigurationError("fixture", in testSerializationCompatibility() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
DAnnotationFormatErrorTest.java33 AnnotationFormatError e = new AnnotationFormatError("some message"); in test_constructorLjava_lang_String() local
42 AnnotationFormatError e = new AnnotationFormatError(iae); in test_constructorLjava_lang_Throwable() local
52 AnnotationFormatError e = new AnnotationFormatError("some message", iae); in test_constructorLjava_lang_StringLjava_lang_Throwable() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DURISyntaxExceptionTest.java50 URISyntaxException e = new URISyntaxException("str", "problem", 2); in test_ConstructorLjava_lang_StringLjava_lang_StringI() local
75 URISyntaxException e = new URISyntaxException("str", "problem"); in test_ConstructorLjava_lang_StringLjava_lang_String() local
107 URISyntaxException e = new URISyntaxException("str", "problem", 3); in test_getMessage() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DIOErrorTest.java33 IOError e = new IOError(null); in test_IOError_LThrowable() local
59 IOError e = new IOError(new Throwable(errorMsg)); in testSerializationSelf() local
69 IOError e = new IOError(new Throwable(errorMsg)); in testSerializationCompatibility() local

123456789