/external/protobuf/src/google/protobuf/compiler/ |
parser_unittest.cc | 40 #include <google/protobuf/compiler/parser.h> 105 // Set up the parser to parse the given text. 109 parser_.reset(new Parser()); 145 // Same as above but does not expect that the parser parses the complete 180 scoped_ptr<Parser> parser_; 820 // There are a very large number of possible errors that the parser could 822 // we test each unique call to AddError() in parser.h. This does not mean 823 // we are testing every possible error that Parser can generate because 840 "0:9: Unrecognized syntax identifier \"no_such_syntax\". This parser " [all...] |
/external/selinux/sepolgen/src/sepolgen/ |
yacc.py | 25 # This implements an LR parser that is constructed from grammar rules defined 32 # LR parser itself is defined in terms of an object (which allows multiple 62 # a 'parser.out' file in the current directory 64 debug_file = 'parser.out' # Default name of the debugging file 84 # The following classes are used for the LR parser itself. These are not 156 # Instead, the global yacc() function should be used to create a suitable Parser 159 class Parser: 162 # This is a hack to keep users from trying to instantiate a Parser 166 raise YaccError("Can't instantiate Parser. Use yacc() instead.") 194 pslice.parser = self # Parser objec [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
yacc.py | 25 # This implements an LR parser that is constructed from grammar rules defined 32 # LR parser itself is defined in terms of an object (which allows multiple 62 # a 'parser.out' file in the current directory 64 debug_file = 'parser.out' # Default name of the debugging file 84 # The following classes are used for the LR parser itself. These are not 156 # Instead, the global yacc() function should be used to create a suitable Parser 159 class Parser: 162 # This is a hack to keep users from trying to instantiate a Parser 166 raise YaccError("Can't instantiate Parser. Use yacc() instead.") 194 pslice.parser = self # Parser objec [all...] |
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
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/ |
error.rb | 71 # the various reporting methods in Parser and Lexer can be overridden 88 # problem occurred and/or what was the expected input. While the parser 93 # Better to just say the recognizer had a problem and then let the parser 283 parser = MissingTokenExample::Parser.new( tokens ) 285 parser.missing 492 A tree parser expects to match a tree node containing a specific type of
|
token.rb | 225 general utility. Thus code generated for a standard combo lexer-parser grammar 443 example, if you refer to the literal <tt>'='</tt> in some parser rule in your 471 class ARecognizerOrSuch < ANTLR3::Parser
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
CSharp2.stg | 43 outputFile( LEXER,PARSER,TREE_PARSER, actionScope, actions, 271 /** How to generate a parser */ 403 parser(grammar, name, scopes, tokens, tokenNames, rules, numRules, bitsets, 404 ASTLabelType="object", superClass={<if(actions.(actionScope).superClass)><actions.(actionScope).superClass><else>Antlr.Runtime.Parser<endif>}, labelType="IToken", 405 members={<actions.parser.members>}) ::= << 409 /** How to generate a tree parser; same as parser except the input [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
CSharp3.stg | 44 outputFile( LEXER,PARSER,TREE_PARSER, actionScope, actions, 266 /** How to generate a parser */ 385 parser(grammar, name, scopes, tokens, tokenNames, rules, numRules, bitsets, 386 ASTLabelType="object", superClass={<if(actions.(actionScope).superClass)><actions.(actionScope).superClass><else>Antlr.Runtime.Parser<endif>}, labelType="IToken", 387 members={<actions.parser.members>}) ::= << 391 /** How to generate a tree parser; same as parser except the input [all...] |
/external/jetty/src/java/org/eclipse/jetty/http/ |
HttpParser.java | 36 public class HttpParser implements Parser 209 * If the parser is already in the END state, then it is {@link #reset reset} and re-parsed. 229 * no unconsumed content. It does not care about the {@link #getState current state} of the parser. [all...] |
/external/opencv3/3rdparty/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...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/ |
ParserImpl.java | 16 package org.yaml.snakeyaml.parser; 56 * parser. 113 * Since writing a recursive-descendant parser is a straightforward task, we do 116 public class ParserImpl implements Parser { [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
Parser.java | 15 // The TagSoup parser 30 The SAX parser class. 32 public class Parser extends DefaultHandler implements ScanHandler, XMLReader, LexicalHandler { 85 Reports whether this parser processes external general entities 92 Reports whether this parser processes external parameter entities 135 parser in ContentHandler.startElement() implement the 143 Returns "true" if the Locator objects passed by this parser 159 Controls whether the parser is reporting all validity errors 166 Controls whether the parser reports Unicode normalization 175 the parser treats namespace declaration attributes as being i [all...] |
/external/testng/src/main/java/org/testng/xml/ |
XmlSuite.java | 462 xsb.setDocType("suite SYSTEM \"" + Parser.TESTNG_DTD_URL + '\"');
|
/external/v8/src/parsing/ |
preparser.h | 14 #include "src/parsing/parser-base.h" 271 // Dummy implementation for making expression->somefunc() work in both Parser 335 // The pre-parser doesn't need to build lists of expressions, identifiers, or 588 typedef PreParser* Parser; [all...] |
/frameworks/base/core/java/android/content/res/ |
TypedArray.java | 77 /*package*/ XmlBlock.Parser mXml; [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/email/test/ |
test_email_renamed.py | 18 from email.parser import Parser, HeaderParser [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/email/test/ |
test_email_renamed.py | 18 from email.parser import Parser, HeaderParser [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/ |
test_email_renamed.py | 18 from email.parser import Parser, HeaderParser [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/ |
test_email_renamed.py | 18 from email.parser import Parser, HeaderParser [all...] |
/prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.5/ |
velocity-1.5.jar | |
/prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.7/ |
velocity-1.7.jar | |
/prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4-runtime/4.5/ |
antlr4-runtime-4.5.jar | |
/prebuilts/tools/common/offline-m2/com/tunnelvisionlabs/antlr4-runtime/4.5/ |
antlr4-runtime-4.5.jar | |
/prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/ |
antlr-runtime-3.5.2.jar | |
/prebuilts/tools/common/m2/repository/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/ |
org.apache.felix.bundlerepository-1.6.6.jar | |