HomeSort by relevance Sort by last modified time
    Searched full:throws (Results 1 - 25 of 22175) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/javax/sip/address/
AddressFactory.java 7 Address createAddress(String address) throws ParseException;
10 throws ParseException;
11 SipURI createSipURI(String uri) throws ParseException;
12 SipURI createSipURI(String user, String host) throws ParseException;
13 TelURL createTelURL(String uri) throws ParseException;
14 URI createURI(String uri) throws ParseException;
TelURL.java 8 void setIsdnSubAddress(String isdnSubAddress) throws ParseException;
11 void setPhoneContext(String phoneContext) throws ParseException;
14 void setPhoneNumber(String phoneNumber) throws ParseException;
17 void setPostDial(String postDial) throws ParseException;
  /external/nist-sip/java/javax/sip/header/
ViaHeader.java 10 void setBranch(String branch) throws ParseException;
13 void setHost(String host) throws ParseException;
16 void setMAddr(String mAddr) throws ParseException;
19 void setPort(int port) throws InvalidArgumentException;
22 void setProtocol(String protocol) throws ParseException;
25 void setReceived(String received) throws ParseException;
28 void setRPort() throws InvalidArgumentException;
31 void setTransport(String transport) throws ParseException;
34 void setTTL(int ttl) throws InvalidArgumentException;
AuthenticationInfoHeader.java 9 void setCNonce(String cNonce) throws ParseException;
12 void setNextNonce(String nextNonce) throws ParseException;
15 void setNonceCount(int nonceCount) throws ParseException;
18 void setQop(String qop) throws ParseException;
21 void setResponse(String response) throws ParseException;
HeaderFactory.java 15 throws ParseException;
18 throws ParseException;
25 throws ParseException;
27 AllowHeader createAllowHeader(String method) throws ParseException;
30 throws ParseException;
33 throws ParseException;
35 CallIdHeader createCallIdHeader(String callId) throws ParseException;
44 String contentDispositionType) throws ParseException;
47 throws ParseException;
52 throws InvalidArgumentException
    [all...]
