| /external/nist-sip/java/gov/nist/javax/sip/parser/ |
| ReasonParser.java | 46 * @param reason the header to parse 54 * @param lexer the lexer to use to parse the header 61 * parse the String message 65 public SIPHeader parse() throws ParseException { method in class:ReasonParser 68 dbg_enter("ReasonParser.parse"); 80 super.parse(reason); 91 dbg_leave("ReasonParser.parse"); 111 ReasonList rl= (ReasonList) parser.parse();
|
| RecordRouteParser.java | 47 * @param recordRoute message to parse to set 58 * parse the String message and generate the RecordRoute List Object 62 public SIPHeader parse() throws ParseException { method in class:RecordRouteParser 66 dbg_enter("RecordRouteParser.parse"); 75 super.parse(recordRoute); 90 dbg_leave("RecordRouteParser.parse");
|
| RouteParser.java | 45 * @param route message to parse to set 55 /** parse the String message and generate the Route List Object 59 public SIPHeader parse() throws ParseException { method in class:RouteParser 62 dbg_enter("parse"); 71 super.parse(route); 86 dbg_leave("parse"); 102 RouteList routeList = (RouteList) rp.parse();
|
| /external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
| PCalledPartyIDParser.java | 66 public SIPHeader parse() throws ParseException method in class:PCalledPartyIDParser 70 dbg_enter("PCalledPartyIDParser.parse"); 79 super.parse(calledPartyID); 85 dbg_leave("PCalledPartyIDParser.parse"); 104 RecordRouteList recordRouteList = (RecordRouteList) rp.parse();
|
| PPreferredIdentityParser.java | 63 public SIPHeader parse() throws ParseException { method in class:PPreferredIdentityParser 66 dbg_enter("PreferredIdentityParser.parse"); 75 super.parse( p ); 79 dbg_leave("PreferredIdentityParser.parse");
|
| PProfileKeyParser.java | 51 public SIPHeader parse() throws ParseException { method in class:PProfileKeyParser 53 dbg_enter("PProfileKey.parse"); 62 super.parse(p); 67 dbg_leave("PProfileKey.parse");
|
| SecurityClientParser.java | 63 public SIPHeader parse() throws ParseException method in class:SecurityClientParser 65 dbg_enter("SecuriryClient parse"); 71 (SecurityClientList) super.parse(secClient); 76 dbg_leave("SecuriryClient parse");
|
| SecurityServerParser.java | 63 public SIPHeader parse() throws ParseException method in class:SecurityServerParser 65 dbg_enter("SecuriryServer parse"); 71 (SecurityServerList) super.parse(secServer); 75 dbg_leave("SecuriryServer parse"); 106 SecurityServer secServer= (SecurityServer) parser.parse(); 116 SecurityServerList secList = (SecurityServerList) parser.parse();
|
| SecurityVerifyParser.java | 62 public SIPHeader parse() throws ParseException method in class:SecurityVerifyParser 64 dbg_enter("SecuriryVerify parse"); 70 (SecurityVerifyList) super.parse(secVerify); 74 dbg_leave("SecuriryVerify parse");
|
| /external/proguard/src/proguard/classfile/visitor/ |
| ClassNameFilter.java | 51 this(new ListParser(new ClassNameParser()).parse(regularExpression), 66 this(new ListParser(new ClassNameParser()).parse(regularExpression),
|
| /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/ |
| JAXPTest.java | 46 System.out.println("Let's parse..."); 47 spf.newSAXParser().parse(f, new org.xml.sax.helpers.DefaultHandler()); 50 Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(f);
|
| /libcore/luni/src/main/java/org/xml/sax/ |
| XMLReader.java | 31 * a document parse.</p> 34 * {@link #parse parse} methods must not return until parsing 77 * contexts, such as before, during, or after a parse. 104 * // parse the first document 106 * r.parse("http://www.foo.com/mydoc.xml"); 138 * a parse.</p> 164 * contexts, such as before, during, or after a parse.</p> 194 * a parse.</p> 229 * middle of a parse, and the SAX parser must begin using the ne 375 public void parse (InputSource input) method in interface:XMLReader 401 public void parse (String systemId) method in interface:XMLReader [all...] |
| /libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
| DoNothingParser.java | 34 public void parse(InputSource source) { method in class:DoNothingParser 37 public void parse(String systemId) { method in class:DoNothingParser
|
| DoNothingXMLReader.java | 55 public void parse(InputSource input) { method in class:DoNothingXMLReader 58 public void parse(String systemId) { method in class:DoNothingXMLReader
|
| NoAccessParser.java | 34 public void parse(InputSource source) { method in class:NoAccessParser 37 public void parse(String systemId) { method in class:NoAccessParser
|
| NoAccessXMLReader.java | 55 public void parse(InputSource input) { method in class:NoAccessXMLReader 58 public void parse(String systemId) { method in class:NoAccessXMLReader
|
| NoInstanceParser.java | 37 public void parse(InputSource source) { method in class:NoInstanceParser 40 public void parse(String systemId) { method in class:NoInstanceParser
|
| NoInstanceXMLReader.java | 58 public void parse(InputSource input) { method in class:NoInstanceXMLReader 61 public void parse(String systemId) { method in class:NoInstanceXMLReader
|
| NoSubclassXMLReader.java | 55 public void parse(InputSource input) { method in class:NoSubclassXMLReader 58 public void parse(String systemId) { method in class:NoSubclassXMLReader
|
| /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/ |
| DelegatingFieldParser.java | 43 public Field parse(final String name, final String body, final String raw) {
method in class:DelegatingFieldParser 45 return parser.parse(name, body, raw);
|
| /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/xml/ |
| XmlDocumentBuilder.java | 103 public Document parse(InputStream inputStream) throws SAXException, IOException { method in class:XmlDocumentBuilder 105 return mBuilder.parse(inputStream); 108 parser.parse(new InputSource(inputStream)); 113 public Document parse(String content) throws SAXException, IOException { method in class:XmlDocumentBuilder 115 return mBuilder.parse(content); 118 parser.parse(content); 123 public Document parse(File file) throws SAXException, IOException { method in class:XmlDocumentBuilder 124 return parse(new FileInputStream(file));
|
| /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
| HttpCookieTest.java | 513 * @tests java.net.HttpCookie#parse(String) for exception cases 519 HttpCookie.parse(null); 530 * href="http://jakarta.apache.org/commons/httpclient/apidocs/org/apache/commons/httpclient/cookie/NetscapeDraftSpec.html#parse(java.lang.String,%20int,%20java.lang.String,%20boolean,%20java.lang.String)"> 531 * http://jakarta.apache.org/commons/httpclient/apidocs/org/apache/commons/httpclient/cookie/NetscapeDraftSpec.html#parse(java.lang.String,%20int,%20java.lang.String,%20boolean,%20java.lang.String) 581 * @tests java.net.HttpCookie#parse(String) for locales other than 589 .parse("Set-Cookie:name=test;expires=Thu, 30-Oct-2008 19:14:07 GMT;"); 596 .parse("Set-Cookie:name=test;expires=Sun, 30-Oct-2005 19:14:07 GMT;"); 603 .parse("Set-Cookie:name=test;max-age=1234;expires=Sun, 30-Oct-2005 19:14:07 GMT;"); 611 .parse("Set-Cookie:name=test;expires=Sun, 30-Oct-2005 19:14:07 GMT;max-age=-12345;"); 618 list = HttpCookie.parse("Set-Cookie2:name=test;max-age=1000") [all...] |
| /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/ |
| TestResultsTest.java | 56 parser.parse(new StringReader("<Empty/>")); 65 parser.parse(new StringReader(TEST_PACKAGE_FULL)); 80 parser.parse(new StringReader(RESULT_START + TEST_PACKAGE_START + RESULT_END)); 92 parser.parse(new StringReader(TEST_FULL));
|
| /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/ |
| TestPackageXmlParserTest.java | 68 parser.parse(getStringAsStream(INSTR_TEST_DATA)); 80 parser.parse(getStringAsStream(HOST_TEST_DATA)); 104 parser.parse(getStringAsStream(BAD_HOST_TEST_DATA)); 114 parser.parse(getStringAsStream(NO_TEST_DATA));
|
| /external/apache-http/src/org/apache/http/cookie/ |
| CookieSpec.java | 64 * Parse the <tt>"Set-Cookie"</tt> Header into an array of Cookies. 76 List<Cookie> parse(Header header, CookieOrigin origin) throws MalformedCookieException; method in interface:CookieSpec
|