/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 112 class Parser:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 112 class Parser:
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
tree.rb | 52 ############################################ Tree Parser ########################################### 70 Furthermore, it is capable of generating several different flavors of parser, 86 == The Tree Parser API 88 Like Parser, the class does not stray too far from the Recognizer API. 673 provide it to the parser. [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
AST.stg | 36 <! tree parser would already have imported !> 82 Ast<if(TREE_PARSER)>Tree<else>Parser<endif>RuleReturnScope\<<ASTLabelType>, <labelType>> 196 <! if tree parser and rewrite=true !> 204 <! if parser or tree-parser && rewrite!=true, we need to set result !>
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
AST.stg | 37 <! tree parser would already have imported !> 82 Ast<if(TREE_PARSER)>Tree<else>Parser<endif>RuleReturnScope\<<ASTLabelType>, <labelType>> 194 <! if tree parser and rewrite=true !> 202 <! if parser or tree-parser && rewrite!=true, we need to set result !>
|
/external/autotest/client/common_lib/ |
cartesian_config.py | 3 Cartesian configuration format file parser. 189 class Parser(object): 200 Initialize the parser and optionally parse a file. 669 parser = optparse.OptionParser('usage: %prog [options] filename ' variable 672 parser.add_option("-v", "--verbose", dest="debug", action="store_true", 674 parser.add_option("-f", "--fullname", dest="fullname", action="store_true", 676 parser.add_option("-c", "--contents", dest="contents", action="store_true", 679 options, args = parser.parse_args() 681 parser.error("filename required") 683 c = Parser(args[0], debug=options.debug [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearchdomain/ |
layer1.py | 82 query parser you use. Amazon CloudSearch supports four query 93 query parser syntax. 95 subset of the Apache Lucene query parser syntax defined by the 96 DisMax query parser. 220 specify the search criteria depends on the query parser used for 221 the request and the parser options specified in the `queryOptions` 222 parameter. By default, the `simple` query parser is used to process 224 parser, you must also specify the `queryParser` parameter. 230 Configures options for the query parser specified in the `queryParser` 233 The options you can configure vary according to which parser you use [all...] |
/external/javassist/src/main/javassist/compiler/ |
Parser.java | 20 public final class Parser implements TokenId { 23 public Parser(Lex lex) { [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
parser.ml | 2 * Parser 19 let rec parse_primary = parser 30 let rec parse_args accumulator = parser 32 begin parser 38 let rec parse_ident id = parser 62 begin parser 69 begin parser 74 begin parser 102 and parse_unary = parser 146 and parse_var_init = parser [all...] |
/external/llvm/include/llvm/Support/ |
TargetRegistry.h | 372 /// createMCAsmBackend - Create a target specific assembly parser. 382 /// createMCAsmParser - Create a target specific assembly parser. 384 /// \param Parser The target independent parser implementation to use for 387 MCAsmParser &Parser, 392 return MCAsmParserCtorFn(STI, Parser, MII, Options); [all...] |
/external/llvm/lib/CodeGen/MIRParser/ |
MIRParser.cpp | 1 //===- MIRParser.cpp - MIR serialization format parser implementation -----===// 21 #include "llvm/AsmParser/Parser.h" 320 // parser can resolve the MBB references. 540 StringRef TypeString, MIRParserImpl &Parser) { 545 return Parser.error(Source.SourceRange.Start,
|
/external/llvm/lib/MC/MCParser/ |
DarwinAsmParser.cpp | 1 //===- DarwinAsmParser.cpp - Darwin (Mach-O) Assembly Parser --------------===// 49 void Initialize(MCAsmParser &Parser) override { 51 this->MCAsmParserExtension::Initialize(Parser); 489 // the assembly parser and not have any need for an MCStreamer API. [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
CodedInputStream.java | 434 final Parser<T> parser, 441 T result = parser.parsePartialFrom(this, extensionRegistry); 486 final Parser<T> parser, 495 T result = parser.parsePartialFrom(this, extensionRegistry); [all...] |
GeneratedMessageLite.java | 59 public Parser<? extends MessageLite> getParserForType() { [all...] |
/external/v8/src/debug/ |
debug-scopes.cc | 12 #include "src/parsing/parser.h" 100 if (Parser::ParseStatic(&info) && Scope::Analyze(&info)) { 108 if (Parser::ParseStatic(&info) && Scope::Analyze(&info)) { 419 // parser or that the preparse data given to the initial parse has been
|
/frameworks/base/core/java/android/content/res/ |
Resources.java | 1754 XmlBlock.Parser parser = (XmlBlock.Parser)set; local [all...] |
ResourcesImpl.java | 905 final XmlResourceParser parser = loadXmlResourceParser( local 1119 final XmlBlock.Parser parser = (XmlBlock.Parser) set; local [all...] |
/system/core/init/ |
builtins.cpp | 478 Parser& parser = Parser::GetInstance(); local 488 parser.ParseConfig(dir); 492 parser.ParseConfig(args[i]);
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
Antlr.Runtime.Tree.pas | 127 /// between your tree's addChild and this parser tree construction addChild 359 /// for both parser and tree grammars. :) 372 // REWRITING TREES (used by tree parser) 406 /// attribute in tree parser. Optional unless you use tree parser 677 /// objects, you need to override this and then set the parser tree adaptor to 680 /// To get your parser to build nodes of a different type, override [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
construction.rb | 383 parser = ASTBuilder::Parser.new( lexer ) 384 parser.flag = flag unless flag.nil? 385 result = parser.send( rule, *args )
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
AbstractMessageTest.java | 176 public Parser<? extends Message> getParserForType() {
|
/external/v8/src/runtime/ |
runtime-internal.cc | 15 #include "src/parsing/parser.h" 364 UNREACHABLE(); // implemented as macro in the parser 415 if (Parser::ParseStatic(info.get())) {
|
/frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/ |
XMLParser.java | 2 package android.databinding.parser; 10 public class XMLParser extends Parser {
|
/prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-support/1.5/ |
gmaven-runtime-support-1.5.jar | |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
codegen.ml | 228 Hashtbl.add Parser.binop_precedence op prec;
|