HomeSort by relevance Sort by last modified time
    Searched refs:ANTLR3 (Results 26 - 50 of 77) sorted by null

12 3 4

  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
rule-methods.rb 4 require 'antlr3/test/functional'
6 class TestParameters < ANTLR3::Test::Functional
55 class TestMultipleReturnValues < ANTLR3::Test::Functional
111 class TestRuleVisibility < ANTLR3::Test::Functional
basic.rb 4 require 'antlr3/test/functional'
6 class TestParser001 < ANTLR3::Test::Functional
37 input = ANTLR3::StringStream.new( 'blah_de_blah', :file => 'blah.txt' )
39 tokens = ANTLR3::CommonTokenStream.new( lexer )
73 class TestParser002 < ANTLR3::Test::Functional
155 class TestParser003 < ANTLR3::Test::Functional
properties.rb 4 require 'antlr3/test/functional'
6 class TestRulePropertyReference < ANTLR3::Test::Functional
53 class TestLabels < ANTLR3::Test::Functional
106 class TestTokenLabelReference < ANTLR3::Test::Functional
174 class TestRuleLabelReference < ANTLR3::Test::Functional
225 class TestReferenceDoesntSetChannel < ANTLR3::Test::Functional
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
ast-builder.rb 3 require 'antlr3'
4 require 'antlr3/tree'
6 module ANTLR3
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
main.rb 35 require 'antlr3'
37 module ANTLR3
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 => erro
    [all...]
error.rb 35 # ANTLR3 exception hierarchy
36 # - ported from the ANTLR3 Python Runtime library by
38 module ANTLR3
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::CommonTokenStream.new( lexer
    [all...]
token.rb 35 module ANTLR3
37 =begin rdoc ANTLR3::Token
63 checking, it's a good idea to include this ANTLR3::Token into your customized
69 include ANTLR3::Constants
216 =begin rdoc ANTLR3::CommonToken
295 =begin rdoc ANTLR3::TokenSource
337 =begin rdoc ANTLR3::TokenFactory
345 ANTLR3::CommonToken). Token classes are presumed to have an #initialize method
347 have the standard token attributes (see ANTLR3::Token).
357 ANTLR3::CommonToke
    [all...]
