HomeSort by relevance Sort by last modified time
    Searched defs:parse (Results 201 - 225 of 1012) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
UserAgentParser.java 48 * UserAgent header to parse
65 * parse the message. Note that we have losened up on the parsing quite a bit because
72 public SIPHeader parse() throws ParseException { method in class:UserAgentParser
74 dbg_enter("UserAgentParser.parse");
128 dbg_leave("UserAgentParser.parse");
143 parser.parse(); System.out.println("encoded = " + ua.encode()); }
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
JoinParser.java 23 * @param callID message to parse
38 * parse the String message
42 public SIPHeader parse() throws ParseException { method in class:JoinParser
44 dbg_enter("parse");
52 super.parse(join);
57 dbg_leave("parse");
69 Join t = (Join) tp.parse();
ReplacesParser.java 25 * @param callID message to parse
40 * parse the String message
44 public SIPHeader parse() throws ParseException { method in class:ReplacesParser
46 dbg_enter("parse");
54 super.parse(replaces);
59 dbg_leave("parse");
71 Replaces t = (Replaces) tp.parse();
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PChargingFunctionAddressesParser.java 86 public SIPHeader parse() throws ParseException { method in class:PChargingFunctionAddressesParser
90 dbg_enter("parse");
112 super.parse(chargingFunctionAddresses);
116 dbg_leave("parse");
165 PChargingFunctionAddresses chargAddr= (PChargingFunctionAddresses) parser.parse();
PMediaAuthorizationParser.java 73 public SIPHeader parse() throws ParseException method in class:PMediaAuthorizationParser
78 dbg_enter("MediaAuthorizationParser.parse");
114 dbg_leave("MediaAuthorizationParser.parse");
137 PMediaAuthorizationList mList= (PMediaAuthorizationList) mParser.parse();
PUserDatabaseParser.java 71 public SIPHeader parse() throws ParseException { method in class:PUserDatabaseParser
74 dbg_enter("PUserDatabase.parse");
89 dbg_leave("PUserDatabase.parse");
108 super.parse(userDatabase);
PrivacyParser.java 75 public SIPHeader parse() throws ParseException method in class:PrivacyParser
78 dbg_enter("PrivacyParser.parse");
118 dbg_leave("PrivacyParser.parse");
136 PrivacyList list = (PrivacyList) rp.parse();
SecurityAgreeParser.java 81 public SIPHeaderList parse(SecurityAgree header) throws ParseException method in class:SecurityAgreeParser
  /external/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 50 public static MediaType parse(String string) { method in class:MediaType
  /external/proguard/src/proguard/util/
ListParser.java 52 public StringMatcher parse(String regularExpression) method in class:ListParser
55 return parse(ListUtil.commaSeparatedList(regularExpression));
65 public StringMatcher parse(List regularExpressions) method in class:ListParser
100 new NotMatcher(stringParser.parse(regularExpression.substring(1))) :
101 stringParser.parse(regularExpression);
124 StringMatcher matcher = parser.parse(args[0]);
  /external/smack/src/org/xbill/DNS/
TTL.java 37 parse(String s, boolean clamp) { method in class:TTL
83 return parse(s, true);
  /external/v8/tools/gcmole/
gcmole.lua 152 assert(p and v, "failed to parse condition: " .. cond)
262 local function parse (filename, lines)
301 parse)
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
AccessPointParserHelper.java 368 saxParser.parse(in, mHandler);
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
Duration.java 44 * Parse according to RFC2445 ss4.3.6. (It's actually a little loose with
47 public void parse(String str) throws DateException method in class:Duration
80 "Duration.parse(str='" + str + "') expected 'P' at index="
120 "Duration.parse(str='" + str + "') unexpected char '"
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ImageDescriptor.java 56 static ImageDescriptor parse(byte[] rawData, int valueIndex) { method in class:ImageDescriptor
63 // parse image id
66 // parse offset
72 CatLog.d("ImageDescripter", "parse; failed parsing image descriptor");
  /libcore/benchmarks/src/benchmarks/regression/
XmlEntitiesBenchmark.java 68 documentBuilder.parse(new InputSource(new StringReader(xml)));
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilder.java 46 * implementation use a SAX parser to parse XML document into a
87 * Parse the content of the given <code>InputStream</code> as an XML
96 * @exception SAXException If any parse errors occur.
100 public Document parse(InputStream is) method in class:DocumentBuilder
107 return parse(in);
111 * Parse the content of the given <code>InputStream</code> as an
120 * @exception SAXException If any parse errors occur.
124 public Document parse(InputStream is, String systemId) method in class:DocumentBuilder
132 return parse(in);
136 * Parse the content of the given URI as an XML documen
148 public Document parse(String uri) method in class:DocumentBuilder
171 public Document parse(File f) throws SAXException, IOException { method in class:DocumentBuilder
199 public abstract Document parse(InputSource is) method in class:DocumentBuilder
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSParser.java 144 * source. This <code>DOMConfiguration</code> is specific to the parse
148 * parse operation. The DOM application is responsible for passing any
297 * Parse an XML document from a resource identified by a
315 public Document parse(LSInput input) method in interface:LSParser
319 * Parse an XML document from a location identified by a URI reference [<a href='http://www.ietf.org/rfc/rfc2396.txt'>IETF RFC 2396</a>]. If the URI
344 * Append the result of the parse operation as children of the context
351 * parse operation. For this action to work, the context node must be an
357 * Insert the result of the parse operation as the immediately preceding
364 * Insert the result of the parse operation as the immediately following
371 * Replace the context node with the result of the parse operation. Fo
    [all...]
  /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/libcore/xml/
NamespacedAttributesLookupTest.java 136 reader.parse(new InputSource(new StringReader(xml)));
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
DoNothingXMLReader.java 55 public void parse(InputSource input) { method in class:DoNothingXMLReader
58 public void parse(String systemId) { method in class:DoNothingXMLReader
MockFilter.java 80 public void parse(InputSource input) throws SAXException, IOException { method in class:MockFilter
81 logger.add("parse", input);
85 public void parse(String systemId) throws SAXException, IOException { method in class:MockFilter
86 logger.add("parse", systemId);
NoAccessXMLReader.java 55 public void parse(InputSource input) { method in class:NoAccessXMLReader
58 public void parse(String systemId) { method in class:NoAccessXMLReader
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

Completed in 704 milliseconds

1 2 3 4 5 6 7 891011>>