HomeSort by relevance Sort by last modified time
    Searched full:lexer (Results 476 - 500 of 1025) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/C/doxygen/
changes31.dox 43 /// Prior to the 3.1 release, accessing the token source of a lexer required knowledge of where
44 /// the token source pointer was located wihtin the lexer. In 3.1, the token source was burried
doxygengroups.dox 99 /// \defgroup ANTLR3_LEX_STATE ANTLR3_LEX_STATE - Lexer State Class Definition
113 /// \defgroup ANTLR3_LEXER ANTLR3_LEXER - Lexer Class Definition
199 /// \defgroup pANTLR3_LEX_STATE pANTLR3_LEX_STATE - Lexer State Implementation
213 /// \defgroup pANTLR3_LEXER pANTLR3_LEXER - Lexer Implementation
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestDotTreeGenerator.cs 47 SimpleExpressionLexer lexer = new SimpleExpressionLexer( input );
48 CommonTokenStream tokens = new CommonTokenStream( lexer );
TestExpressionFeatures.g3 78 @lexer::namespace{Antlr3.Runtime.Test}
147 * Lexer Rules
Antlr3.Runtime.Test.csproj 74 <Compile Include="SemanticPredicateReduction.g3.lexer.cs">
132 <Compile Include="StringTemplateOutput.g3.lexer.cs">
138 <Compile Include="TestActionFeatures.g3.lexer.cs">
145 <Compile Include="TestExpressionFeatures.g3.lexer.cs">
SimpleExpression.g3 68 // LEXER
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
RecognizerSharedState.pm 75 # The goal of all lexer rules/methods is to create a token object.
78 # matching lexer rule(s). If you subclass to allow multiple token
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interpreter.java 47 * for a lexer grammar of course.
53 /** A lexer listener that just creates token objects as they
80 if ( grammar.type!=Grammar.LEXER ) {
120 * This only does lexer grammars.
129 if ( grammar.type!=Grammar.LEXER ) {
238 if ( s.nfa.grammar.type!=Grammar.LEXER ) {
263 if ( s.nfa.grammar.type!=Grammar.LEXER ) {
443 // a Lexer object and, hence, cannot call the routine to get a
BuildDependencyGenerator.java 127 // add autogenerated lexer; e.g., TLexer.java TLexer.h TLexer.tokens
130 String suffix = Grammar.grammarTypeToFileNameSuffix[Grammar.LEXER];
131 String lexer = grammar.name + suffix + extST.render(); local
132 files.add(new File(outputDir, lexer));
  /external/chromium_org/third_party/angle/projects/src/
preprocessor.vcxproj.filters 31 <ClInclude Include="..\..\src\compiler\preprocessor\Lexer.h">
40 <ClCompile Include="..\..\src\compiler\preprocessor\Lexer.cpp">
  /external/clang/include/clang/AST/
CommentParser.h 36 Lexer &L;
93 Parser(Lexer &L, Sema &S, llvm::BumpPtrAllocator &Allocator,
  /external/clang/include/clang/Basic/
PlistSupport.h 15 #include "clang/Lex/Lexer.h"
99 extend ? Lexer::MeasureTokenLength(Loc, SM, LangOpts) - 1 : 0;
  /external/clang/lib/Tooling/
RefactoringCallbacks.cpp 12 #include "clang/Lex/Lexer.h"
32 return replaceStmtWithText(Sources, From, Lexer::getSourceText(
  /external/llvm/lib/AsmParser/
LLLexer.h 1 //===- LLLexer.h - Lexer for LLVM Assembly Files ----------------*- C++ -*-===//
10 // This class represents the Lexer for .ll files.
  /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/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
BooleanTest.java 52 hasErrorMsg = true; // return error message for boolean test of lexer
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestSuiteFactory.java 96 final ANTLRv3Lexer lexer = new ANTLRv3Lexer(new ANTLRReaderStream(reader)); local
97 final CommonTokenStream tokens = new CommonTokenStream(lexer);
162 final StGUnitLexer lexer = new StGUnitLexer(new ANTLRReaderStream(reader)); local
163 final CommonTokenStream tokens = new CommonTokenStream(lexer);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Tokens.cs 38 * In an action, a lexer rule can set token to this SKIP_TOKEN and ANTLR
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t053hetero.html 87 lexer = new (EnhancedParser(lexerCls))(cstream),
88 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
101 lexer = new (EnhancedParser(lexerCls))(cstream),
102 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedLexer.h 22 // start of actions.lexer.memVars
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.g 0 lexer grammar Fuzzy;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteLexer.h 21 // start of actions.lexer.memVars
  /external/antlr/antlr-3.4/runtime/Perl5/examples/simplecalc/
SimpleCalc.g 22 * LEXER RULES
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestInterpretedParsing.java 52 "lexer grammar t;\n"+
87 "lexer grammar t;\n"+
122 "lexer grammar t;\n"+
157 "lexer grammar t;\n"+
  /external/chromium_org/third_party/skia/third_party/lua/src/
llex.h 49 /* state of the lexer plus state of the parser when shared by all

Completed in 302 milliseconds

<<11121314151617181920>>