template.rb 5 require 'antlr3'
7 module ANTLR3
16 @template_library ||= ANTLR3::Template::Group.new
25 ANTLR3::Template::Group.load( group_file )
40 self.class.template_library or ANTLR3::Template::Group.new
76 | to a ANTLR3::TokenStream object as #{ self.class }
88 autoload :GroupFile, 'antlr3/template/group-file'
91 autoload :Lexer, 'antlr3/template/group-file'
92 autoload :Parser, 'antlr3/template/group-file'
109 input = ANTLR3::FileStream.new( group_file, options
    [all...]
debug.rb 4 require 'antlr3'
37 module ANTLR3
39 =begin rdoc ANTLR3::Debug
50 # section of the antlr3 runtime library, most of which
54 autoload :EventSocketProxy, 'antlr3/debug/socket'
55 autoload :RemoteEventSocketListener, 'antlr3/debug/socket'
56 autoload :TraceEventListener, 'antlr3/debug/trace-event-listener'
57 autoload :RecordEventListener, 'antlr3/debug/record-event-listener'
58 autoload :RuleTracer, 'antlr3/debug/rule-tracer'
59 autoload :EventHub, 'antlr3/debug/event-hub
    [all...]
tree.rb 35 require 'antlr3'
37 module ANTLR3
39 =begin rdoc ANTLR3::AST
48 autoload :Wizard, 'antlr3/tree/wizard'
49 autoload :Visitor, 'antlr3/tree/visitor'
55 =begin rdoc ANTLR3::AST::TreeParser
107 main = ANTLR3::Main::WalkerMain.new( self, options )
190 =begin rdoc ANTLR3::AST::Tree
303 =begin rdoc ANTLR3::AST::BaseTree
448 =begin rdoc ANTLR3::AST::CommonTre
    [all...]
constants.rb 35 module ANTLR3
38 =begin rdoc ANTLR3::Constants
61 # built-in token types used internally by ANTLR3
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-scheme.rb 3 require 'antlr3'
7 include ANTLR3
test-template.rb 5 require 'antlr3/template'
6 require 'antlr3/util'
8 include ANTLR3
74 include ANTLR3::Util
129 include ANTLR3::Util
133 extend ANTLR3::Util
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
trace-event-listener.rb 4 module ANTLR3
6 =begin rdoc ANTLR3::Debug::EventListener
20 @adaptor = adaptor ||= ANTLR3::AST::CommonTreeAdaptor.new
92 end # module ANTLR3
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
debug.rb 4 module ANTLR3
6 =begin rdoc ANTLR3::Debug::TreeAdaptor
104 =begin rdoc ANTLR3::Debug::TreeNodeStream
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
template-output.rb 4 require 'antlr3/test/functional'
6 class TestTemplateOutput < ANTLR3::Test::Functional
29 ANTLR3::Template::Group.parse( source.fixed_indent( 0 ) )
55 templates = ANTLR3::Template::Group.new do
179 templates = ANTLR3::Template::Group.new do
395 tokens = ANTLR3::TokenRewriteStream.new( lexer )
398 nodes = ANTLR3::AST::CommonTreeNodeStream.new( tree )
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
interactive.rb 4 module ANTLR3
6 =begin rdoc ANTLR3::Main::InteractiveStringStream
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
parameter.rb 3 module ANTLR3
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
rule-tracing.rb 4 require 'antlr3/test/functional'
6 class TestRuleTracing < ANTLR3::Test::Functional
profile-mode.rb 4 require 'antlr3/test/functional'
6 class TestProfileMode < ANTLR3::Test::Functional
127 tokens = ANTLR3::CommonTokenStream.new( lexer )
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
filter-mode.rb 4 require 'antlr3/test/functional'
6 class TestFilterMode < ANTLR3::Test::Functional
98 class TestFuzzy < ANTLR3::Test::Functional
108 include ANTLR3::Test::CaptureOutput
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
rewrites.rb 4 require 'antlr3/test/functional'
6 class TestASTViaRewriteRules < ANTLR3::Test::Functional
13 grammar_module::Lexer.send( :include, ANTLR3::Test::CollectErrors )
14 grammar_module::Lexer.send( :include, ANTLR3::Test::CaptureOutput )
15 grammar_module::Parser.send( :include, ANTLR3::Test::CollectErrors )
16 grammar_module::Parser.send( :include, ANTLR3::Test::CaptureOutput )
41 grammar_module::Lexer.send( :include, ANTLR3::Test::CollectErrors )
42 grammar_module::Lexer.send( :include, ANTLR3::Test::CaptureOutput )
43 grammar_module::Parser.send( :include, ANTLR3::Test::CollectErrors )
44 grammar_module::Parser.send( :include, ANTLR3::Test::CaptureOutput
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
Ruby.stg 41 Failed to load the ANTLR3 runtime library (version <runtimeLibraryVersion()>):
47 gem install antlr3
55 defined?( ANTLR3 ) or begin
57 # 1: try to load the ruby antlr3 runtime library from the system path
58 require 'antlr3'
69 # 3: try to activate the antlr3 gem
71 Gem.activate( 'antlr3', '~> <runtimeLibraryVersion()>' )
76 require 'antlr3'
104 const_defined?( :TokenData ) or TokenData = ANTLR3::TokenScheme.new
168 ASTLabelType="Object", superClass="ANTLR3::Parser", labelType="ANTLR3::Token"
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
functional.rb 4 require 'antlr3'
5 require 'antlr3/test/core-extensions'
6 require 'antlr3/test/grammar'
7 require 'antlr3/test/call-stack'
12 module ANTLR3
67 if ANTLR_JAR = ENV[ 'ANTLR_JAR' ] || ANTLR3.antlr_jar
231 end # module ANTLR3

Completed in 602 milliseconds

12 3 4