Searched defs:Lexer (Results 1 - 25 of 31) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DLexer.js2 * lexer grammars result in a subclass of this object. A Lexer object
6 org.antlr.runtime.Lexer = function(input, state) {
8 org.antlr.runtime.Lexer.superclass.constructor.call(this, state);
15 org.antlr.lang.extend(org.antlr.runtime.Lexer, org.antlr.runtime.BaseRecognizer, {
18 org.antlr.runtime.Lexer.superclass.reset.call(this);
242 msg = org.antlr.runtime.Lexer.superclass.getErrorMessage.call(this, e, tokenNames);
277 org.antlr.runtime.Lexer.superclass.traceIn.call(this, ruleName, ruleIndex, inputSymbol);
282 org.antlr.runtime.Lexer.superclass.traceOut.call(this, ruleName, ruleIndex, inputSymbol);
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DLexer.pm1 package Test::ANTLR::Runtime::Lexer;
6 use ANTLR::Runtime::Lexer;
14 my $lexer = ANTLR::Runtime::Lexer->new({ input => $input });
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dlexer.ml2 * Lexer
0 (*===----------------------------------------------------------------------=== module
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dlexer.ml2 * Lexer
0 (*===----------------------------------------------------------------------=== module
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dlexer.ml2 * Lexer
0 (*===----------------------------------------------------------------------=== module
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dlexer.ml2 * Lexer
0 (*===----------------------------------------------------------------------=== module
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dlexer.ml2 * Lexer
0 (*===----------------------------------------------------------------------=== module
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dlexer.ml2 * Lexer
0 (*===----------------------------------------------------------------------=== module
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DLexer.as31 * lexer grammars result in a subclass of this object. A Lexer object
35 public class Lexer extends BaseRecognizer implements TokenSource {
39 public function Lexer(input:CharStream = null, state:RecognizerSharedState = null) { function
46 // wack Lexer state variables
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DLexer.java38 * Lexer class for the parser.
46 public class Lexer extends LexerCore { class in inherits:LexerCore
68 public Lexer(String lexerName, String buffer) { method in class:Lexer
/external/nist-sip/java/gov/nist/core/
H A DHostNameParser.java37 //import gov.nist.javax.sdp.parser.Lexer;
52 private static LexerCore Lexer; field in class:HostNameParser
225 int hostEnd = uriHeader.indexOf(Lexer.QUESTION);
229 int semiColonIndex = uriHeader.indexOf(Lexer.SEMICOLON);
242 int firstColonIndex = host.indexOf(Lexer.COLON);
247 int secondColonIndex = host.indexOf(Lexer.COLON, firstColonIndex + 1);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLexer.cs39 * lexer grammars result in a subclass of this object. A Lexer object
44 public abstract class Lexer : BaseRecognizer, ITokenSource class in namespace:Antlr.Runtime
49 public Lexer() method in class:Antlr.Runtime.Lexer
53 public Lexer( ICharStream input ) method in class:Antlr.Runtime.Lexer
58 public Lexer( ICharStream input, RecognizerSharedState state ) method in class:Antlr.Runtime.Lexer
109 // wack Lexer state variables
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DLexer.pm1 package ANTLR::Runtime::Lexer;
29 # wack Lexer state variables
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-lexer.rb86 class Lexer < ANTLR3::Lexer class in class:ANTLR3.Template.GroupFile
977 end # class Lexer < ANTLR3::Lexer
979 at_exit { Lexer.main( ARGV ) } if __FILE__ == $0
/external/llvm/include/llvm/MC/
H A DMCTargetAsmLexer.h1 //===-- llvm/MC/MCTargetAsmLexer.h - Target Assembly Lexer ------*- C++ -*-===//
41 MCAsmLexer *Lexer; member in class:llvm::MCTargetAsmLexer
50 Lexer = &L;
54 return Lexer;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DLexer.cs38 * lexer grammars result in a subclass of this object. A Lexer object
43 public abstract class Lexer : BaseRecognizer, ITokenSource { class in namespace:Antlr.Runtime
47 public Lexer() { method in class:Antlr.Runtime.Lexer
50 public Lexer(ICharStream input) { method in class:Antlr.Runtime.Lexer
54 public Lexer(ICharStream input, RecognizerSharedState state) method in class:Antlr.Runtime.Lexer
93 // wack Lexer state variables
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DLexer.java31 * lexer grammars result in a subclass of this object. A Lexer object
35 public abstract class Lexer extends BaseRecognizer implements TokenSource { class in inherits:BaseRecognizer,TokenSource
39 public Lexer() { method in class:Lexer
42 public Lexer(CharStream input) { method in class:Lexer
46 public Lexer(CharStream input, RecognizerSharedState state) { method in class:Lexer
53 // wack Lexer state variables
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DLexer.java19 * $Id: Lexer.java 524810 2007-04-02 15:51:55Z zongaro $
32 class Lexer class
73 * Create a Lexer object.
80 Lexer(Compiler compiler, PrefixResolver resolver, method in class:Lexer
/external/clang/include/clang/Lex/
H A DLexer.h1 //===--- Lexer.h - C Language Family Lexer ----------------------*- C++ -*-===//
10 // This file defines the Lexer interface.
42 /// Lexer - This provides a simple interface that turns a text buffer into a
46 class Lexer : public PreprocessorLexer { class in namespace:clang
73 // in Lexer::isNextPPTokenLParen.
86 Lexer(const Lexer&); // DO NOT IMPLEMENT
87 void operator=(const Lexer&); // DO NOT IMPLEMENT
93 /// Lexer constructo
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DLexer.h40 class Lexer { class in namespace:JSC
41 WTF_MAKE_NONCOPYABLE(Lexer); WTF_MAKE_FAST_ALLOCATED;
91 Lexer(JSGlobalData*);
92 ~Lexer();
150 inline bool Lexer::isWhiteSpace(int ch)
155 inline bool Lexer::isLineTerminator(int ch)
160 inline unsigned char Lexer::convertHex(int c1, int c2)
165 inline UChar Lexer::convertUnicode(int c1, int c2, int c3, int c4)
H A DLexer.cpp25 #include "Lexer.h"
44 #include "Lexer.lut.h"
224 Lexer::Lexer(JSGlobalData* globalData) function in class:JSC::Lexer
231 Lexer::~Lexer()
236 ALWAYS_INLINE const UChar* Lexer::currentCharacter() const
242 ALWAYS_INLINE int Lexer::currentOffset() const
247 void Lexer::setCode(const SourceCode& source, ParserArena& arena)
274 ALWAYS_INLINE void Lexer
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DLiteralParser.h63 class Lexer { class in class:JSC::LiteralParser
72 Lexer(const UString& s, ParserMode mode) function in class:JSC::LiteralParser::Lexer
105 LiteralParser::Lexer m_lexer;
/external/clang/include/clang/AST/
H A DCommentLexer.h1 //===--- CommentLexer.h - Lexer for structured comments ---------*- C++ -*-===//
27 class Lexer;
56 friend class Lexer;
216 void dump(const Lexer &L, const SourceManager &SM) const;
220 class Lexer { class in namespace:clang::comments
222 Lexer(const Lexer &) LLVM_DELETED_FUNCTION;
223 void operator=(const Lexer &) LLVM_DELETED_FUNCTION;
348 Lexer(llvm::BumpPtrAllocator &Allocator, const CommandTraits &Traits,
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Drecognizers.py92 # constantly in generated code and Lexer object) :(
1046 class Lexer(BaseRecognizer, TokenSource): class in inherits:BaseRecognizer, TokenSource
1051 lexer grammars result in a subclass of this object. A Lexer object
1075 # wack Lexer state variables
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Drecognizers.rb180 For all effective purposes, the class and its immediate subclasses Lexer,
911 =begin rdoc ANTLR3::Lexer
913 = Lexer
915 Lexer is the default superclass of all lexers generated by ANTLR. The class
938 == ANTLR Lexers and the Lexer API
954 class Lexer < ANTLR3::Lexer class in class:ANTLR3.Hypothetical
975 lexer = Hypothetical::Lexer.new( input )
983 lexer = Hypothetical::Lexer.new("some hypothetical source code", :file => 'blah-de-blah.hyp')
987 class Lexer < Recognize class in class:ANTLR3.Hypothetical.Lexer.Hypothetical.Parser
[all...]

Completed in 476 milliseconds

12