Home
last modified time | relevance | path

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

12345678910>>...14

/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
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
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
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
/libcore/ojluni/src/main/java/java/util/concurrent/
DBlockingDeque.java228 void addFirst(E e); in addFirst()
243 void addLast(E e); in addLast()
259 boolean offerFirst(E e); in offerFirst()
275 boolean offerLast(E e); in offerLast()
289 void putFirst(E e) throws InterruptedException; in putFirst()
303 void putLast(E e) throws InterruptedException; in putLast()
324 boolean offerFirst(E e, long timeout, TimeUnit unit) in offerFirst()
346 boolean offerLast(E e, long timeout, TimeUnit unit) in offerLast()
456 boolean add(E e); in add()
476 boolean offer(E e); in offer()
[all …]
DTransferQueue.java86 boolean tryTransfer(E e); in tryTransfer()
105 void transfer(E e) throws InterruptedException; in transfer()
134 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/jsr166-tests/src/test/java/jsr166/
DAbstractExecutorServiceTest.java68 ExecutorService e = new DirectExecutorService(); in testExecuteRunnable() local
85 ExecutorService e = new DirectExecutorService(); in testSubmitCallable() local
95 ExecutorService e = new DirectExecutorService(); in testSubmitRunnable() local
105 ExecutorService e = new DirectExecutorService(); in testSubmitRunnable2() local
176 ExecutorService e = new DirectExecutorService(); in testExecuteNullRunnable() local
187 ExecutorService e = new DirectExecutorService(); in testSubmitNullCallable() local
247 final ExecutorService e = new DirectExecutorService(); in testInvokeAny1() local
260 final ExecutorService e = new DirectExecutorService(); in testInvokeAny2() local
273 final ExecutorService e = new DirectExecutorService(); in testInvokeAny3() local
290 final ExecutorService e = new DirectExecutorService(); in testInvokeAny4() local
[all …]
DExchangerTest.java36 final Exchanger e = new Exchanger(); in testExchange() local
56 final Exchanger e = new Exchanger(); in testTimedExchange() local
76 final Exchanger e = new Exchanger(); in testExchange_InterruptedException() local
93 final Exchanger e = new Exchanger(); in testTimedExchange_InterruptedException() local
110 final Exchanger e = new Exchanger(); in testExchange_TimeoutException() local
128 final Exchanger e = new Exchanger(); in testReplacementAfterExchange() local
DExecutorsTest.java46 final ExecutorService e = Executors.newCachedThreadPool(); in testNewCachedThreadPool1() local
58 final ExecutorService e = Executors.newCachedThreadPool(new SimpleThreadFactory()); in testNewCachedThreadPool2() local
71 ExecutorService e = Executors.newCachedThreadPool(null); in testNewCachedThreadPool3() local
80 final ExecutorService e = Executors.newSingleThreadExecutor(); in testNewSingleThreadExecutor1() local
92 final ExecutorService e = Executors.newSingleThreadExecutor(new SimpleThreadFactory()); in testNewSingleThreadExecutor2() local
105 ExecutorService e = Executors.newSingleThreadExecutor(null); in testNewSingleThreadExecutor3() local
114 final ExecutorService e = Executors.newSingleThreadExecutor(); in testCastNewSingleThreadExecutor() local
127 final ExecutorService e = Executors.newFixedThreadPool(2); in testNewFixedThreadPool1() local
139 final ExecutorService e = Executors.newFixedThreadPool(2, new SimpleThreadFactory()); in testNewFixedThreadPool2() local
152 ExecutorService e = Executors.newFixedThreadPool(2, null); in testNewFixedThreadPool3() local
[all …]
DEntryTest.java35 Map.Entry e = new AbstractMap.SimpleEntry(k1, v1); in testConstructor1() local
54 Map.Entry e = new AbstractMap.SimpleEntry(e2); in testConstructor3() local
75 Map.Entry e = new AbstractMap.SimpleEntry(e2); in testEquals() local
93 Map.Entry e = new AbstractMap.SimpleEntry(k2, v1); in testNotEquals() local
114 Map.Entry e = new AbstractMap.SimpleEntry(e2); in testSetValue1() local
/libcore/ojluni/src/test/java/util/concurrent/tck/
DAbstractExecutorServiceTest.java91 ExecutorService e = new DirectExecutorService(); in testExecuteRunnable() local
108 ExecutorService e = new DirectExecutorService(); in testSubmitCallable() local
118 ExecutorService e = new DirectExecutorService(); in testSubmitRunnable() local
128 ExecutorService e = new DirectExecutorService(); in testSubmitRunnable2() local
199 ExecutorService e = new DirectExecutorService(); in testExecuteNullRunnable() local
210 ExecutorService e = new DirectExecutorService(); in testSubmitNullCallable() local
270 final ExecutorService e = new DirectExecutorService(); in testInvokeAny1() local
283 final ExecutorService e = new DirectExecutorService(); in testInvokeAny2() local
296 final ExecutorService e = new DirectExecutorService(); in testInvokeAny3() local
313 final ExecutorService e = new DirectExecutorService(); in testInvokeAny4() local
[all …]
DExchangerTest.java59 final Exchanger e = new Exchanger(); in testExchange() local
79 final Exchanger e = new Exchanger(); in testTimedExchange() local
99 final Exchanger e = new Exchanger(); in testExchange_InterruptedException() local
116 final Exchanger e = new Exchanger(); in testTimedExchange_InterruptedException() local
133 final Exchanger e = new Exchanger(); in testExchange_TimeoutException() local
151 final Exchanger e = new Exchanger(); in testReplacementAfterExchange() local
DExecutorsTest.java69 final ExecutorService e = Executors.newCachedThreadPool(); in testNewCachedThreadPool1() local
81 final ExecutorService e = Executors.newCachedThreadPool(new SimpleThreadFactory()); in testNewCachedThreadPool2() local
94 ExecutorService e = Executors.newCachedThreadPool(null); in testNewCachedThreadPool3() local
103 final ExecutorService e = Executors.newSingleThreadExecutor(); in testNewSingleThreadExecutor1() local
115 final ExecutorService e = Executors.newSingleThreadExecutor(new SimpleThreadFactory()); in testNewSingleThreadExecutor2() local
128 ExecutorService e = Executors.newSingleThreadExecutor(null); in testNewSingleThreadExecutor3() local
137 final ExecutorService e = Executors.newSingleThreadExecutor(); in testCastNewSingleThreadExecutor() local
150 final ExecutorService e = Executors.newFixedThreadPool(2); in testNewFixedThreadPool1() local
162 final ExecutorService e = Executors.newFixedThreadPool(2, new SimpleThreadFactory()); in testNewFixedThreadPool2() local
175 ExecutorService e = Executors.newFixedThreadPool(2, null); in testNewFixedThreadPool3() local
[all …]
/libcore/ojluni/src/main/java/java/util/
DDeque.java211 void addFirst(E e); in addFirst()
232 void addLast(E e); in addLast()
250 boolean offerFirst(E e); in offerFirst()
268 boolean offerLast(E e); in offerLast()
405 boolean add(E e); in add()
428 boolean offer(E e); in offer()
501 void push(E e); in push()
/libcore/ojluni/annotations/sdk/nullability/java/util/
DDeque.annotated.java43 public void addFirst(@libcore.util.NullFromTypeParam E e); in addFirst()
45 public void addLast(@libcore.util.NullFromTypeParam E e); in addLast()
47 public boolean offerFirst(@libcore.util.NullFromTypeParam E e); in offerFirst()
49 public boolean offerLast(@libcore.util.NullFromTypeParam E e); in offerLast()
71 public boolean add(@libcore.util.NullFromTypeParam E e); in add()
73 public boolean offer(@libcore.util.NullFromTypeParam E e); in offer()
83 public void push(@libcore.util.NullFromTypeParam E e); in push()
DArrayDeque.annotated.java48 public void addFirst(@libcore.util.NullFromTypeParam E e) { throw new RuntimeException("Stub!"); } in addFirst()
50 public void addLast(@libcore.util.NullFromTypeParam E e) { throw new RuntimeException("Stub!"); } in addLast()
52 …ic boolean offerFirst(@libcore.util.NullFromTypeParam E e) { throw new RuntimeException("Stub!"); } in offerFirst()
54 …lic boolean offerLast(@libcore.util.NullFromTypeParam E e) { throw new RuntimeException("Stub!"); } in offerLast()
76 public boolean add(@libcore.util.NullFromTypeParam E e) { throw new RuntimeException("Stub!"); } in add()
78 public boolean offer(@libcore.util.NullFromTypeParam E e) { throw new RuntimeException("Stub!"); } in offer()
88 public void push(@libcore.util.NullFromTypeParam E e) { throw new RuntimeException("Stub!"); } in push()
/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/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

12345678910>>...14