Home
last modified time | relevance | path

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

12345678910>>...17

/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
DIndexOutOfBoundsExceptionTest.java28 IndexOutOfBoundsException e = new IndexOutOfBoundsException(); in test_Constructor() local
38 IndexOutOfBoundsException e = new IndexOutOfBoundsException("fixture"); in test_ConstructorLjava_lang_String() local
44 IndexOutOfBoundsException e = new IndexOutOfBoundsException(Integer.MAX_VALUE); in test_ConstructorI() local
50 IndexOutOfBoundsException e = new IndexOutOfBoundsException(Long.MAX_VALUE); in test_ConstructorJ() 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
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
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
/libcore/ojluni/src/main/java/java/util/concurrent/
DBlockingDeque.java219 void addFirst(E e); in addFirst()
234 void addLast(E e); in addLast()
250 boolean offerFirst(E e); in offerFirst()
266 boolean offerLast(E e); in offerLast()
280 void putFirst(E e) throws InterruptedException; in putFirst()
294 void putLast(E e) throws InterruptedException; in putLast()
315 boolean offerFirst(E e, long timeout, TimeUnit unit) in offerFirst()
337 boolean offerLast(E e, long timeout, TimeUnit unit) in offerLast()
447 boolean add(E e); in add()
467 boolean offer(E e); in offer()
[all …]
/libcore/luni/src/test/java/libcore/javax/xml/transform/
DTransformerConfigurationExceptionTest.java33 TransformerConfigurationException e = new TransformerConfigurationException(); in constructor() local
41 TransformerConfigurationException e = new TransformerConfigurationException("message", t); in constructorWithStringAndThrowable() local
49 TransformerConfigurationException e = new TransformerConfigurationException("message", in constructorWithStringAndSourceLocator() local
60 TransformerConfigurationException e = new TransformerConfigurationException("message", in constructorWithStringSourceLocatorAndThrowable() local
70 TransformerConfigurationException e = new TransformerConfigurationException(t); in constructorWithThrowable() local
77 TransformerConfigurationException e = new TransformerConfigurationException("message"); in constructorWithString() local
DTransformerFactoryConfigurationErrorTest.java32 TransformerFactoryConfigurationError e = new TransformerFactoryConfigurationError(); in constructor() local
40 TransformerFactoryConfigurationError e = new TransformerFactoryConfigurationError(ex); in constructorWithException() local
49 TransformerFactoryConfigurationError e = new TransformerFactoryConfigurationError(ex, in constructorWithExceptionAndString() local
58 … TransformerFactoryConfigurationError e = new TransformerFactoryConfigurationError("message"); in constructorWithString() local
65 … TransformerFactoryConfigurationError e = new TransformerFactoryConfigurationError("message"); in getException() local
DTransformerExceptionTest.java34 TransformerException e = new TransformerException(t); in constructorWithStringAndThrowable() local
42 TransformerException e = new TransformerException("message", locator); in constructorWithStringAndSourceLocator() local
52 TransformerException e = new TransformerException("message", locator, t); in constructorWithStringSourceLocatorAndThrowable() local
60 TransformerException e = new TransformerException("message"); in getException() local
69 TransformerException e = new TransformerException("message", locator); in getMessageAndLocation() 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 …]
/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
/libcore/luni/src/test/java/libcore/javax/xml/datatype/
DDatatypeConfigurationExceptionTest.java37 DatatypeConfigurationException e = new DatatypeConfigurationException(); in constructor() local
45 DatatypeConfigurationException e = new DatatypeConfigurationException("message", t); in constructorWithStringAndThrowable() local
53 DatatypeConfigurationException e = new DatatypeConfigurationException(t); in constructorWithThrowable() local
61 DatatypeConfigurationException e = new DatatypeConfigurationException(t); in testPrintStackTrace_noArgs() local
68 DatatypeConfigurationException e = new DatatypeConfigurationException(t); in testPrintStackTrace_withPrintStream() local
80 DatatypeConfigurationException e = new DatatypeConfigurationException(t); in testPrintStackTrace_withPrintWriter() local
/libcore/luni/src/test/java/libcore/javax/xml/xpath/
DXPathExceptionTest.java38 XPathException e = new XPathException("message"); in constructorWithString() local
56 XPathException e = new XPathException(t); in constructorWithThrowable() local
73 XPathException e = new XPathException("message"); in printStackTrace_noArgs() local
79 XPathException e = new XPathException("message"); in printStackTraceWithPrintStream_nullCause() local
90 XPathException e = new XPathException(new TestCauseException()); in printStackTraceWithPrintStream_nonNullCause() local
102 XPathException e = new XPathException("message"); in printStackTraceWithPrintWriter_nullCause() local
113 XPathException e = new XPathException(new TestCauseException()); in printStackTraceWithPrintWriter_nonNullCause() 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/
DSequencedCollection.java106 default void addFirst(E e) { in addFirst()
124 default void addLast(E e) { in addLast()
177 E e = it.next(); in removeFirst() local
199 E e = it.next(); in removeLast() local
DDeque.java221 void addFirst(E e); in addFirst()
242 void addLast(E e); in addLast()
260 boolean offerFirst(E e); in offerFirst()
278 boolean offerLast(E e); in offerLast()
415 boolean add(E e); in add()
438 boolean offer(E e); in offer()
536 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()
/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/ojluni/annotations/flagged_api/java/util/
DDeque.annotated.java42 public void addFirst(E e); in addFirst()
44 public void addLast(E e); in addLast()
46 public boolean offerFirst(E e); in offerFirst()
48 public boolean offerLast(E e); in offerLast()
71 public boolean add(E e); in add()
73 public boolean offer(E e); in offer()
85 public void push(E e); in push()

12345678910>>...17