HomeSort by relevance Sort by last modified time
    Searched refs:ParseException (Results 101 - 125 of 354) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
ReplyToParser.java 28 import java.text.ParseException;
63 public SIPHeader parse() throws ParseException {
84 public static void main(String args[]) throws ParseException {
SubjectParser.java 29 import java.text.ParseException;
64 public SIPHeader parse() throws ParseException {
86 public static void main(String args[]) throws ParseException {
ToParser.java 27 import java.text.ParseException;
55 public SIPHeader parse() throws ParseException {
66 public static void main(String args[]) throws ParseException {
StringMsgParser.java 46 import java.text.ParseException;
124 * @exception ParseException
129 public SIPMessage parseSIPMessage(byte[] msgBuffer) throws ParseException {
169 throw new ParseException("Bad message encoding!", 0);
188 throw new ParseException("Bad header continuation.", 0);
210 if (message == null) throw new ParseException("Bad message", 0);
235 * @exception ParseException
240 public SIPMessage parseSIPMessage(String msgString) throws ParseException {
299 throw new ParseException("Bad header continuation.", 0);
331 throw new ParseException("Extraneous characters at the end of the message ",i)
    [all...]
  /external/nist-sip/java/javax/sip/
ListeningPoint.java 4 import java.text.ParseException;
20 void setSentBy(String sentBy) throws ParseException;
  /external/nist-sip/java/javax/sip/message/
Request.java 3 import java.text.ParseException;
24 void setMethod(String method) throws ParseException;
  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 40 import java.text.ParseException;
85 protected void consumeDomainLabel() throws ParseException {
96 protected String ipv6Reference() throws ParseException {
162 throw new ParseException(
171 public Host host() throws ParseException {
200 throw new ParseException(
259 * @throws ParseException
261 public HostPort hostPort( boolean allowWS ) throws ParseException {
281 throw new ParseException(
306 throw new ParseException( lexer.getBuffer()
    [all...]
StringTokenizer.java 29 import java.text.ParseException;
130 public char lookAhead() throws ParseException {
134 public char lookAhead(int k) throws ParseException {
144 public char getNextChar() throws ParseException {
146 throw new ParseException(
174 public String getNextToken(char delim) throws ParseException {
181 throw new ParseException("EOL reached", 0);
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PChargingFunctionAddresses.java 34 import java.text.ParseException;
107 * @throws ParseException
109 public void setChargingCollectionFunctionAddress(String ccfAddress) throws ParseException {
125 * @throws ParseException
127 public void addChargingCollectionFunctionAddress(String ccfAddress) throws ParseException {
142 * @throws ParseException if the address was not removed
144 public void removeChargingCollectionFunctionAddress(String ccfAddress) throws ParseException {
153 throw new ParseException("CCF Address Not Removed",0);
190 * @throws ParseException
192 public void setEventChargingFunctionAddress(String ecfAddress) throws ParseException {
    [all...]
Privacy.java 35 import java.text.ParseException;
107 public void setPrivacy(String privacy) throws ParseException
122 public void setValue(String value) throws ParseException {
123 throw new ParseException(value,0);
SecurityServerHeader.java 32 import java.text.ParseException;
PChargingVector.java 32 import java.text.ParseException;
113 * @throws ParseException
115 public void setICID(String icid) throws ParseException {
146 * @throws ParseException
148 public void setICIDGeneratedAt(String host) throws ParseException {
179 * @throws ParseException
181 public void setOriginatingIOI(String origIOI) throws ParseException {
210 * @throws ParseException
212 public void setTerminatingIOI(String termIOI) throws ParseException {
221 public void setValue(String value) throws ParseException {
    [all...]
PServedUser.java 27 import java.text.ParseException;
74 } catch (ParseException e) {
104 } catch (ParseException e) {
143 public void setValue(String value) throws ParseException {
144 throw new ParseException(value,0);
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 32 import java.text.ParseException;
105 public void setParameter(String name, String value) throws ParseException {
131 throw new ParseException(value
192 * @throws ParseException
196 public void setRealm(String realm) throws ParseException {
222 * @throws ParseException
227 public void setNonce(String nonce) throws ParseException {
288 * @throws ParseException
293 public void setAlgorithm(String algorithm) throws ParseException {
316 * @throws ParseException
    [all...]
HeaderFactoryExt.java 3 import java.text.ParseException;
46 * @throws ParseException
48 public SipRequestLine createRequestLine(String requestLine) throws ParseException;
54 public SipStatusLine createStatusLine(String statusLine) throws ParseException;
79 String fromTag) throws ParseException;
94 * @throws ParseException
98 throws NullPointerException, ParseException;
108 * @throws ParseException
119 * @throws ParseException
137 * @throws ParseException
    [all...]
HeaderFactoryImpl.java 36 import java.text.ParseException;
83 * @throws ParseException which signals that an error has been reached
88 throws ParseException {
102 * @throws ParseException which signals that an error has been reached
109 throws ParseException {
155 * @throws ParseException which signals that an error has been reached
161 throws ParseException {
173 * @throws ParseException which signals that an error has been reached
177 public AllowHeader createAllowHeader(String method) throws ParseException {
191 * @throws ParseException which signals that an error has been reache
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
AbstractXmlPullParser.java 19 import com.android.tradefed.util.xml.AbstractXmlParser.ParseException;
39 * @throws ParseException if failed to parse the summary data.
41 public void parse(Reader xmlReader) throws ParseException {
48 throw new ParseException(e);
50 throw new ParseException(e);
  /external/guava/guava/src/com/google/common/net/
HostSpecifier.java 23 import java.text.ParseException;
116 * @throws ParseException if the specifier is not valid.
119 throws ParseException {
127 ParseException parseException =
128 new ParseException("Invalid host specifier: " + specifier, 0);
129 parseException.initCause(e);
130 throw parseException;
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
References.java 5 import java.text.ParseException;
42 public void setRel(String rel) throws ParseException{
64 public void setParameter(String name, String value) throws ParseException {
83 public void setValue(String value) throws ParseException {
  /external/apache-http/src/org/apache/http/message/
BasicTokenIterator.java 37 import org.apache.http.ParseException;
112 * @throws ParseException if an invalid header value is encountered
115 throws NoSuchElementException, ParseException {
122 // updates currentToken, may trigger ParseException:
136 * @throws ParseException if an invalid header value is encountered
139 throws NoSuchElementException, ParseException {
171 * @throws ParseException if an invalid header value is encountered
174 throws ParseException {
255 throw new ParseException
286 * @throws ParseException
    [all...]
BasicLineParser.java 36 import org.apache.http.ParseException;
115 throws ParseException {
135 throws ParseException {
156 throw new ParseException
170 throw new ParseException
179 throw new ParseException
187 throw new ParseException
201 throw new ParseException(
280 throws ParseException {
304 * @throws ParseException in case of a parse erro
    [all...]
  /external/guava/guava-tests/test/com/google/common/net/
HostSpecifierTest.java 25 import java.text.ParseException;
51 public void testGoodIpAddresses() throws ParseException {
63 public void testGoodDomains() throws ParseException {
97 private void assertGood(String spec) throws ParseException {
113 fail("Should have thrown ParseException: " + spec);
114 } catch (ParseException expected) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PChargingFunctionAddressesParser.java 39 import java.text.ParseException;
86 public SIPHeader parse() throws ParseException {
107 } catch (ParseException ex) {
120 protected void parseParameter(PChargingFunctionAddresses chargingFunctionAddresses) throws ParseException {
147 public static void main(String args[]) throws ParseException {
PVisitedNetworkIDParser.java 40 import java.text.ParseException;
79 public SIPHeader parse() throws ParseException {
121 protected void parseQuotedString(PVisitedNetworkID visitedNetworkID) throws ParseException {
140 throw new ParseException("unexpected EOL", 1);
162 protected void parseToken(PVisitedNetworkID visitedNetworkID) throws ParseException
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
TestPackageXmlParserTest.java 21 import com.android.tradefed.util.xml.AbstractXmlParser.ParseException;
71 public void testParse_instrPackage() throws ParseException {
85 public void testParse_hostTest() throws ParseException {
109 public void testParse_hostTest_noKnownFailures() throws ParseException {
132 public void testParse_badHostTest() throws ParseException {
140 public void testParse_vmHostTest() throws ParseException {
144 public void testParse_nativeTest() throws ParseException {
148 private void assertTestType(String expectedType, String xml) throws ParseException {
159 public void testParse_noData() throws ParseException {

Completed in 147 milliseconds

1 2 3 45 6 7 8 91011>>