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()
64 MyHandler eh = new MyHandler(); in testGetAndSetDefaultUncaughtExceptionHandler() local
66 Thread.setDefaultUncaughtExceptionHandler(eh); in testGetAndSetDefaultUncaughtExceptionHandler()
68 assertSame(eh, Thread.getDefaultUncaughtExceptionHandler()); in testGetAndSetDefaultUncaughtExceptionHandler()
/libcore/ojluni/src/main/java/java/lang/
DThread.java1866 public static void setDefaultUncaughtExceptionHandler(UncaughtExceptionHandler eh) { in setDefaultUncaughtExceptionHandler() argument
1867 defaultUncaughtExceptionHandler = eh; in setDefaultUncaughtExceptionHandler()
1895 public static void setUncaughtExceptionPreHandler(UncaughtExceptionHandler eh) { in setUncaughtExceptionPreHandler() argument
1896 uncaughtExceptionPreHandler = eh; in setUncaughtExceptionPreHandler()
1933 public void setUncaughtExceptionHandler(UncaughtExceptionHandler eh) { in setUncaughtExceptionHandler() argument
1935 uncaughtExceptionHandler = eh; in setUncaughtExceptionHandler()
/libcore/luni/src/main/java/javax/xml/parsers/
DDocumentBuilder.java245 public abstract void setErrorHandler(ErrorHandler eh); in setErrorHandler() argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DDocumentBuilderTest.java114 public void setErrorHandler(ErrorHandler eh) { in setErrorHandler() argument
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java943 Node<K,V>[] tab; Node<K,V> e, p; int n, eh; K ek; in get() local
947 if ((eh = e.hash) == h) { in get()
951 else if (eh < 0) in get()
2246 int eh; K ek; in find() local
2247 if ((eh = e.hash) == h && in find()
2250 if (eh < 0) { in find()