Searched defs:ANTLR3 (Results 1 - 25 of 36) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dversion.rb4 module ANTLR3 module
H A Dconstants.rb35 module ANTLR3 module
38 =begin rdoc ANTLR3::Constants
61 # built-in token types used internally by ANTLR3
H A Ddfa.rb35 module ANTLR3 module
37 =begin rdoc ANTLR3::DFA
224 ANTLR3.bug!( Util.tidy( <<-END ) )
288 ANTLR3.bug!( Util.tidy( <<-END ) )
H A Ddot.rb38 module ANTLR3 module
40 =begin rdoc ANTLR3::DOT
H A Dutil.rb4 module ANTLR3 module
H A Dmain.rb37 module ANTLR3 module
39 =begin rdoc ANTLR3::Main
48 =begin rdoc ANTLR3::Main::Options
111 =begin rdoc ANTLR3::Main::Main
145 ANTLR3::FileStream.new( args[ 0 ] )
146 else ANTLR3::FileStream.new( @input )
312 =begin rdoc ANTLR3::Main::LexerMain
330 if token.nil? || token.type == ANTLR3::EOF then break
333 rescue ANTLR3::RecognitionError => error
342 when ANTLR3
[all...]
H A Derror.rb35 # ANTLR3 exception hierarchy
36 # - ported from the ANTLR3 Python Runtime library by
38 module ANTLR3 module
47 =begin rdoc ANTLR3::Error::BacktrackingFailed
96 =begin rdoc ANTLR3::Error::RecognitionError
106 include ANTLR3::Constants
207 =begin rdoc ANTLR3::Error::MismatchedToken
230 =begin rdoc ANTLR3::Error::UnwantedToken
248 =begin rdoc ANTLR3::Error::MissingToken
282 tokens = ANTLR3
[all...]
H A Dprofile.rb35 module ANTLR3 module
37 =begin rdoc ANTLR3::Profile::ParserEvents
39 ANTLR3::Profile::ParserEvents expands basic debugging events for use by
45 include ANTLR3::Debug::ParserEvents
186 =begin rdoc ANTLR3::Profile::Profiler
H A Dstreams.rb35 module ANTLR3 module
38 =begin rdoc ANTLR3::Stream
40 = ANTLR3 Streams
43 recognizers, and then discusses the specific <tt>ANTLR3::Stream</tt> module.
143 <tt>ANTLR3::Stream</tt> is an abstract-ish base mixin for all IO-like stream
161 it is not strictly necessary that custom stream objects include ANTLR3::Stream,
167 include ANTLR3::Constants
224 =begin rdoc ANTLR3::CharacterStream
270 =begin rdoc ANTLR3::TokenStream
340 =begin rdoc ANTLR3
[all...]
H A Dtask.rb10 module ANTLR3 module
12 =begin rdoc ANTLR3::CompileTask
21 ANTLR3::CompileTask.define(
136 @antlr_jar = options.fetch( :antlr_jar, ANTLR3.antlr_jar )
488 end # module ANTLR3
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file.rb13 module ANTLR3 module
H A Dparameter.rb3 module ANTLR3 module
H A Dgroup-file-parser.rb19 Failed to load the ANTLR3 runtime library (version 1.7.5):
33 defined?( ANTLR3 ) or begin
63 module ANTLR3 module
73 const_defined?( :TokenData ) or TokenData = ANTLR3::TokenScheme.new
96 class Parser < ANTLR3::Parser
120 unless group.is_a?( ANTLR3::Template::Group )
124 group = ANTLR3::Template::Group.new
204 group = ANTLR3::Template::Group.new
229 rescue ANTLR3::Error::RecognitionError => re
304 rescue ANTLR3
[all...]
H A Dgroup-file-lexer.rb19 Failed to load the ANTLR3 runtime library (version 1.7.5):
33 defined?( ANTLR3 ) or begin
63 module ANTLR3 module
73 const_defined?( :TokenData ) or TokenData = ANTLR3::TokenScheme.new
86 class Lexer < ANTLR3::Lexer
119 channel = ANTLR3::DEFAULT_CHANNEL
143 channel = ANTLR3::DEFAULT_CHANNEL
167 channel = ANTLR3::DEFAULT_CHANNEL
191 channel = ANTLR3::DEFAULT_CHANNEL
215 channel = ANTLR3
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Drecord-event-listener.rb4 module ANTLR3 module
7 =begin rdoc ANTLR3::Debug::RecordEventListener
25 end # module ANTLR3
H A Drule-tracer.rb4 module ANTLR3 module
6 =begin rdoc ANTLR3::Debug::RuleTracer
H A Dtrace-event-listener.rb4 module ANTLR3 module
6 =begin rdoc ANTLR3::Debug::EventListener
20 @adaptor = adaptor ||= ANTLR3::AST::CommonTreeAdaptor.new
92 end # module ANTLR3
H A Devent-hub.rb4 module ANTLR3 module
6 =begin rdoc ANTLR3::Debug::EventHub
15 include ANTLR3::Debug::EventListener
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
H A Dfilter.rb6 module ANTLR3 module
7 =begin rdoc ANTLR3::FilterMode
14 See http://www.antlr.org/wiki/display/ANTLR3/Lexical+filters for more info on
21 @input.peek == ANTLR3::EOF and return ANTLR3::EOF_TOKEN
24 @state.channel = ANTLR3::DEFAULT_CHANNEL
36 rescue ANTLR3::BacktrackingFailed
42 rescue ANTLR3::Error::RecognitionError => re
H A Dast-builder.rb6 module ANTLR3 module
/external/antlr/antlr-3.4/runtime/Ruby/lib/
H A Dantlr3.rb35 =begin rdoc ANTLR3
44 Not all components of the ANTLR3 library are necessary within ANTLR generated
51 The following list gives a brief introduction to each component of the ANTLR3
100 module ANTLR3 module
130 # under normal usage conditions and thus an ANTLR3::Bug error will be
198 end # module ANTLR3
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Dvisitor.rb35 module ANTLR3 module
38 =begin rdoc ANTLR3::AST::Visitor
H A Ddebug.rb4 module ANTLR3 module
6 =begin rdoc ANTLR3::Debug::TreeAdaptor
104 =begin rdoc ANTLR3::Debug::TreeNodeStream
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Dinteractive.rb4 module ANTLR3 module
6 =begin rdoc ANTLR3::Main::InteractiveStringStream
H A Drewrite.rb35 module ANTLR3 module
37 =begin rdoc ANTLR3::TokenRewriteStream
49 =begin rdoc ANTLR3::TokenRewriteStream::RewriteOperation
95 =begin rdoc ANTLR3::TokenRewriteStream::InsertBefore
118 =begin rdoc ANTLR3::TokenRewriteStream::Replace
156 =begin rdoc ANTLR3::TokenRewriteStream::Delete
264 ANTLR3.bug!( Util.tidy( <<-END ) % [ self.class, operation, other_operaiton ] )

Completed in 131 milliseconds

12