Home
last modified time | relevance | path

Searched refs:ParseException (Results 1 – 25 of 545) sorted by relevance

12345678910>>...22

/external/nist-sip/java/javax/sip/header/
DHeaderFactory.java3 import java.text.ParseException;
15 throws ParseException; in createAcceptEncodingHeader()
18 throws ParseException; in createAcceptHeader()
25 throws ParseException; in createAllowEventsHeader()
27 AllowHeader createAllowHeader(String method) throws ParseException; in createAllowHeader()
30 throws ParseException; in createAuthenticationInfoHeader()
33 throws ParseException; in createAuthorizationHeader()
35 CallIdHeader createCallIdHeader(String callId) throws ParseException; in createCallIdHeader()
44 String contentDispositionType) throws ParseException; in createContentDispositionHeader()
47 throws ParseException; in createContentEncodingHeader()
[all …]
DAuthorizationHeader.java3 import java.text.ParseException;
10 void setAlgorithm(String algorithm) throws ParseException; in setAlgorithm()
13 void setCNonce(String cNonce) throws ParseException; in setCNonce()
16 void setNonce(String nonce) throws ParseException; in setNonce()
19 void setNonceCount(int nonceCount) throws ParseException; in setNonceCount()
22 void setOpaque(String opaque) throws ParseException; in setOpaque()
25 void setQop(String qop) throws ParseException; in setQop()
28 void setRealm(String realm) throws ParseException; in setRealm()
31 void setResponse(String response) throws ParseException; in setResponse()
43 void setUsername(String username) throws ParseException; in setUsername()
DViaHeader.java3 import java.text.ParseException;
10 void setBranch(String branch) throws ParseException; in setBranch()
13 void setHost(String host) throws ParseException; in setHost()
16 void setMAddr(String mAddr) throws ParseException; in setMAddr()
22 void setProtocol(String protocol) throws ParseException; in setProtocol()
25 void setReceived(String received) throws ParseException; in setReceived()
31 void setTransport(String transport) throws ParseException; in setTransport()
/external/nist-sip/java/gov/nist/core/
DLexerCore.java28 import java.text.ParseException;
166 public Token peekNextToken() throws ParseException { in peekNextToken()
170 public Token[] peekNextToken(int ntokens) throws ParseException { in peekNextToken()
204 public Token match(int tok) throws ParseException { in match()
212 throw new ParseException(buffer + "\nID expected", ptr); in match()
219 throw new ParseException(buffer + "\nID expected", ptr); in match()
229 throw new ParseException( in match()
241 throw new ParseException(buffer + "\nExpecting DIGIT", ptr); in match()
250 throw new ParseException(buffer + "\nExpecting ALPHA", ptr); in match()
270 throw new ParseException( in match()
[all …]
/external/proguard/src/proguard/gradle/
DProGuardTask.java176 throws ParseException, IOException in configuration()
183 throws ParseException in injars()
189 throws ParseException in injars()
197 throws ParseException in outjars()
203 throws ParseException in outjars()
212 throws ParseException in libraryjars()
218 throws ParseException in libraryjars()
286 throws ParseException in keep()
293 throws ParseException in keep()
305 throws ParseException in keep()
[all …]
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/programmer/
DFirmwareImage.java25 import java.text.ParseException;
47 void parseHex(InputStream stream) throws ParseException { in parseHex()
60 if (!atEOF) throw new ParseException("No EOF marker", -1); in parseHex()
64 private void parseLine(String line) throws ParseException { in parseLine()
65 if (atEOF) throw new ParseException("Line after EOF marker", -1); in parseLine()
69 throw new ParseException("Expected ':', got '" + line.charAt(cur), cur); in parseLine()
92 throw new ParseException(String.format("Unknown code '%x'", code), cur); in parseLine()
97 private static byte parseByte(String line, int pos) throws ParseException { in parseByte()
98 if (line.length() < pos + 2) throw new ParseException("Unexpected EOL", pos); in parseByte()
102 throw new ParseException("Malformed file: " + e.getMessage(), pos); in parseByte()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/
DHeaderFactoryImpl.java36 import java.text.ParseException;
88 throws ParseException { in createAcceptEncodingHeader()
109 throws ParseException { in createAcceptHeader()
161 throws ParseException { in createAllowEventsHeader()
177 public AllowHeader createAllowHeader(String method) throws ParseException { in createAllowHeader()
197 throws ParseException { in createAuthenticationInfoHeader()
216 throws ParseException { in createAuthorizationHeader()
238 throws ParseException, InvalidArgumentException { in createCSeqHeader()
255 throws ParseException, InvalidArgumentException { in createCSeqHeader()
268 throws ParseException { in createCallIdHeader()
[all …]
DAuthenticationHeader.java32 import java.text.ParseException;
105 public void setParameter(String name, String value) throws ParseException { in setParameter()
131 throw new ParseException(value in setParameter()
196 public void setRealm(String realm) throws ParseException { in setRealm()
227 public void setNonce(String nonce) throws ParseException { in setNonce()
293 public void setAlgorithm(String algorithm) throws ParseException { in setAlgorithm()
321 public void setQop(String qop) throws ParseException { in setQop()
349 public void setOpaque(String opaque) throws ParseException { in setOpaque()
377 public void setDomain(String domain) throws ParseException { in setDomain()
423 public void setCNonce(String cnonce) throws ParseException { in setCNonce()
[all …]
DAuthenticationInfo.java27 import java.text.ParseException;
147 public void setCNonce(String cNonce) throws ParseException { in setCNonce()
159 public void setNextNonce(String nextNonce) throws ParseException { in setNextNonce()
171 public void setNonceCount(int nonceCount) throws ParseException { in setNonceCount()
173 throw new ParseException("bad value", 0); in setNonceCount()
189 public void setQop(String qop) throws ParseException { in setQop()
203 public void setResponse(String response) throws ParseException { in setResponse()
207 public void setParameter(String name, String value) throws ParseException { in setParameter()
226 throw new ParseException( in setParameter()
/external/nist-sip/java/gov/nist/javax/sip/parser/
DStringMsgParser.java46 import java.text.ParseException;
129 public SIPMessage parseSIPMessage(byte[] msgBuffer) throws ParseException { in parseSIPMessage()
169 throw new ParseException("Bad message encoding!", 0); in parseSIPMessage()
188 throw new ParseException("Bad header continuation.", 0); in parseSIPMessage()
210 if (message == null) throw new ParseException("Bad message", 0); in parseSIPMessage()
240 public SIPMessage parseSIPMessage(String msgString) throws ParseException { in parseSIPMessage()
299 throw new ParseException("Bad header continuation.", 0); in parseSIPMessage()
331 throw new ParseException("Extraneous characters at the end of the message ",i); in parseSIPMessage()
357 private SIPMessage processFirstLine(String firstLine) throws ParseException { in processFirstLine()
365 } catch (ParseException ex) { in processFirstLine()
[all …]
DURLParser.java36 import java.text.ParseException;
115 protected String unreserved() throws ParseException { in unreserved()
127 protected String paramNameOrValue() throws ParseException { in paramNameOrValue()
152 private NameValue uriParam() throws ParseException { in uriParam()
194 protected String reserved() throws ParseException { in reserved()
213 protected String escaped() throws ParseException { in escaped()
237 protected String mark() throws ParseException { in mark()
299 } catch (ParseException ex) { in uricNoSlash()
308 protected String uricString() throws ParseException { in uricString()
335 public GenericURI uriReference( boolean inBrackets ) throws ParseException { in uriReference()
[all …]
DParser.java31 import java.text.ParseException;
44 protected ParseException createParseException(String exceptionString) { in createParseException()
45 return new ParseException( in createParseException()
54 protected String sipVersion() throws ParseException { in sipVersion()
76 protected String method() throws ParseException { in method()
112 public static final void checkToken( String token ) throws ParseException { in checkToken()
115 throw new ParseException("null or empty token", -1 ); in checkToken()
120 … throw new ParseException( "Invalid character(s) in string (not allowed in 'token')", i ); in checkToken()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
DAnalyseJavaSymbolSolver060Test.java19 import com.github.javaparser.ParseException;
89 private void parse(String projectName, String fileName) throws IOException, ParseException { in parse()
140 public void parseCoreSourceFileInfoExtractor() throws IOException, ParseException { in parseCoreSourceFileInfoExtractor()
145 public void parseCoreCoreResolution() throws IOException, ParseException { in parseCoreCoreResolution()
151 public void parseCoreDeclarationsCommon() throws IOException, ParseException { in parseCoreDeclarationsCommon()
156 public void parseCoreJavaparserNavigator() throws IOException, ParseException { in parseCoreJavaparserNavigator()
161 public void parseCoreJavaparsermodel() throws IOException, ParseException { in parseCoreJavaparsermodel()
171 public void parseCoreJavaparsermodelContexts() throws IOException, ParseException { in parseCoreJavaparsermodelContexts()
194 public void parseCoreJavaparsermodelDeclarations() throws IOException, ParseException { in parseCoreJavaparsermodelDeclarations()
214 public void parseCoreJavaparsermodelDeclarators() throws IOException, ParseException { in parseCoreJavaparsermodelDeclarators()
[all …]
DAnalyseNewJavaParserTest.java19 import com.github.javaparser.ParseException;
67 private void parse(String fileName) throws IOException, ParseException { in parse()
119 public void parseUtilsUtils() throws IOException, ParseException { in parseUtilsUtils()
124 public void parseCommentsInserter() throws IOException, ParseException { in parseCommentsInserter()
129 public void parsePositionUtils() throws IOException, ParseException { in parsePositionUtils()
134 public void parseModifier() throws IOException, ParseException { in parseModifier()
139 public void parseNodeWithMembers() throws IOException, ParseException { in parseNodeWithMembers()
144 public void parseAstStmts() throws IOException, ParseException { in parseAstStmts()
170 public void parseAstExprs() throws IOException, ParseException { in parseAstExprs()
211 public void parseVariableDeclarationExpr() throws IOException, ParseException { in parseVariableDeclarationExpr()
[all …]
DAnalyseJavaParserTest.java19 import com.github.javaparser.ParseException;
62 private void parse(String fileName) throws IOException, ParseException { in parse()
103 public void parsePositionUtils() throws IOException, ParseException { in parsePositionUtils()
108 public void parseJavaParser() throws IOException, ParseException { in parseJavaParser()
113 public void parseStatement() throws IOException, ParseException { in parseStatement()
118 public void parseCatchClause() throws IOException, ParseException { in parseCatchClause()
123 public void parseStatements() throws IOException, ParseException { in parseStatements()
147 public void parseExpressions() throws IOException, ParseException { in parseExpressions()
189 public void parseTypes() throws IOException, ParseException { in parseTypes()
200 public void parseVisitors() throws IOException, ParseException { in parseVisitors()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/address/
DAddressFactoryImpl.java30 import java.text.ParseException;
93 throws ParseException { in createSipURI()
100 } catch (ParseException ex) { in createSipURI()
102 throw new ParseException(ex.getMessage(), 0); in createSipURI()
113 throws ParseException { in createSipURI()
135 } catch (ParseException ex) { in createSipURI()
136 throw new ParseException(ex.getMessage(), 0); in createSipURI()
148 throws ParseException { in createTelURL()
156 } catch (ParseException ex) { in createTelURL()
157 throw new ParseException(ex.getMessage(), 0); in createTelURL()
[all …]
/external/minijail/tools/
Dparser_unittest.py90 with self.assertRaisesRegex(parser.ParseException,
121 with self.assertRaisesRegex(parser.ParseException,
124 with self.assertRaisesRegex(parser.ParseException,
137 with self.assertRaisesRegex(parser.ParseException,
140 with self.assertRaisesRegex(parser.ParseException, 'signed underflow'):
161 with self.assertRaises(parser.ParseException, msg=expression):
216 with self.assertRaisesRegex(parser.ParseException,
222 with self.assertRaisesRegex(parser.ParseException, 'empty complement'):
232 with self.assertRaisesRegex(parser.ParseException, 'empty constant'):
234 with self.assertRaisesRegex(parser.ParseException, 'empty constant'):
[all …]
/external/nist-sip/java/javax/sip/message/
DMessageFactory.java3 import java.text.ParseException;
19 Object content) throws ParseException; in createRequest()
24 byte[] content) throws ParseException; in createRequest()
28 MaxForwardsHeader maxForwards) throws ParseException; in createRequest()
30 Request createRequest(String request) throws ParseException; in createRequest()
35 Object content) throws ParseException; in createResponse()
40 byte[] content) throws ParseException; in createResponse()
44 MaxForwardsHeader maxForwards) throws ParseException; in createResponse()
48 throws ParseException; in createResponse()
52 throws ParseException; in createResponse()
[all …]
/external/apache-commons-bcel/src/examples/Mini/
DMiniParser.java30 static public void Program() throws ParseException { in Program()
56 if (jjte000 instanceof ParseException) { in Program()
58 throw (ParseException)jjte000; in Program()
79 static public void FunDecl() throws ParseException { in FunDecl()
123 if (jjte000 instanceof ParseException) { in FunDecl()
125 throw (ParseException)jjte000; in FunDecl()
144 static public void Expr() throws ParseException { in Expr()
188 throw new ParseException(); in Expr()
197 if (jjte000 instanceof ParseException) { in Expr()
199 throw (ParseException)jjte000; in Expr()
[all …]
/external/proguard/src/proguard/
DConfigurationParser.java142 throws ParseException, IOException in parse()
159 …OPTION .startsWith(nextWord)) throw new ParseException("The '-resourc… in parse()
219 throw new ParseException("Unknown option " + reader.locationDescription()); in parse()
239 private long parseIncludeArgument(long lastModified) throws ParseException, IOException in parseIncludeArgument()
253 private void parseBaseDirectoryArgument() throws ParseException, IOException in parseBaseDirectoryArgument()
266 throws ParseException, IOException in parseClassPathArgument()
305 …throw new ParseException("Expecting separating '" + ConfigurationConstants.ARGUMENT_SEPARATOR_KEYW… in parseClassPathArgument()
356 …throw new ParseException("Expecting class path separator '" + ConfigurationConstants.JAR_SEPARATOR… in parseClassPathArgument()
364 throws ParseException, IOException in parseClassVersion()
372 throw new ParseException("Unsupported java version " + reader.locationDescription()); in parseClassVersion()
[all …]
/external/apache-http/src/org/apache/http/message/
DBasicLineParser.java36 import org.apache.http.ParseException;
115 throws ParseException { in parseProtocolVersion()
135 throws ParseException { in parseProtocolVersion()
156 throw new ParseException in parseProtocolVersion()
170 throw new ParseException in parseProtocolVersion()
179 throw new ParseException in parseProtocolVersion()
187 throw new ParseException in parseProtocolVersion()
201 throw new ParseException( in parseProtocolVersion()
280 throws ParseException { in parseRequestLine()
308 throws ParseException { in parseRequestLine()
[all …]
/external/nist-sip/java/javax/sip/address/
DAddressFactory.java3 import java.text.ParseException;
7 Address createAddress(String address) throws ParseException; in createAddress()
10 throws ParseException; in createAddress()
11 SipURI createSipURI(String uri) throws ParseException; in createSipURI()
12 SipURI createSipURI(String user, String host) throws ParseException; in createSipURI()
13 TelURL createTelURL(String uri) throws ParseException; in createTelURL()
14 URI createURI(String uri) throws ParseException; in createURI()
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
DPChargingFunctionAddresses.java34 import java.text.ParseException;
109 public void setChargingCollectionFunctionAddress(String ccfAddress) throws ParseException { in setChargingCollectionFunctionAddress()
127 public void addChargingCollectionFunctionAddress(String ccfAddress) throws ParseException { in addChargingCollectionFunctionAddress()
144 public void removeChargingCollectionFunctionAddress(String ccfAddress) throws ParseException { in removeChargingCollectionFunctionAddress()
153 throw new ParseException("CCF Address Not Removed",0); in removeChargingCollectionFunctionAddress()
192 public void setEventChargingFunctionAddress(String ecfAddress) throws ParseException { in setEventChargingFunctionAddress()
210 public void addEventChargingFunctionAddress(String ecfAddress) throws ParseException { in addEventChargingFunctionAddress()
227 public void removeEventChargingFunctionAddress(String ecfAddress) throws ParseException { in removeEventChargingFunctionAddress()
236 throw new java.text.ParseException("ECF Address Not Removed",0); in removeEventChargingFunctionAddress()
295 public void setValue(String value) throws ParseException { in setValue()
[all …]
DPChargingFunctionAddressesHeader.java37 import java.text.ParseException;
95 public void setChargingCollectionFunctionAddress(String ccfAddress) throws ParseException; in setChargingCollectionFunctionAddress()
102 public void addChargingCollectionFunctionAddress(String ccfAddress) throws ParseException; in addChargingCollectionFunctionAddress()
109 public void removeChargingCollectionFunctionAddress(String ccfAddress) throws ParseException; in removeChargingCollectionFunctionAddress()
122 public void setEventChargingFunctionAddress(String ecfAddress)throws ParseException; in setEventChargingFunctionAddress()
129 public void addEventChargingFunctionAddress(String ecfAddress) throws ParseException; in addEventChargingFunctionAddress()
136 public void removeEventChargingFunctionAddress(String ecfAddress) throws ParseException; in removeEventChargingFunctionAddress()
/external/nist-sip/java/gov/nist/javax/sip/message/
DMessageFactoryImpl.java31 import java.text.ParseException;
125 Object content) throws ParseException { in createRequest()
181 ContentTypeHeader contentType) throws ParseException { in createRequest()
186 throw new ParseException( in createRequest()
233 List via, MaxForwardsHeader maxForwards) throws ParseException { in createRequest()
237 throw new ParseException( in createRequest()
289 ContentTypeHeader contentType) throws ParseException { in createResponse()
346 ContentTypeHeader contentType) throws ParseException { in createResponse()
392 MaxForwardsHeader maxForwards) throws ParseException { in createResponse()
395 throw new ParseException( in createResponse()
[all …]

12345678910>>...22