HomeSort by relevance Sort by last modified time
    Searched refs:Lexer (Results 201 - 225 of 298) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/lib/Lex/
PPLexerChange.cpp 11 // current lexer stack.
41 "Top level include stack isn't our primary lexer?");
48 /// getCurrentLexer - Return the current file lexer being lexed from. Note
55 // Look for a stacked lexer.
104 EnterSourceFileWithLexer(new Lexer(FID, InputFile, *this), CurDir);
110 void Preprocessor::EnterSourceFileWithLexer(Lexer *TheLexer,
113 // Add the current lexer to the include stack.
179 /// which will cause the lexer to start returning the specified tokens.
249 /// \brief Determine the location to use as the end of the buffer for a lexer.
272 /// HandleEndOfFile - This callback is invoked when the lexer hits the end o
    [all...]
MacroArgs.cpp 50 // Allocate memory for a MacroArgs object with the lexer tokens at the end.
226 std::string Str = Lexer::Stringify(TokStr);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Lexer.java 38 * Lexer class for the parser.
46 public class Lexer extends LexerCore {
68 public Lexer(String lexerName, String buffer) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 8 public class SimpleCLexer extends Lexer {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 8 public class SimpleCLexer extends Lexer {
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java 110 Lexer lexer = new Lexer(compiler, namespaceContext, this); local
112 lexer.tokenize(expression);
186 Lexer lexer = new Lexer(compiler, namespaceContext, this); local
188 lexer.tokenize(expression);
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/
lexer_unittest.py 30 import mojom.parse.lexer namespace
34 # we'll do it anyway. (I'm pretty sure ply's lexer never cares about comparing
56 """Tests |mojom.parse.lexer.Lexer|."""
60 # Clone all lexer instances from this one, since making a lexer is slow.
61 self._zygote_lexer = lex.lex(mojom.parse.lexer.Lexer("my_file.mojom"))
97 mojom.parse.lexer.LexError,
101 mojom.parse.lexer.LexError
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
DirectiveParser.cpp 110 void skipUntilEOD(pp::Lexer *lexer, pp::Token *token)
114 lexer->lex(token);
143 class DefinedParser : public Lexer
146 DefinedParser(Lexer *lexer,
149 : mLexer(lexer),
203 Lexer *mLexer;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
cparse.py 12 from lexer import Lexer
102 def parse(self,lexer,symbols):
105 #lexer.get_token()
106 if lexer.tok != ')':
107 if not lexer.tok:
108 self.parse_error(lexer)
109 #lexer.unget_token() # unget start of decl
110 while lexer.tok != ')':
112 node.parse(lexer,symbols
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 55 // LEXER FIELDS (must be in same state object to avoid casting
56 // constantly in generated code and Lexer object) :(
59 /** The goal of all lexer rules/methods is to create a token object.
62 * matching lexer rule(s). If you subclass to allow multiple token
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
hetero-nodes.rb 595 lexer = grammar_module::Lexer.new( input )
596 tokens = ANTLR3::CommonTokenStream.new( lexer )
607 lexer = grammar_module::Lexer.new( input )
608 tokens = ANTLR3::CommonTokenStream.new( lexer )
  /external/chromium_org/third_party/angle/src/
preprocessor.target.darwin-arm.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.darwin-arm64.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.darwin-mips.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.darwin-mips64.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.darwin-x86.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.darwin-x86_64.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.linux-arm.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.linux-arm64.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.linux-mips.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.linux-mips64.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.linux-x86.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
preprocessor.target.linux-x86_64.mk 30 third_party/angle/src/compiler/preprocessor/Lexer.cpp \
  /external/chromium_org/third_party/jinja2/
lexer.py 3 jinja2.lexer
6 This module implements a Jinja / Python combination lexer. The
7 `Lexer` class provided by this module is used to do some preprocessing
28 # environments with the same lexer
214 Used by the `Lexer` to specify known errors.
362 argument as :meth:`jinja2.lexer.Token.test`.
382 """Return a lexer which is probably cached."""
395 lexer = _lexer_cache.get(key)
396 if lexer is None:
397 lexer = Lexer(environment
    [all...]

Completed in 523 milliseconds

1 2 3 4 5 6 7 891011>>