/external/protobuf/src/google/protobuf/compiler/ |
importer.cc | 49 #include <google/protobuf/compiler/parser.h> 82 // - It implements the ErrorCollector interface (used by Tokenizer and Parser) 132 // Set up the tokenizer and parser. 136 Parser parser; local 138 parser.RecordErrorsTo(&file_error_collector); 141 parser.RecordSourceLocationsTo(&source_locations_); 146 return parser.Parse(&tokenizer, output) &&
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
markupbase.py | 25 """Parser base class which provides some common support methods used 127 # this could be handled in a separate doctype parser
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
markupbase.py | 25 """Parser base class which provides some common support methods used 127 # this could be handled in a separate doctype parser
|
/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...] |
/external/chromium_org/third_party/jinja2/ |
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/libvpx/libvpx/examples/includes/HTML-Toc-0.91/ |
TocGenerator.pm | 10 use HTML::Parser; 18 @ISA = qw(HTML::Parser); 597 # Reference parser ToC to current ToC 601 # Reference parser group to current group [all...] |
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/ |
SAXParserTest.java | 32 import org.xml.sax.Parser; 58 public Parser getParser() throws SAXException { 116 SAXParser parser; field in class:SAXParserTest 138 // we differntiate between a validating and a non validating parser 140 SAXParser parser = SAXParserFactory.newInstance().newSAXParser(); local 141 validating = parser.isValidating(); 185 parser = spf.newSAXParser(); 186 assertNotNull(parser); 210 // parser.parse(is, dh, ParsingSupport.XML_SYSTEM_ID); 227 // parser.parse(is, hb, ParsingSupport.XML_SYSTEM_ID) 846 Parser parser = spf.newSAXParser().getParser(); local 869 SAXParser parser = spf.newSAXParser(); local 881 SAXParser parser = spf.newSAXParser(); local 891 SAXParser parser = spf.newSAXParser(); local 902 SAXParser parser = spf.newSAXParser(); local 912 SAXParser parser = spf.newSAXParser(); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.metadata.repository_1.1.0.v20100513.jar | |
/external/chromium_org/v8/src/ |
compiler.cc | 45 #include "parser.h" 669 Parser parser(info); 673 parser.set_allow_lazy(true); 674 if (!parser.Parse()) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
EclipseLintClient.java | 76 import org.eclipse.jdt.internal.compiler.parser.Parser; [all...] |
/frameworks/base/core/java/android/content/res/ |
Resources.java | 1371 XmlBlock.Parser parser = (XmlBlock.Parser)set; local 1496 XmlBlock.Parser parser = (XmlBlock.Parser)set; local [all...] |
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
ProvisionParser.java | 43 public class ProvisionParser extends Parser { 396 XmlPullParser parser = factory.newPullParser(); local 397 parser.setInput(new ByteArrayInputStream(doc.getBytes()), "UTF-8"); 398 int type = parser.getEventType(); 400 type = parser.next(); 402 String tagName = parser.getName(); 404 parseWapProvisioningDoc(parser, policy); 418 private static boolean parseSecurityPolicy(XmlPullParser parser) 422 int type = parser.nextTag(); 423 if (type == XmlPullParser.END_TAG && parser.getName().equals("characteristic")) [all...] |
/packages/apps/Exchange/src/com/android/exchange/eas/ |
EasOutboxSync.java | 28 import com.android.exchange.adapter.Parser.EmptyStreamException; 167 // The parser holds the status
|
/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/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/ |
metadata_dispatcher.js | 15 * Dispatches metadata requests to the correct parser. 36 var parser = new parserClass(this); 37 this.parserInstances_.push(parser); 38 patterns.push(parser.urlFilter.source); 50 * List of registered parser classes. 56 * @param {function} parserClass Parser constructor function. 170 [ // Step one, find the parser matching the url. 173 var parser = self.parserInstances_[i]; 174 if (fileURL.match(parser.urlFilter)) { 177 metadata = parser.createDefaultMetadata() [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/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/chromium_org/net/dns/ |
mdns_client_impl.cc | 206 DnsRecordParser parser = response->Parser(); 211 offset = parser.GetOffset(); 213 &parser, base::Time::Now()); 218 if (offset == parser.GetOffset()) { 220 return; // The parser did not advance, abort reading the packet.
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
GeneratedMessageLite.java | 58 public Parser<? extends MessageLite> getParserForType() {
|