HomeSort by relevance Sort by last modified time
    Searched defs:Parser (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Parser.as 31 /** A parser for TokenStreams. "parser grammars" result in a subclass
34 public class Parser extends BaseRecognizer {
37 public function Parser(input:TokenStream, state:RecognizerSharedState = null) {
71 /** Set the token stream and reset the parser */
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Parser.js 1 /** A parser for TokenStreams. "parser grammars" result in a subclass
4 org.antlr.runtime.Parser = function(input, state) {
5 org.antlr.runtime.Parser.superclass.constructor.call(this, state);
9 org.antlr.lang.extend(org.antlr.runtime.Parser, org.antlr.runtime.BaseRecognizer, {
12 org.antlr.runtime.Parser.superclass.reset.call(this);
47 /** Set the token stream and reset the parser */
63 org.antlr.runtime.Parser.superclass.traceIn.call(
68 org.antlr.runtime.Parser.superclass.traceOut.call(
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Parser.java 40 public interface Parser<MessageType> {
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Parser.java 28 public interface Parser {
  /libcore/luni/src/main/java/org/xml/sax/
Parser.java 1 // SAX parser interface.
4 // $Id: Parser.java,v 1.6 2002/01/30 21:13:47 dbrownell Exp $
35 * may reuse a parser object (possibly with a different input source)
53 public interface Parser
79 * SAX parser will resolve system identifiers and open connections
84 * in the middle of a parse, and the SAX parser must begin using
98 * events reported by the SAX parser will be silently
103 * handler in the middle of a parse, and the SAX parser must
117 * document events reported by the SAX parser will be silently
122 * middle of a parse, and the SAX parser must begin using the ne
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
parser.py 5 """A parser of RFC 2822 and MIME email messages."""
7 __all__ = ['Parser', 'HeaderParser']
18 class Parser:
20 """Parser of RFC 2822 and MIME email messages.
88 class HeaderParser(Parser):
90 return Parser.parse(self, fp, True)
93 return Parser.parsestr(self, text, True)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
parse.py 4 """Parser engine for the grammar tables generated by pgen.
8 See Parser/parser.c in the Python distribution for additional info on
17 """Exception to signal the parser is stuck."""
27 class Parser(object):
28 """Parser engine.
32 p = Parser(grammar, [converter]) # create instance
39 A Parser instance may be reused by calling setup() repeatedly.
41 A Parser instance contains state pertaining to the current token
51 the ParseError exception. There is no error recovery; the parser
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
parser.py 5 """A parser of RFC 2822 and MIME email messages."""
7 __all__ = ['Parser', 'HeaderParser']
18 class Parser:
20 """Parser of RFC 2822 and MIME email messages.
88 class HeaderParser(Parser):
90 return Parser.parse(self, fp, True)
93 return Parser.parsestr(self, text, True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
parse.py 4 """Parser engine for the grammar tables generated by pgen.
8 See Parser/parser.c in the Python distribution for additional info on
17 """Exception to signal the parser is stuck."""
27 class Parser(object):
28 """Parser engine.
32 p = Parser(grammar, [converter]) # create instance
39 A Parser instance may be reused by calling setup() repeatedly.
41 A Parser instance contains state pertaining to the current token
51 the ParseError exception. There is no error recovery; the parser
    [all...]
  /system/core/include/utils/
PropertyMap.h 84 class Parser {
89 Parser(PropertyMap* map, Tokenizer* tokenizer);
90 ~Parser();
  /external/chromium_org/base/test/expectations/
parser.cc 5 #include "base/test/expectations/parser.h"
11 Parser::Parser(Delegate* delegate, const std::string& input)
20 Parser::~Parser() {
23 void Parser::Parse() {
29 StateFuncPtr state = &Parser::Start;
35 inline bool Parser::HasNext() {
39 Parser::StateFunc Parser::Start()
    [all...]
  /frameworks/native/libs/input/
VirtualKeyMap.cpp 28 // Enables debug output for the parser.
31 // Enables debug output for parser performance.
65 Parser parser(map, tokenizer);
66 status = parser.parse();
85 // --- VirtualKeyMap::Parser ---
87 VirtualKeyMap::Parser::Parser(VirtualKeyMap* map, Tokenizer* tokenizer) :
91 VirtualKeyMap::Parser::~Parser() {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Parser.cs 37 * A parser for TokenStreams. "parser grammars" result in a subclass
41 public class Parser : BaseRecognizer {
44 public Parser(ITokenStream input)
50 public Parser(ITokenStream input, RecognizerSharedState state)
51 : base(state) // share the state object with another parser
87 /** <summary>Gets or sets the token stream; resets the parser upon a set.</summary> */
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Parser.cs 38 * A parser for TokenStreams. "parser grammars" result in a subclass
42 public class Parser : BaseRecognizer
46 public Parser( ITokenStream input )
53 public Parser( ITokenStream input, RecognizerSharedState state )
54 : base(state) // share the state object with another parser
96 /** <summary>Gets or sets the token stream; resets the parser upon a set.</summary> */
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Parser.pm 1 package ANTLR::Runtime::Parser;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-parser.rb 59 # - - - - - - begin action @parser::header - - - - - -
66 # - - - - - - end action @parser::header - - - - - - -
96 class Parser < ANTLR3::Parser
167 # parser rule group_spec
244 # parser rule group_name
319 # parser rule member
405 # parser rule parameter_declaration
480 # parser rule parameters
534 # parser rule paramete
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_parser.py 34 from webkitpy.thirdparty.BeautifulSoup import BeautifulSoup as Parser
55 self.test_doc = Parser(self.filesystem.read_binary_file(filename))
76 self.test_doc = Parser(test_contents)
79 self.ref_doc = Parser(ref_contents)
  /external/chromium_org/third_party/skia/tools/copyright/
fileparser.py 12 """Returns a Parser as appropriate for the file at this filepath.
22 class Parser(object):
57 class CParser(Parser):
58 """Parser that knows how to parse C/C++ files.
  /external/chromium_org/third_party/tlslite/tlslite/utils/
codec.py 29 class Parser(object):
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
parse_core.py 77 class Parser(object):
  /external/chromium_org/tools/gn/
parser.h 17 class Parser;
18 typedef scoped_ptr<ParseNode> (Parser::*PrefixFunc)(Token token);
19 typedef scoped_ptr<ParseNode> (Parser::*InfixFunc)(scoped_ptr<ParseNode> left,
31 class Parser {
45 Parser(const std::vector<Token>& tokens, Err* err);
46 ~Parser();
102 FRIEND_TEST_ALL_PREFIXES(Parser, BinaryOp);
103 FRIEND_TEST_ALL_PREFIXES(Parser, Block);
104 FRIEND_TEST_ALL_PREFIXES(Parser, Condition);
105 FRIEND_TEST_ALL_PREFIXES(Parser, Expression)
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h 1 //===--- Parser.h - Matcher expression parser -----*- C++ -*-===//
11 /// \brief Simple matcher expression parser.
13 /// The parser understands matcher expressions of the form:
16 /// The parser does not know how to process the matchers. It delegates this task
49 /// \brief Matcher expression parser.
50 class Parser {
52 /// \brief Interface to connect the parser with the registry and more.
54 /// The parser uses the Sema instance passed into
102 /// \param MatcherName The matcher name found by the parser
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/
Parser.java 20 * Defines essential functionality that every parser we implement
26 * parser for escaping purposes.
29 * of the parser to better support conditional processing.
31 public interface Parser {
38 * Tell the parser to process the provided {@code char}. Throws exception
47 * Tell the parser to process the provided {@code String}. Throws exception
56 * Reset the parser back to its initial default state.
61 * Returns the current state of the parser. May be {@link #STATE_ERROR}
62 * if the parser encountered an error. Such an error may be recoverable
66 * @return current state of the parser
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 2 * Parser
16 let rec parse_primary = parser
27 let rec parse_args accumulator = parser
29 begin parser
35 let rec parse_ident id = parser
87 and parse_expr = parser
93 let rec parse_args accumulator = parser
98 parser
110 let parse_definition = parser
115 let parse_toplevel = parser
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 2 * Parser
16 let rec parse_primary = parser
27 let rec parse_args accumulator = parser
29 begin parser
35 let rec parse_ident id = parser
87 and parse_expr = parser
93 let rec parse_args accumulator = parser
98 parser
110 let parse_definition = parser
115 let parse_toplevel = parser
    [all...]

Completed in 943 milliseconds

1 2 3 4 5 6 7 8