Home
last modified time | relevance | path

Searched refs:eh (Results 1 – 5 of 5) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
DThreadTest.java40 MyHandler eh = new MyHandler(); in testGetAndSetUncaughtExceptionHandler() local
42 current.setUncaughtExceptionHandler(eh); in testGetAndSetUncaughtExceptionHandler()
44 assertSame(eh, current.getUncaughtExceptionHandler()); in testGetAndSetUncaughtExceptionHandler()
65 MyHandler eh = new MyHandler(); in testGetAndSetDefaultUncaughtExceptionHandler() local
67 Thread.setDefaultUncaughtExceptionHandler(eh); in testGetAndSetDefaultUncaughtExceptionHandler()
69 assertSame(eh, Thread.getDefaultUncaughtExceptionHandler()); in testGetAndSetDefaultUncaughtExceptionHandler()
DForkJoinPoolTest.java267 final Thread.UncaughtExceptionHandler eh = in testSetUncaughtExceptionHandler() local
273 eh, false); in testSetUncaughtExceptionHandler()
275 assertSame(eh, p.getUncaughtExceptionHandler()); in testSetUncaughtExceptionHandler()
/libcore/luni/src/main/java/javax/xml/parsers/
DDocumentBuilder.java245 public abstract void setErrorHandler(ErrorHandler eh); in setErrorHandler() argument
/libcore/luni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java771 Node<K,V>[] tab; Node<K,V> e, p; int n, eh; K ek; in get() local
775 if ((eh = e.hash) == h) { in get()
779 else if (eh < 0) in get()
1544 int eh; K ek; in find() local
1545 if ((eh = e.hash) == h && in find()
1548 if (eh < 0) in find()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DDocumentBuilderTest.java111 public void setErrorHandler(ErrorHandler eh) { in setErrorHandler() argument