TimeStampHeader.java 9 void setDelay(float delay) throws InvalidArgumentException;
14 void setTime(long timeStamp) throws InvalidArgumentException;
17 void setTimeDelay(int delay) throws InvalidArgumentException;
20 void setTimeStamp(float timeStamp) throws InvalidArgumentException;
AuthorizationHeader.java 10 void setAlgorithm(String algorithm) throws ParseException;
13 void setCNonce(String cNonce) throws ParseException;
16 void setNonce(String nonce) throws ParseException;
19 void setNonceCount(int nonceCount) throws ParseException;
22 void setOpaque(String opaque) throws ParseException;
25 void setQop(String qop) throws ParseException;
28 void setRealm(String realm) throws ParseException;
31 void setResponse(String response) throws ParseException;
43 void setUsername(String username) throws ParseException;
EventHeader.java 9 void setEventId(String eventId) throws ParseException;
12 void setEventType(String eventType) throws ParseException;
MaxForwardsHeader.java 8 void decrementMaxForwards() throws TooManyHopsException;
11 void setMaxForwards(int maxForwards) throws InvalidArgumentException;
MediaType.java 7 void setContentSubType(String contentSubType) throws ParseException;
10 void setContentType(String contentType) throws ParseException;
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 48 public void clearParameters() throws SQLException {
51 public void execute() throws SQLException {
62 public boolean getEscapeProcessing() throws SQLException {
66 public int getMaxFieldSize() throws SQLException {
70 public int getMaxRows() throws SQLException {
78 public int getQueryTimeout() throws SQLException {
86 public Map<String, Class<?>> getTypeMap() throws SQLException {
90 public String getUrl() throws SQLException {
106 throws SQLException {
110 int length) throws SQLException
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Visitor.java 26 public void atASTList(ASTList n) throws CompileError {}
27 public void atPair(Pair n) throws CompileError {}
29 public void atFieldDecl(FieldDecl n) throws CompileError {}
30 public void atMethodDecl(MethodDecl n) throws CompileError {}
31 public void atStmnt(Stmnt n) throws CompileError {}
32 public void atDeclarator(Declarator n) throws CompileError {}
34 public void atAssignExpr(AssignExpr n) throws CompileError {}
35 public void atCondExpr(CondExpr n) throws CompileError {}
36 public void atBinExpr(BinExpr n) throws CompileError {}
37 public void atExpr(Expr n) throws CompileError {
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.tests/src/com/ibm/icu/tests/
UnitTest.java 21 public void runUtility(String testname) throws Exception {
45 public void testCollator() throws Exception {
49 public void testGlobalizationPreferencesTest() throws Exception {
53 public void testICUResourceBundleCollationTest() throws Exception {
57 public void testLocaleAliasCollationTest() throws Exception {
61 public void testRbnfLenientScannerTest() throws Exception {
65 public void testSearchTest() throws Exception {
69 public void testULocaleCollationTest() throws Exception {
76 public void testArabicShapingRegTest() throws Exception {
80 public void testBidi() throws Exception
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Os.java 44 public FileDescriptor accept(FileDescriptor fd, SocketAddress peerAddress) throws ErrnoException, SocketException;
45 public boolean access(String path, int mode) throws ErrnoException;
46 public InetAddress[] android_getaddrinfo(String node, StructAddrinfo hints, int netId) throws GaiException;
47 public void bind(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException;
48 public void bind(FileDescriptor fd, SocketAddress address) throws ErrnoException, SocketException;
49 public void chmod(String path, int mode) throws ErrnoException;
50 public void chown(String path, int uid, int gid) throws ErrnoException;
51 public void close(FileDescriptor fd) throws ErrnoException;
52 public void connect(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException;
53 public void connect(FileDescriptor fd, SocketAddress address) throws ErrnoException, SocketException
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
DataInput.java 20 public boolean readBoolean () throws IOException;
22 public byte readByte () throws IOException;
24 public char readChar () throws IOException;
26 public double readDouble () throws IOException;
28 public float readFloat () throws IOException;
30 public void readFully (byte[] b) throws IOException;
32 public void readFully (byte[] b, int off, int len) throws IOException;
34 public int readInt () throws IOException;
36 public String readLine () throws IOException;
38 public long readLong () throws IOException
    [all...]
DataOutput.java 20 public void write (byte[] data) throws IOException;
22 public void write (byte[] data, int ofs, int len) throws IOException;
24 public void write (int v) throws IOException;
26 public void writeBoolean (boolean v) throws IOException;
28 public void writeByte (int v) throws IOException;
30 public void writeBytes (String s) throws IOException;
32 public void writeChar (int v) throws IOException;
34 public void writeChars (String s) throws IOException;
36 public void writeDouble (double v) throws IOException;
38 public void writeFloat (float v) throws IOException
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Part.java 23 public void addHeader(String name, String value) throws MessagingException;
25 public void removeHeader(String name) throws MessagingException;
27 public void setHeader(String name, String value) throws MessagingException;
29 public Body getBody() throws MessagingException;
31 public String getContentType() throws MessagingException;
33 public String getDisposition() throws MessagingException;
35 public String getContentId() throws MessagingException;
37 public String[] getHeader(String name) throws MessagingException;
39 public void setExtendedHeader(String name, String value) throws MessagingException;
41 public String getExtendedHeader(String name) throws MessagingException
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/
Part.java 22 public void addHeader(String name, String value) throws MessagingException;
24 public void removeHeader(String name) throws MessagingException;
26 public void setHeader(String name, String value) throws MessagingException;
28 public Body getBody() throws MessagingException;
30 public String getContentType() throws MessagingException;
32 public String getDisposition() throws MessagingException;
34 public String getContentId() throws MessagingException;
36 public String[] getHeader(String name) throws MessagingException;
38 public void setExtendedHeader(String name, String value) throws MessagingException;
40 public String getExtendedHeader(String name) throws MessagingException
    [all...]
  /external/nist-sip/java/javax/sip/
SipProvider.java 14 throws ObjectInUseException;
16 throws ObjectInUseException;
18 throws ObjectInUseException;
30 throws TooManyListenersException;
36 throws TransactionUnavailableException;
38 throws TransactionAlreadyExistsException,
41 Dialog getNewDialog(Transaction transaction) throws SipException;
48 void sendRequest(Request request) throws SipException;
49 void sendResponse(Response response) throws SipException;
SipStack.java 13 throws TransportNotSupportedException, InvalidArgumentException;
15 String transport) throws TransportNotSupportedException,
18 throws ObjectInUseException;
21 throws ObjectInUseException;
22 void deleteSipProvider(SipProvider sipProvider) throws ObjectInUseException;
38 void start() throws ProviderDoesNotExistException, SipException;
ServerTransaction.java 7 throws SipException, InvalidArgumentException;
9 void enableRetransmissionAlerts() throws SipException;
  /external/testng/src/test/java/test/justin/
BaseTestCase.java 27 protected void tearDown() throws Exception {
31 protected Object createCustomer() throws Exception {
35 protected Object createProject() throws Exception {
39 protected Object createTimeEntry() throws Exception {
43 protected Object createUser(String name) throws Exception {
47 protected Object createUserGroup() throws Exception {
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
ParserTest.java 44 public void testEmpty() throws Exception { doTest(true); }
45 public void testFieldAnnotations() throws Exception { doTest(true); }
46 public void testInvalidAnnotation() throws Exception { doTest(true); }
47 public void testInvalidClassDirective() throws Exception { doTest(true); }
48 public void testInvalidClassDirective2() throws Exception { doTest(true); }
49 public void testInvalidClassDirective3() throws Exception { doTest(true); }
50 public void testInvalidEnumLiteral() throws Exception { doTest(true); }
51 public void testInvalidField() throws Exception { doTest(true); }
52 public void testInvalidField2() throws Exception { doTest(true); }
53 public void testInvalidField3() throws Exception { doTest(true);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
NameConstraintValidator.java 6 throws NameConstraintValidatorException;
9 throws NameConstraintValidatorException;
  /external/junit/src/junit/runner/
TestSuiteLoader.java 9 abstract public Class load(String suiteClassName) throws ClassNotFoundException;
10 abstract public Class reload(Class aClass) throws ClassNotFoundException;

Completed in 839 milliseconds

1 2 3 4 5 6 7 8 91011>>