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

12 3 4 5 6 7 8 91011>>

  /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/deqp/executor/
xeXMLParser.hpp 23 * \brief XML Parser.
136 class Parser
142 Parser (void);
143 ~Parser (void);
145 void clear (void); //!< Resets parser to initial state.
167 Parser (const Parser& other);
168 Parser& operator= (const Parser& other);
222 inline int Parser::getDataSize (void) cons
    [all...]
xeTestCaseListParser.hpp 23 * \brief Test case list parser.
50 xml::Parser m_xmlParser;
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
AbstractTParser.java 9 * The super class of the generated parser. It is extended by the generated
12 * This class contains any helper functions used within the parser
21 extends Parser
25 * Create a new parser instance, pre-supplying the input token stream.
34 * Create a new parser instance, pre-supplying the input token stream
  /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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
__init__.py 26 'Parser',
41 'parser',
49 # Some convenience routines. Don't import Parser and Message as side-effects
55 Optional _class and strict are passed to the Parser constructor.
57 from email.parser import Parser
58 return Parser(*args, **kws).parsestr(s)
64 Optional _class and strict are passed to the Parser constructor.
66 from email.parser import Parser
    [all...]
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/
__init__.py 26 'Parser',
41 'parser',
49 # Some convenience routines. Don't import Parser and Message as side-effects
55 Optional _class and strict are passed to the Parser constructor.
57 from email.parser import Parser
58 return Parser(*args, **kws).parsestr(s)
64 Optional _class and strict are passed to the Parser constructor.
66 from email.parser import Parser
    [all...]
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/email/
__init__.py 26 'Parser',
41 'parser',
49 # Some convenience routines. Don't import Parser and Message as side-effects
55 Optional _class and strict are passed to the Parser constructor.
57 from email.parser import Parser
58 return Parser(*args, **kws).parsestr(s)
64 Optional _class and strict are passed to the Parser constructor.
66 from email.parser import Parser
    [all...]
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/
__init__.py 26 'Parser',
41 'parser',
49 # Some convenience routines. Don't import Parser and Message as side-effects
55 Optional _class and strict are passed to the Parser constructor.
57 from email.parser import Parser
58 return Parser(*args, **kws).parsestr(s)
64 Optional _class and strict are passed to the Parser constructor.
66 from email.parser import Parser
    [all...]
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/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
nuances.rb 29 parser = EmptyAlt::Parser.new lexer
30 events = parser.r
43 @parser::members {
59 parser = Subrule::Parser.new lexer
60 events = parser.a
96 parser = SpecialStates::Parser.new lexer
97 parser.
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toy.ml 15 Hashtbl.add Parser.binop_precedence '=' 2;
16 Hashtbl.add Parser.binop_precedence '<' 10;
17 Hashtbl.add Parser.binop_precedence '+' 20;
18 Hashtbl.add Parser.binop_precedence '-' 20;
19 Hashtbl.add Parser.binop_precedence '*' 40; (* highest. *)
  /external/clang/include/clang/AST/
CommentParser.h 1 //===--- CommentParser.h - Doxygen comment parser ---------------*- C++ -*-===//
10 // This file defines the Doxygen comment parser.
29 /// Doxygen comment parser.
30 class Parser {
31 Parser(const Parser &) = delete;
32 void operator=(const Parser &) = delete;
89 Parser(Lexer &L, Sema &S, llvm::BumpPtrAllocator &Allocator,
  /external/clang/lib/Parse/
RAIIObjectsForParser.h 1 //===--- RAIIObjectsForParser.h - RAII helpers for the parser ---*- C++ -*-===//
11 // by the parser to manage bits in recursion.
19 #include "clang/Parse/Parser.h"
52 SuppressAccessChecks(Parser &P, bool activate = true)
101 ParsingDeclRAIIObject(Parser &P, NoParent_t _)
107 ParsingDeclRAIIObject(Parser &P,
116 ParsingDeclRAIIObject(Parser &P, ParsingDeclRAIIObject *other)
179 ParsingDeclSpec(Parser &P)
182 ParsingDeclSpec(Parser &P, ParsingDeclRAIIObject *RAII)
204 ParsingDeclarator(Parser &P, const ParsingDeclSpec &DS, TheContext C
    [all...]
  /external/llvm/lib/TableGen/
Main.cpp 52 static int createDependencyFile(const TGParser &Parser, const char *argv0) {
65 for (const auto &Dep : Parser.getDependencies()) {
92 TGParser Parser(SrcMgr, Records);
94 if (Parser.ParseFile())
105 if (int Ret = createDependencyFile(Parser, argv0))
  /build/kati/
parser.cc 17 #include "parser.h"
37 class Parser {
44 typedef void (Parser::*DirectiveHandler)(
49 Parser(StringPiece buf, const char* filename, vector<Stmt*>* stmts)
59 Parser(StringPiece buf, const Loc& loc, vector<Stmt*>* stmts)
69 ~Parser() {
94 (*make_directives_)["include"] = &Parser::ParseInclude;
95 (*make_directives_)["-include"] = &Parser::ParseInclude;
96 (*make_directives_)["sinclude"] = &Parser::ParseInclude;
97 (*make_directives_)["define"] = &Parser::ParseDefine
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
Parsers.java 29 public static final Parser<String> IDENTITY = new Parser<String>() {
39 * Parser that tries, in this order:
47 public static <T> Parser<T> conventionalParser(Class<T> resultType)
51 Parser<T> identity = (Parser<T>) IDENTITY;
82 abstract static class InvokingParser<T> implements Parser<T> {
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/jsdom/
jsdom_parser.js 3 var Parser = require('../tree_construction/parser'),
8 //NOTE: this should be reentrant, so we create new parser here
9 var parser = new Parser(treeAdapter),
10 parsingUnit = new ParsingUnit(parser);
12 //NOTE: override parser loop method
13 parser._runParsingLoop = function () {
28 parser.parse(html);
35 //NOTE: this should be reentrant, so we create new parser her
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 19 ignore(Parser.parse_definition stream);
22 ignore(Parser.parse_extern stream);
26 ignore(Parser.parse_toplevel stream);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 21 let e = Parser.parse_definition stream in
25 let e = Parser.parse_extern stream in
30 let e = Parser.parse_toplevel stream in
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 42 #include <google/protobuf/compiler/parser.h>
96 Parser::Parser()
105 Parser::~Parser() {
110 inline bool Parser::LookingAt(const char* text) {
114 inline bool Parser::LookingAtType(io::Tokenizer::TokenType token_type) {
118 inline bool Parser::AtEnd() {
122 bool Parser::TryConsume(const char* text) {
131 bool Parser::Consume(const char* text, const char* error)
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/
index.js 3 exports.Parser = require('./lib/tree_construction/parser');

Completed in 442 milliseconds

12 3 4 5 6 7 8 91011>>