/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTree.h | 116 #pragma mark Tree Parser support
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/ |
rule-tracing.rb | 14 @parser::init { 19 @parser::members { 60 parser = Traced::Parser.new lexer 61 parser.a 68 parser.traces.should == [
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/ |
via-parser.rb | 93 parser = TokenRewrites::Parser.new( tokens ) 94 parser.program
|
/external/chromium/chrome/browser/autofill/ |
phone_field.h | 113 static struct Parser {
|
/external/chromium_org/net/dns/ |
dns_response.h | 82 // position the RR parser. 121 // Assuming the internal buffer holds |nbytes| bytes, initialize the parser 147 DnsRecordParser Parser() const;
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathExpression.cpp | 46 Parser parser; local 48 expr->m_topExpression = parser.parseStatement(expression, resolver, exceptionState);
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
MessageLite.java | 84 * Gets the parser for a message of the same type as this message. 86 Parser<? extends MessageLite> getParserForType(); 112 * that the parser on the receiving end does not interpret this as being
|
/external/javassist/src/main/javassist/bytecode/ |
AnnotationDefaultAttribute.java | 124 return new AnnotationsAttribute.Parser(info, constPool)
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
RequestLineParser.java | 26 package gov.nist.javax.sip.parser; 33 * Parser for the SIP request line. 41 public class RequestLineParser extends Parser {
|
StatusLineParser.java | 26 package gov.nist.javax.sip.parser; 31 * Parser for the SIP status line. 40 public class StatusLineParser extends Parser {
|
URLParser.java | 26 package gov.nist.javax.sip.parser; 39 * Parser For SIP and Tel URLs. Other kinds of URL's are handled by the 47 public class URLParser extends Parser { 371 * Parser for the base phone number. 404 * Parser for the local phone #. 439 * Parser for telephone subscriber.
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
MoveItemsParser.java | 27 public class MoveItemsParser extends Parser {
|
SettingsParser.java | 31 public class SettingsParser extends Parser {
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/ |
import.rb | 18 parser grammar DIDRSlave; 41 parser = DIDRMaster::Parser.new( tokens ) 42 parser.s 43 parser.output.should == 'S.a' 48 parser grammar Slave2; 72 parser = Master2::Parser.new( tokens ) 73 parser.s 74 parser.output.should == 'S.a1000 [all...] |
/external/clang/include/clang/Parse/ |
Parser.h | 1 //===--- Parser.h - C Language Parser ---------------------------*- C++ -*-===// 10 // This file defines the Parser interface. 38 class Parser; 50 /// Parser - This implements a parser for the C family of languages. After 54 class Parser : public CodeCompletionHandler { 220 Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies); 221 ~Parser(); 261 /// Initialize - Warm up the parser [all...] |
/external/clang/lib/Parse/ |
ParseInit.cpp | 14 #include "clang/Parse/Parser.h" 27 bool Parser::MayBeDesignationStart() { 112 static void CheckArrayDesignatorSyntax(Parser &P, SourceLocation Loc, 149 ExprResult Parser::ParseInitializerWithPotentialDesignator() { 399 ExprResult Parser::ParseBraceInitializer() { 487 bool Parser::ParseMicrosoftIfExistsBraceInitializer(ExprVector &InitExprs,
|
ParseExprCXX.cpp | 14 #include "clang/Parse/Parser.h" 39 bool Parser::areTokensAdjacent(const Token &First, const Token &Second) { 47 static void FixDigraph(Parser &P, Preprocessor &PP, Token &DigraphToken, 76 void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType, 103 void Parser::CheckForLParenAfterColonColon() { 180 bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS, 535 /// NOTE: The standard specifies that, for qualified-id, the parser does not 548 /// :: ~ C(); // Some Parser error like 'unexpected ~'. 551 /// We simplify the parser a bit and make it work like: 565 ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) [all...] |
ParseDecl.cpp | 10 // This file implements the Declaration portions of the Parser interfaces. 14 #include "clang/Parse/Parser.h" 39 TypeResult Parser::ParseTypeName(SourceRange *Range, 115 void Parser::ParseGNUAttributes(ParsedAttributes &attrs, 191 void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName, 339 void Parser::ParseMicrosoftDeclSpecWithSingleArg(IdentifierInfo *AttrName, 362 bool Parser::IsSimpleMicrosoftDeclSpec(IdentifierInfo *Ident) { 385 void Parser::ParseComplexMicrosoftDeclSpec(IdentifierInfo *Ident, 546 void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &Attrs) { 600 void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/ |
basic.rb | 34 parser = FlatList::Parser.new( tokens ) 36 result = parser.a 70 parser = SimpleTree::Parser.new( tokens ) 72 result = parser.a 109 parser = FlatVsTreeDecision::Parser.new( tokens ) 111 result = parser.a 147 parser = FlatVsTreeDecision2::Parser.new( tokens [all...] |
/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/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
cparse.py | 13 from parse_core import Symbols, Parser 96 class Function(Node,Parser): 127 class Array(Node,Parser): 156 class Compound(Node,Parser): 199 class Enum(Node,Parser): 256 class Declarator(Node,Parser): 264 #Parser.parse_enter(self,lexer) 274 #Parser.parse_leave(self,lexer) 377 class DeclarationSpecifiers(Node,Parser): 567 class Initializer(Node,Parser) [all...] |
/frameworks/native/libs/input/ |
KeyCharacterMap.cpp | 35 // Enables debug output for the parser. 38 // Enables debug output for parser performance. 149 Parser parser(map.get(), tokenizer, format); 150 status = parser.parse(); 667 // --- KeyCharacterMap::Parser --- 669 KeyCharacterMap::Parser::Parser(KeyCharacterMap* map, Tokenizer* tokenizer, Format format) : 673 KeyCharacterMap::Parser::~Parser() { [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTree.h | 110 #pragma mark Tree Parser support
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRTree.h | 110 #pragma mark Tree Parser support
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRTree.h | 110 #pragma mark Tree Parser support
|