HomeSort by relevance Sort by last modified time
    Searched refs:Parser (Results 26 - 50 of 84) sorted by null

12 3 4

  /external/nist-sip/java/gov/nist/javax/sip/header/
From.java 33 import gov.nist.javax.sip.parser.Parser;
150 Parser.checkToken(t);
To.java 33 import gov.nist.javax.sip.parser.Parser;
175 Parser.checkToken(t);
  /external/webkit/JavaScriptCore/parser/
Parser.h 46 class Parser : public Noncopyable {
70 PassRefPtr<ParsedNode> Parser::parse(JSGlobalData* globalData, Debugger* debugger, ExecState* debuggerExecState, const SourceCode& source, int* errLine, UString* errMsg)
  /external/v8/src/
parser.cc 36 #include "parser.h"
91 class Parser {
93 Parser(Handle<Script> script, bool allow_natives_syntax,
96 virtual ~Parser() { }
263 // Parser support
659 // Parser state of containing expression, if any.
706 // allocated and hence used by the pre-parser.
709 explicit TemporaryScope(Parser* parser);
749 Parser* parser_
    [all...]
  /external/protobuf/src/google/protobuf/
text_format.h 125 // by the parser.
211 class LIBPROTOBUF_EXPORT Parser {
213 Parser();
214 ~Parser();
text_format.cc 104 // returning false. Borrowed from parser.cc (Thanks Kenton!).
107 class TextFormat::Parser::ParserImpl {
616 explicit ParserErrorCollector(TextFormat::Parser::ParserImpl* parser) :
617 parser_(parser) { }
631 TextFormat::Parser::ParserImpl* parser_;
768 TextFormat::Parser::Parser()
772 TextFormat::Parser::~Parser() {}
    [all...]
  /external/webkit/JavaScriptCore/wrec/
WRECGenerator.h 47 class Parser;
60 Generator(Parser& parser)
61 : m_parser(parser)
121 Parser& m_parser;
WREC.cpp 50 Parser parser(pattern, ignoreCase, multiline);
51 Generator& generator = parser.generator();
59 parser.parsePattern(failures);
64 parser.parsePattern(failures);
74 if (parser.error()) {
75 *error_ptr = parser.syntaxError(); // NULL in the case of patterns that WREC doesn't support yet.
79 *numSubpatterns_ptr = parser.numSubpatterns();
  /external/webkit/JavaScriptCore/runtime/
JSGlobalData.h 58 class Parser;
150 Parser* parser; member in class:JSC::JSGlobalData
  /external/nist-sip/java/gov/nist/javax/sip/parser/
RequestLineParser.java 26 package gov.nist.javax.sip.parser;
33 * Parser for the SIP request line.
41 public class RequestLineParser extends Parser {
StatusLineParser.java 26 package gov.nist.javax.sip.parser;
31 * Parser for the SIP status line.
40 public class StatusLineParser extends Parser {
URLParser.java 26 package gov.nist.javax.sip.parser;
39 * Parser For SIP and Tel URLs. Other kinds of URL's are handled by the
47 public class URLParser extends Parser {
371 * Parser for the base phone number.
404 * Parser for the local phone #.
439 * Parser for telephone subscriber.
Parser.java 26 package gov.nist.javax.sip.parser;
34 * Base parser class.
42 public abstract class Parser extends ParserCore implements TokenTypes {
127 * $Log: Parser.java,v $
AddressParser.java 26 package gov.nist.javax.sip.parser;
31 /** Parser for addresses.
38 public class AddressParser extends Parser {
  /external/webkit/WebCore/xml/
XPathExpression.cpp 48 Parser parser; local
50 expr->m_topExpression = parser.parseStatement(expression, resolver, ec);
  /packages/apps/Email/src/com/android/exchange/adapter/
PingParser.java 34 public class PingParser extends Parser {
GalParser.java 27 public class GalParser extends Parser {
Parser.java 35 * Extremely fast and lightweight WBXML parser, implementing only the subset of WBXML that
39 public abstract class Parser {
53 private String logTag = "EAS Parser";
60 // The input stream for this parser
82 // the parser at any given time
147 public Parser(InputStream in) throws IOException {
153 * Set the debug state of the parser. When debugging is on, every token is logged (Log.v) to
284 * used to ignore stretches of xml that aren't needed by the parser.
313 * Initializes the parser with an input stream; reads the first 4 bytes (which are always the
317 * @param in the InputStream associated with this parser
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 1 // XMLReaderAdapter.java - adapt an SAX2 XMLReader to a SAX1 Parser
20 import org.xml.sax.Parser;
27 * Adapt a SAX2 XMLReader as a SAX1 Parser.
37 * and makes it act as a SAX1 {@link org.xml.sax.Parser Parser}. The XMLReader
47 * @see org.xml.sax.Parser
50 public class XMLReaderAdapter implements Parser, ContentHandler
82 * Parser.</p>
111 // Implementation of org.xml.sax.Parser.
122 * @see org.xml.sax.Parser#setLocal
    [all...]
ParserAdapter.java 1 // ParserAdapter.java - adapt a SAX1 Parser to a SAX2 XMLReader.
21 import org.xml.sax.Parser;
30 * Adapt a SAX1 Parser as a SAX2 XMLReader.
39 * <p>This class wraps a SAX1 {@link org.xml.sax.Parser Parser}
53 * @see org.xml.sax.Parser
66 * Construct a new parser adapter.
68 * <p>Use the "org.xml.sax.parser" property to locate the
73 * org.xml.sax.parser property is not specified.
80 String driver = System.getProperty("org.xml.sax.parser");
822 private Parser parser = null; field in class:ParserAdapter
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/
ContentTypeField.java 32 import org.apache.james.mime4j.field.contenttype.parser.ContentTypeParser;
33 import org.apache.james.mime4j.field.contenttype.parser.ParseException;
34 import org.apache.james.mime4j.field.contenttype.parser.TokenMgrError;
207 public static class Parser implements FieldParser {
208 private static Log log = LogFactory.getLog(Parser.class);
215 ContentTypeParser parser = new ContentTypeParser(new StringReader(body)); local
217 parser.parseAll();
233 final String type = parser.getType();
234 final String subType = parser.getSubType();
237 mimeType = (type + "/" + parser.getSubType()).toLowerCase();
    [all...]
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParser.java 28 import org.xml.sax.Parser;
39 * {@link org.xml.sax.Parser} interface, however this interface was
60 * As the content is parsed by the underlying parser, methods of the
352 Parser parser = this.getParser(); local
354 parser.setDocumentHandler(hb);
355 parser.setEntityResolver(hb);
356 parser.setErrorHandler(hb);
357 parser.setDTDHandler(hb);
359 parser.parse(is)
    [all...]
  /external/webkit/JavaScriptCore/yarr/
RegexParser.h 47 // The Parser class should not be used directly - only via the Yarr::parse() method.
49 class Parser {
194 Parser(Delegate& delegate, const UString& pattern, unsigned backReferenceLimit)
209 * Unlike the other parser methods, this function does not report tokens
847 return Parser<Delegate>(delegate, pattern, backReferenceLimit).parse();
  /frameworks/base/core/java/android/content/res/
XmlBlock.java 71 return new Parser(nativeCreateParseState(mNative), this);
77 /*package*/ final class Parser implements XmlResourceParser {
78 Parser(int parseState, XmlBlock block) {
277 + ": parser must be on START_TAG to read next text", this, null);
294 + ": parser must be on START_TAG or TEXT to read text", this, null);
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
ParserAdapterTest.java 31 import org.xml.sax.Parser;
68 private Parser parser = new MockParser(logger); field in class:ParserAdapterTest
70 private ParserAdapter adapter = new ParserAdapter(parser);
97 System.setProperty("org.xml.sax.parser",
110 args = { Parser.class }
115 ParserAdapter adapter = new ParserAdapter(parser);

Completed in 1688 milliseconds

12 3 4