| /external/regex-re2/util/ |
| pcre.h | 583 typedef bool (*Parser)(const char* str, int n, void* dest); 588 Arg(type* p, Parser parser) : arg_(p), parser_(parser) { } \ 609 template <class T> Arg(T*, Parser parser); 620 Parser parser_; 659 // This part of the parser, appropriate only for ints, deals with bases
|
| /frameworks/base/cmds/appwidget/src/com/android/commands/appwidget/ |
| AppWidget.java | 54 private static class Parser { 64 public Parser(String[] args) { 161 Parser parser = new Parser(args); local 162 Runnable command = parser.parseCommand();
|
| /frameworks/native/include/input/ |
| KeyCharacterMap.h | 172 class Parser { 199 Parser(KeyCharacterMap* map, Tokenizer* tokenizer, Format format); 200 ~Parser();
|
| /external/chromium_org/chrome/browser/profile_resetter/ |
| jtl_interpreter.cc | 462 class Parser { 464 explicit Parser(const std::string& program) 467 ~Parser() {} 690 DISALLOW_COPY_AND_ASSIGN(Parser); 711 Parser parser(program_); 712 while (parser.HasNextSentence()) { 714 if (!parser.ParseNextSentence(&sentence)) {
|
| /external/chromium_org/third_party/protobuf/src/google/protobuf/ |
| text_format.cc | 174 // returning false. Borrowed from parser.cc (Thanks Kenton!). 177 class TextFormat::Parser::ParserImpl { 879 explicit ParserErrorCollector(TextFormat::Parser::ParserImpl* parser) : 880 parser_(parser) { } 894 TextFormat::Parser::ParserImpl* parser_; [all...] |
| /external/clang/lib/Parse/ |
| Parser.cpp | 1 //===--- Parser.cpp - C Language Family Parser ----------------------------===// 10 // This file implements the Parser interfaces. 14 #include "clang/Parse/Parser.h" 29 /// to the parser action. 43 IdentifierInfo *Parser::getSEHExceptKeyword() { 51 Parser::Parser(Preprocessor &pp, Sema &actions, bool skipFunctionBodies) 74 DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) { 78 DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) [all...] |
| /external/chromium_org/chrome/test/chromedriver/ |
| capabilities.cc | 27 typedef base::Callback<Status(const base::Value&, Capabilities*)> Parser; 315 std::map<std::string, Parser> parser_map; 492 std::map<std::string, Parser> parser_map; 496 for (std::map<std::string, Parser>::iterator it = parser_map.begin();
|
| /external/chromium_org/third_party/jinja2/ |
| parser.py | 3 jinja2.parser 6 Implements the template parser. 24 class Parser(object): 85 """Called if the parser encounters an unknown tag. Tries to fail 144 parses template data if appropriate. The parser checks first if the [all...] |
| environment.py | 21 from jinja2.parser import Parser 271 # lexer / parser information 459 return Parser(self, source, name, encode_filename(filename)).parse() 487 """Called by the parser to do the preprocessing and filtering 584 parser = Parser(self, source, state='variable') 587 expr = parser.parse_expression() 588 if not parser.stream.eos: 590 parser.stream.current.lineno [all...] |
| /external/clang/lib/ASTMatchers/Dynamic/ |
| Parser.cpp | 1 //===--- Parser.cpp - Matcher expression parser -----*- C++ -*-===// 11 /// \brief Recursive parser implementation for the matcher expression grammar. 15 #include "clang/ASTMatchers/Dynamic/Parser.h" 27 /// \brief Simple structure to hold information for one token from the parser. 28 struct Parser::TokenInfo { 54 const char* const Parser::TokenInfo::ID_Bind = "bind"; 56 /// \brief Simple tokenizer for the parser. 57 class Parser::CodeTokenizer { 259 Parser::Sema::~Sema() { [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...] |
| /libcore/benchmarks/src/benchmarks/regression/ |
| ParseBenchmark.java | 56 @Override Parser newParser() { 61 @Override Parser newParser() { 66 @Override Parser newParser() { 71 @Override Parser newParser() { 76 @Override Parser newParser() { 87 abstract Parser newParser(); 91 private Parser parser; field in class:ParseBenchmark 95 parser = api.newParser(); 100 parser.parse(text) [all...] |
| /external/antlr/antlr-3.4/runtime/Python/antlr3/ |
| debug.py | 32 from antlr3 import Parser, TokenStream, RecognitionException, Token 35 class DebugParser(Parser): 43 # Who to notify when events in the parser occur. 50 """Provide a new debug event listener for this parser. Notify the 82 Parser.reportError(self, exc) 414 """The parser has just entered a rule. No decision has been made about 492 """The parser is going to look arbitrarily ahead; mark this location, 516 """To watch a parser move through the grammar, the parser needs to 522 the parser whenever it hits this line/pos [all...] |
| recognizers.py | 55 parser is protected. 131 lexer, parser, and tree grammars. This is all the parsing 156 ## State of a lexer, parser, or tree parser are collected into a state 179 reset the parser's state; subclasses must rewinds the input stream 263 This method sets errorRecovery to indicate the parser is recovering 265 To get out of recovery mode, the parser must successfully match 403 Get number of recognition errors (lexer, parser, tree parser). Each 404 recognizer tracks its own number. So parser and lexer each hav [all...] |
| /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
| recognizers.rb | 181 Parser, and TreeParser are abstract classes. They can be instantiated, but 534 # rule invocation, the parser pushes the set of tokens that can 601 # So, you cna see that the parser walks up call chain looking 680 # action in the parser or tree parser works. It simply creates 713 # * override this method in your parser to do things 927 the lexer converts text into tokens for use by a parser, which recognizes larger 930 ANTLR parsers have a variety of entry points specified by parser rules, each of 948 If the lexer is preparing tokens for use by an ANTLR generated parser, the lexer 963 class Parser < ANTLR3::Parse [all...] |
| /external/chromium_org/third_party/re2/re2/ |
| re2.h | 742 typedef bool (*Parser)(const char* str, int n, void* dest); 747 Arg(type* p, Parser parser) : arg_(p), parser_(parser) { } \ 769 template <class T> Arg(T*, Parser parser); 780 Parser parser_; [all...] |
| /external/clang/lib/AST/ |
| CommentParser.cpp | 1 //===--- CommentParser.cpp - Doxygen comment parser -----------------------===// 33 Parser &P; 147 TextTokenRetokenizer(llvm::BumpPtrAllocator &Allocator, Parser &P): 257 Parser::Parser(Lexer &L, Sema &S, llvm::BumpPtrAllocator &Allocator, 265 void Parser::parseParamCommandArgs(ParamCommandComment *PC, 283 void Parser::parseTParamCommandArgs(TParamCommandComment *TPC, 293 void Parser::parseBlockCommandArgs(BlockCommandComment *BC, 311 BlockCommandComment *Parser::parseBlockCommand() { 403 InlineCommandComment *Parser::parseInlineCommand() [all...] |
| /external/clang/lib/Format/ |
| UnwrappedLineParser.cpp | 19 #define DEBUG_TYPE "format-parser" 123 ScopedLineState(UnwrappedLineParser &Parser, 125 : Parser(Parser) { 126 OriginalLines = Parser.CurrentLines; 128 Parser.CurrentLines = &Parser.PreprocessorDirectives; 129 else if (!Parser.Line->Tokens.empty()) 130 Parser.CurrentLines = &Parser.Line->Tokens.back().Children [all...] |
| /external/javassist/src/main/javassist/bytecode/ |
| AnnotationsAttribute.java | 226 return new Parser(info, constPool).parseAnnotations(); 562 static class Parser extends Walker { 570 * Constructs a parser. This parser constructs a parse tree of 576 Parser(byte[] info, ConstPool cp) {
|
| /external/llvm/lib/Target/Sparc/AsmParser/ |
| SparcAsmParser.cpp | 38 MCAsmParser &Parser; 81 SparcAsmParser(MCSubtargetInfo &sti, MCAsmParser &parser, 84 : MCTargetAsmParser(), STI(sti), Parser(parser) { 431 const AsmToken &Tok = Parser.getTok(); 437 Parser.Lex(); 440 Parser.Lex(); 465 Parser.eatToEndOfStatement(); 471 Parser.eatToEndOfStatement(); 476 Parser.Lex(); // Eat the comma [all...] |
| /external/regex-re2/re2/ |
| re2.h | 754 typedef bool (*Parser)(const char* str, int n, void* dest); 759 Arg(type* p, Parser parser) : arg_(p), parser_(parser) { } \ 781 template <class T> Arg(T*, Parser parser); 792 Parser parser_; [all...] |
| /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(long 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);
|
| /packages/apps/Exchange/src/com/android/exchange/adapter/ |
| Parser.java | 39 * Extremely fast and lightweight WBXML parser, implementing only the subset of WBXML that 55 public abstract class Parser { 76 // The input stream for this parser 148 * Generated when the parser comes to EOF prematurely during parsing (i.e. in error) 155 * An EmptyStreamException is an EofException that occurs reading the first byte in the parser's 182 public Parser(final InputStream in) throws IOException { 189 * @param parser an existing, initialized parser 192 public Parser(final Parser parser) throws IOException [all...] |
| /external/chromium_org/v8/src/ |
| parser.h | 323 // Parser state of containing expression, if any. 376 class Parser; 384 typedef v8::internal::Parser* Parser; 406 explicit ParserTraits(Parser* parser) : parser_(parser) {} 585 Parser* parser_; 589 class Parser : public ParserBase<ParserTraits> { 591 explicit Parser(CompilationInfo* info) [all...] |
| /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
| UnknownFieldSet.java | 955 * Parser to implement MessageLite interface. 957 public static final class Parser extends AbstractParser<UnknownFieldSet> { 974 private static final Parser PARSER = new Parser(); 975 public final Parser getParserForType() { 976 return PARSER;
|