HomeSort by relevance Sort by last modified time
    Searched refs:ParseException (Results 151 - 175 of 1024) sorted by null

1 2 3 4 5 67 8 91011>>

  /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
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
WebAddress.java 36 * schemes. It will only throw a ParseException if the input is
65 public WebAddress(String address) throws ParseException {
93 throw new ParseException("Bad port");
109 throw new ParseException("Bad address");
140 public class ParseException extends Exception {
143 ParseException(String response) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
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...]
AuthenticationInfoParser.java 30 import java.text.ParseException;
64 public SIPHeader parse() throws ParseException {
ContentLengthParser.java 30 import java.text.ParseException;
52 public SIPHeader parse() throws ParseException {
ContentTypeParser.java 35 import java.text.ParseException;
56 public SIPHeader parse() throws ParseException {
DateParser.java 29 import java.text.ParseException;
53 * @throws ParseException
56 public SIPHeader parse() throws ParseException {
  /external/testng/ant/3rdparty/
cobertura.jar 
  /external/nist-sip/java/gov/nist/javax/sip/header/
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...]
AcceptEncoding.java 33 import java.text.ParseException;
142 * @throws ParseException
147 public void setEncoding(String encoding) throws ParseException {
AllowEventsList.java 32 import java.text.ParseException;
97 * @throws ParseException which signals that an error has been reached
103 public void setMethods(List<String> methods) throws ParseException {
AllowList.java 32 import java.text.ParseException;
99 * @throws ParseException which signals that an error has been reached
105 public void setMethods(List<String> methods) throws ParseException {
ContentDisposition.java 79 throws ParseException {
106 public void setHandling(String handling) throws ParseException {
Server.java 32 import java.text.ParseException;
113 * @throws ParseException which signals that an error has been reached
116 public void setProduct(List product) throws ParseException {
Supported.java 31 import java.text.ParseException;
97 * @throws ParseException which signals that an error has been reached
100 public void setOptionTag(String optionTag) throws ParseException {
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
Parsers.java 25 import java.text.ParseException;
83 @Override public T parse(CharSequence input) throws ParseException {
98 public static ParseException newParseException(String message, Throwable cause) {
99 ParseException pe = newParseException(message);
104 public static ParseException newParseException(String message) {
105 return new ParseException(message, 0);
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
TestPackageXmlParserTest.java 21 import com.android.tradefed.util.xml.AbstractXmlParser.ParseException;
96 public void testParse_instrPackage() throws ParseException {
110 public void testParse_hostTest() throws ParseException {
134 public void testParse_hostTest_noKnownFailures() throws ParseException {
157 public void testParse_badHostTest() throws ParseException {
165 public void testParse_vmHostTest() throws ParseException {
169 public void testParse_nativeTest() throws ParseException {
173 private void assertTestType(String expectedType, String xml) throws ParseException {
184 public void testParse_noData() throws ParseException {
193 public void testParse_instancedMultiple() throws ParseException {
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
ITestPlan.java 20 import com.android.tradefed.util.xml.AbstractXmlParser.ParseException;
38 public void parse(InputStream xmlStream) throws ParseException;
  /external/apache-http/src/org/apache/http/message/
BasicHeader.java 36 import org.apache.http.ParseException;
133 * @throws ParseException in case of a parse error
135 public HeaderElement[] getElements() throws ParseException {
  /external/jsilver/src/com/google/streamhtmlparser/impl/
GenericParser.java 22 import com.google.streamhtmlparser.ParseException;
78 * @throws ParseException if an unrecoverable error occurred during parsing
81 public void parse(String input) throws ParseException {
104 * @throws ParseException if an unrecoverable error occurred during parsing
107 public void parse(char input) throws ParseException {
118 throw new ParseException(this, errorMsg);
196 protected void setNextState(InternalState nextState) throws ParseException {
223 * @throws ParseException if an unrecoverable error occurred during parsing
227 char input) throws ParseException {
240 * @throws ParseException if an unrecoverable error occurred during parsin
    [all...]
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 28 import java.text.ParseException;
166 public Token peekNextToken() throws ParseException {
170 public Token[] peekNextToken(int ntokens) throws ParseException {
204 public Token match(int tok) throws ParseException {
212 throw new ParseException(buffer + "\nID expected", ptr);
219 throw new ParseException(buffer + "\nID expected", ptr);
229 throw new ParseException(
241 throw new ParseException(buffer + "\nExpecting DIGIT", ptr);
250 throw new ParseException(buffer + "\nExpecting ALPHA", ptr);
270 throw new ParseException(
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
SecurityAgree.java 36 import java.text.ParseException;
91 public void setParameter(String name, String value) throws ParseException
107 throw new ParseException(value
132 public void setSecurityMechanism(String secMech) throws ParseException {
143 * @throws ParseException
145 public void setEncryptionAlgorithm(String ealg) throws ParseException {
157 * @throws ParseException
159 public void setAlgorithm(String alg) throws ParseException {
170 * @throws ParseException
172 public void setProtocol(String prot) throws ParseException {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageExt.java 3 import java.text.ParseException;
57 * @throws ParseException if the content type is multipart mime but the content
61 public MultipartMimeContent getMultipartMimeContent() throws ParseException;

Completed in 475 milliseconds

1 2 3 4 5 67 8 91011>>