HomeSort by relevance Sort by last modified time
    Searched defs:Parser (Results 1 - 25 of 365) 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/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
binary.cpp 67 // A SPIR-V binary parser. A parser instance communicates detailed parse
69 class Parser {
72 Parser(const spv_const_context context, void* user_data,
214 spv_result_t Parser::parse(const uint32_t* words, size_t num_words,
226 spv_result_t Parser::parseModule() {
268 spv_result_t Parser::parseInstruction() {
394 spv_result_t Parser::parseOperand(size_t inst_offset,
407 // But it can exposes internal parser details such as whether an operand is
721 spv_result_t Parser::setNumericTypeInfoForType
    [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/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/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...]
  /system/core/libutils/include/utils/
PropertyMap.h 84 class Parser {
89 Parser(PropertyMap* map, Tokenizer* tokenizer);
90 ~Parser();
  /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> */

Completed in 807 milliseconds

1 2 3 4 5 6 7 8 91011>>