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

1 2 3 4 5 6 7 8 91011>>

  /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(
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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)
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
Parser.java 21 // TODO(kevinb): release common.text.Parser in Guava then nuke this
22 public interface Parser<T> {
  /external/python/cpython2/Lib/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/gdb/darwin-x86/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/gdb/linux-x86/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/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
binary.cpp 56 // A SPIR-V binary parser. A parser instance communicates detailed parse
58 class Parser {
61 Parser(const spv_const_context context, void* user_data,
183 // Temporary storage for parser state within a single instruction.
216 spv_result_t Parser::parse(const uint32_t* words, size_t num_words,
228 spv_result_t Parser::parseModule() {
270 spv_result_t Parser::parseInstruction() {
387 spv_result_t Parser::parseOperand(size_t inst_offset,
400 // But it can exposes internal parser details such as whether an operand i
    [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/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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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...]
  /external/compiler-rt/lib/esan/
esan_flags.cpp 32 static void registerEsanFlags(FlagParser *Parser, Flags *F) {
34 RegisterFlag(Parser, #Name, Description, &F->Name);
44 FlagParser Parser;
45 registerEsanFlags(&Parser, F);
46 RegisterCommonFlags(&Parser);
47 Parser.ParseString(GetEnv(EsanOptsEnv));
53 Parser.PrintFlagDescriptions();
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Parser.java 28 public interface Parser {
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Parser.java 46 public interface Parser<MessageType> {
  /external/python/cpython2/Lib/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...]
  /external/python/cpython3/Lib/email/
parser.py 5 """A parser of RFC 2822 and MIME email messages."""
7 __all__ = ['Parser', 'HeaderParser', 'BytesParser', 'BytesHeaderParser',
18 class Parser:
20 """Parser of RFC 2822 and MIME email messages.
36 aspects of the parser's operation. The default policy maintains
74 class HeaderParser(Parser):
76 return Parser.parse(self, fp, True)
79 return Parser.parsestr(self, text, True)
86 """Parser of binary RFC 2822 and MIME email messages.
101 self.parser = Parser(*args, **kw
    [all...]
  /external/python/cpython3/Lib/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...]
  /external/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/skqp/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/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
Parser.java 16 package org.yaml.snakeyaml.parser;
23 * The parser and the scanner form together the 'Parse' step in the loading
30 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/gdb/darwin-x86/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/gdb/linux-x86/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/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/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...]

Completed in 548 milliseconds

1 2 3 4 5 6 7 8 91011>>