Home
last modified time | relevance | path

Searched refs:se (Results 1 – 14 of 14) sorted by relevance

/libcore/luni/src/main/native/
DIcuUtilities.cpp31 …omStringEnumeration(JNIEnv* env, UErrorCode& status, const char* provider, StringEnumeration* se) { in fromStringEnumeration() argument
36 int32_t count = se->count(status); in fromStringEnumeration()
43 const UnicodeString* string = se->snext(status); in fromStringEnumeration()
/libcore/jsr166-tests/src/test/java/jsr166/
DScheduledExecutorTest.java173 ScheduledThreadPoolExecutor se = null; in testExecuteNull() local
175 se = new ScheduledThreadPoolExecutor(1); in testExecuteNull()
176 se.execute(null); in testExecuteNull()
180 joinPool(se); in testExecuteNull()
187 ScheduledThreadPoolExecutor se = new ScheduledThreadPoolExecutor(1); in testScheduleNull() local
190 Future f = se.schedule(callable, SHORT_DELAY_MS, MILLISECONDS); in testScheduleNull()
193 joinPool(se); in testScheduleNull()
200 ScheduledThreadPoolExecutor se = new ScheduledThreadPoolExecutor(1); in testSchedule1_RejectedExecutionException() local
202 se.shutdown(); in testSchedule1_RejectedExecutionException()
203 se.schedule(new NoOpRunnable(), in testSchedule1_RejectedExecutionException()
[all …]
DScheduledExecutorSubclassTest.java225 CustomExecutor se = new CustomExecutor(1); in testExecuteNull() local
227 se.execute(null); in testExecuteNull()
230 joinPool(se); in testExecuteNull()
237 CustomExecutor se = new CustomExecutor(1); in testScheduleNull() local
240 Future f = se.schedule(callable, SHORT_DELAY_MS, MILLISECONDS); in testScheduleNull()
243 joinPool(se); in testScheduleNull()
250 CustomExecutor se = new CustomExecutor(1); in testSchedule1_RejectedExecutionException() local
252 se.shutdown(); in testSchedule1_RejectedExecutionException()
253 se.schedule(new NoOpRunnable(), in testSchedule1_RejectedExecutionException()
260 joinPool(se); in testSchedule1_RejectedExecutionException()
[all …]
/libcore/luni/src/test/java/libcore/java/net/
DOldSocketImplFactoryTest.java43 } catch(SocketException se) { in test_createSocketImpl()
50 } catch(SocketException se) { in test_createSocketImpl()
DOldDatagramSocketImplFactoryTest.java60 } catch(SocketException se) { in test_createDatagramSocketImpl()
67 } catch(SocketException se) { in test_createDatagramSocketImpl()
DOldURLStreamHandlerTest.java113 } catch(SecurityException se) { in test_parseURLLjava_net_URLLjava_lang_StringII()
DOldServerSocketTest.java293 } catch(SocketException se) { in test_setReceiveBufferSizeI()
DOldSocketTest.java1623 } catch(SocketException se) { in test_getOOBInline()
2117 } catch (SocketException se) { in test_shutdownInputOutput_twice()
2125 } catch (SocketException se) { in test_shutdownInputOutput_twice()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
DHttpsURLConnectionTest.java292 } catch (CertificateException se) { in getLocalCertificates()
307 } catch (CertificateException se) { in getServerCertificates()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DSAXParserTest.java319 } catch(org.xml.sax.SAXException se) { in test_parseLjava_io_FileLorg_xml_sax_helpers_DefaultHandler()
360 } catch(org.xml.sax.SAXException se) { in testParseFileHandlerBase()
504 } catch(org.xml.sax.SAXException se) { in test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandler()
548 } catch(org.xml.sax.SAXException se) { in test_parseLjava_io_InputStreamLorg_xml_sax_helpers_DefaultHandlerLjava_lang_String()
732 } catch(org.xml.sax.SAXException se) { in test_parseLjava_lang_StringLorg_xml_sax_helpers_DefaultHandler()
773 } catch(org.xml.sax.SAXException se) { in testParseStringHandlerBase()
/libcore/luni/src/test/java/libcore/javax/net/ssl/
DSSLContextTest.java487 SSLEngine se = sslContext.createSSLEngine(); in test_SSLContext_createSSLEngine() local
488 assertNotNull(se); in test_SSLContext_createSSLEngine()
496 SSLEngine se = sslContext.createSSLEngine(null, -1); in test_SSLContext_createSSLEngine() local
497 assertNotNull(se); in test_SSLContext_createSSLEngine()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DDatagramSocketTest.java373 } catch(SocketException se) { in test_getReceiveBufferSize()
386 } catch(SocketException se) { in test_getSendBufferSize()
537 } catch(SocketException se) { in test_setSendBufferSizeI()
815 } catch(SocketException se) { in test_setReuseAddressZ()
830 } catch(SocketException se) { in test_getReuseAddress()
857 } catch(SocketException se) { in test_setBroadcastZ()
DSocketTest.java1575 } catch (SocketException se) { in test_shutdownInput()
1617 } catch (SocketException se) { in test_shutdownOutput()
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DSignatureTest.java515 MySignature se = new MySignature(); in testGetParameter() local
516 se.getParameter("test"); in testGetParameter()