HomeSort by relevance Sort by last modified time
    Searched refs:Parser (Results 101 - 125 of 300) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/javassist/src/main/javassist/bytecode/
ParameterAnnotationsAttribute.java 25 import javassist.bytecode.AnnotationsAttribute.Parser;
132 return new Parser(info, constPool).parseParameters();
AnnotationDefaultAttribute.java 124 return new AnnotationsAttribute.Parser(info, constPool)
  /external/protobuf/src/google/protobuf/
text_format.cc 104 // returning false. Borrowed from parser.cc (Thanks Kenton!).
107 class TextFormat::Parser::ParserImpl {
616 explicit ParserErrorCollector(TextFormat::Parser::ParserImpl* parser) :
617 parser_(parser) { }
631 TextFormat::Parser::ParserImpl* parser_;
768 TextFormat::Parser::Parser()
772 TextFormat::Parser::~Parser() {}
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp 10 // This file implements the C++ Declaration portions of the Parser interfaces.
14 #include "clang/Parse/Parser.h"
53 Decl *Parser::ParseNamespace(unsigned Context,
190 void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
230 Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
275 Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
334 Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
382 Decl *Parser::ParseUsingDirective(unsigned Context,
446 Decl *Parser::ParseUsingDeclaration(unsigned Context,
610 Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd)
    [all...]
ParsePragma.h 21 class Parser;
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() {
175 bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
512 /// NOTE: The standard specifies that, for qualified-id, the parser does not
525 /// :: ~ C(); // Some Parser error like 'unexpected ~'.
528 /// We simplify the parser a bit and make it work like:
542 ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugParser.java 34 public class DebugParser extends Parser {
35 /** Who to notify when events in the parser occur. */
43 /** Create a normal parser except wrap the token stream in a debug
59 /** Provide a new debug event listener for this parser. Notify the
  /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/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.
  /external/webkit/Source/WebCore/xml/
XPathExpression.cpp 48 Parser parser; local
50 expr->m_topExpression = parser.parseStatement(expression, resolver, ec);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
ItemOperationsParser.java 25 public class ItemOperationsParser extends Parser {
MoveItemsParser.java 26 public class MoveItemsParser extends Parser {
PingParser.java 34 public class PingParser 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.
37 class Parser;
48 /// Parser - This implements a parser for the C family of languages. After
52 class Parser : public CodeCompletionHandler {
195 Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies);
196 ~Parser();
236 /// Initialize - Warm up the parser
    [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...]
  /frameworks/base/libs/androidfw/
KeyCharacterMap.cpp 34 // Enables debug output for the parser.
37 // Enables debug output for parser performance.
148 Parser parser(map.get(), tokenizer, format);
149 status = parser.parse();
666 // --- KeyCharacterMap::Parser ---
668 KeyCharacterMap::Parser::Parser(KeyCharacterMap* map, Tokenizer* tokenizer, Format format) :
672 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

Completed in 706 milliseconds

1 2 3 45 6 7 8 91011>>