HomeSort by relevance Sort by last modified time
    Searched refs:Lexer (Results 226 - 250 of 250) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/lib/Lex/
TokenLexer.cpp 366 // Pop this context off the preprocessors lexer stack and get the next
506 // a lexer and other overhead.
527 // Make a lexer to lex this string from. Lex just this one token.
528 // Make a lexer object so that we lex and expand the paste result.
529 Lexer TL(SourceMgr.getLocForStartOfFile(LocFileID),
HeaderSearch.cpp 16 #include "clang/Lex/Lexer.h"
678 return Lexer::Stringify(Path.str());
    [all...]
PPMacroExpansion.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/parser/
ASTBuilder.h 76 ASTBuilder(JSGlobalData* globalData, Lexer* lexer)
78 , m_lexer(lexer)
632 Lexer* m_lexer;
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 91 # LEXER FIELDS (must be in same state object to avoid casting
92 # constantly in generated code and Lexer object) :(
95 ## The goal of all lexer rules/methods is to create a token object.
98 # matching lexer rule(s). If you subclass to allow multiple token
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
403 Get number of recognition errors (lexer, parser, tree parser). Each
404 recognizer tracks its own number. So parser and lexer each have
431 your token objects because you don't have to go modify your lexer
777 If you change what tokens must be created by the lexer,
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 71 The job of a TokenStream is to read lexer output and then provide ANTLR
280 usually a lexer. They provide the operations required by higher-level
290 to them for some other purpose, you have the lexer assign the comments and
311 # expected to return the token source object (such as a lexer) from which
346 feed text input into an ANTLR Lexer for token processing.
532 # This is an extra utility method for use inside lexer actions if needed.
540 # This is an extra utility method for use inside lexer actions if needed.
548 # This is an extra utility method for use inside lexer actions if needed.
556 # This is an extra utility method for use inside lexer actions if needed.
726 Using some TokenSource (such as a lexer), the stream collects a token sequence
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Python.stg 47 outputFile(LEXER,PARSER,TREE_PARSER, actionScope, actions,
82 <if(LEXER)>
88 main = ParserMain("<recognizer.grammar.name>Lexer", <recognizer.name>)<\n>
107 lexer(grammar, name, tokens, scopes, rules, numRules, filterMode,
108 labelType="CommonToken", superClass="Lexer") ::= <<
139 <actions.lexer.init>
142 <actions.lexer.members>
157 /** A override of Lexer.nextToken() that backtracks over mTokens() looking
203 # is Lexer always superclass?
559 /** How to generate a rule in the lexer; naked blocks are used fo
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 31 #include "clang/Lex/Lexer.h"
118 unsigned Length = Lexer::MeasureTokenLength(SM.getSpellingLoc(EndLoc),
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 43 outputFile( LEXER,PARSER,TREE_PARSER, actionScope, actions,
102 lexer(grammar, name, tokens, scopes, rules, numRules, filterMode, labelType="CommonToken",
103 superClass={<if(actions.(actionScope).superClass)><actions.(actionScope).superClass><else>Antlr.Runtime.Lexer<endif>}) ::= <<
110 <actions.lexer.members>
199 /** A override of Lexer.nextToken() that backtracks over mTokens() looking
675 /** How to generate a rule in the lexer; naked blocks are used for
726 /** How to generate code for the implicitly-defined lexer grammar rule
727 * that chooses between lexer rules.
949 <if(!LEXER)>state.errorRecovery=false;<endif><if(backtracking)>state.failed=false;<endif>
957 <if(LEXER)>
    [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,
100 lexer(grammar, name, tokens, scopes, rules, numRules, filterMode, labelType="CommonToken",
101 superClass={<if(actions.(actionScope).superClass)><actions.(actionScope).superClass><else>Antlr.Runtime.Lexer<endif>},
109 <actions.lexer.members>
194 /** A override of Lexer.nextToken() that backtracks over mTokens() looking
653 /** How to generate a rule in the lexer; naked blocks are used for
702 /** How to generate code for the implicitly-defined lexer grammar rule
703 * that chooses between lexer rules.
929 <if(!LEXER)>state.errorRecovery=false;<endif><if(backtracking)>state.failed=false;<endif>
937 <if(LEXER)>
    [all...]
  /external/clang/lib/AST/
Expr.cpp 25 #include "clang/Lex/Lexer.h"
712 // Create a lexer starting at the beginning of this token.
713 Lexer TheLexer(StrTokSpellingLoc, Features, Buffer.begin(), StrData,
729 return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features);
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 24 import org.antlr.runtime.Lexer;
30 public class JavaLexer extends Lexer {
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
Parser.java 5 import com.google.clearsilver.jsilver.syntax.lexer.*;
21 private final Lexer lexer; field in class:Parser
34 public Parser(@SuppressWarnings("hiding") Lexer lexer)
36 this.lexer = lexer;
110 while(index(this.lexer.peek()) == -1)
117 ign.add(this.lexer.next());
122 this.ignoredTokens.setIn(this.lexer.peek(), ign)
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 83 /// The Lexer tracks line/col info as well as input index so its markers are
180 /// pass the buck all the way to the lexer who can ask its input stream
186 /// <summary>A source of characters for an ANTLR lexer </summary>
199 /// LA(I). This will be used for labels in the generated lexer code.
280 /// Errors from the lexer are never passed to the parser. Either you want
582 // Lexer Specific Members
583 // LEXER FIELDS (must be in same state object to avoid casting
584 // constantly in generated code and Lexer object) :(
587 /// Token object normally returned by NextToken() after matching lexer rules.
590 /// The goal of all lexer rules/methods is to create a token object
    [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp 22 #include "clang/Lex/Lexer.h"
    [all...]
RewriteModernObjC.cpp 22 #include "clang/Lex/Lexer.h"
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Grammar.java 53 /** used for generating lexer temp files */
64 public static final int CHAR_LABEL = 5; // used in lexer for x='a'
104 public static final int LEXER = 1;
110 "lexer",
118 "Lexer",
121 "Parser" // if combined grammar, gen Parser and Lexer will be done later
126 * validDelegations.get(LEXER) gives list of the kinds of delegators
132 map(LEXER, LEXER);
133 map(LEXER, PARSER)
630 ANTLRLexer lexer; local
883 ANTLRLexer lexer = new ANTLRLexer(new ANTLRStringStream(ruleText)); local
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp     [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilt/common/antlr/
antlr-3.4-complete.jar 
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
SemaDecl.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /prebuilt/common/jython/
jython.jar 

Completed in 694 milliseconds

1 2 3 4 5 6 7 8 910