Searched refs:join (Results 1 - 25 of 3049) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DTokenRewriteStream.js370 return buf.join("");
441 return buf.join("");
457 return buf.join("");
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A DPython.g569 var s = indentation.join("");
H A Drhino-python.extensions235 return buf.join(" ");
H A Drhino-python.prog22 return data.join("");
73 var actual = output.join("\n")+"\n";
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddebug.py995 self.transmit('\t'.join([
1012 self.transmit('\t'.join([
1127 return '\t'.join(buf)
H A Dstreams.py950 return ''.join([t.text for t in self.tokens[start:stop+1]])
H A Dtree.py654 % (', '.join(type(v).__name__ for v in args))
941 return ''.join(buf)
1387 ret += ' '.join([child.toStringTree() for child in self.children])
2100 return ' '.join([str(self.adaptor.getType(node))
2162 return ''.join(buf)
/external/antlr/antlr-3.4/runtime/Python/
H A Dez_setup.py114 saveto = os.path.join(to_dir, egg_name)
202 repl = "".join(data)
H A Dsetup.py36 path = os.path.join(os.path.dirname(__file__), path)
44 filePath = os.path.join(root, name)
83 testDir = os.path.join(os.path.dirname(__file__), 'unittests')
101 for testPath in glob.glob(os.path.join(testDir, 'test*.py')):
131 stream=open(os.path.join(self.xml_output, 'unittest.xml'), 'w'))
184 testDir = os.path.join(os.path.dirname(__file__), 'tests')
195 os.path.join(os.path.dirname(__file__), '..', '..'))
201 os.path.join(rootDir, 'tool', 'target', 'classes'),
202 os.path.join(rootDir, 'runtime', 'Java', 'target', 'classes')
206 os.path.join(rootDi
[all...]
H A Dxmlrunner.py171 stream = file(os.path.join(self._path, filename), "w")
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt012lexerXML.py49 ''.join([l.encode('ascii', 'backslashreplace') for l in r])
166 ## input = ''.join(input) # back to string
184 ## print '\n'.join(['%02d: %s' % (idx+1, l) for idx, l in enumerate(input.splitlines())])
H A Dt018llstar.py32 ''.join([l.encode('ascii', 'backslashreplace') for l in r])
55 ## input = ''.join(input) # back to string
72 ## print '\n'.join(['%02d: %s' % (idx+1, l) for idx, l in enumerate(input.splitlines())])
H A Dt020fuzzy.py35 ''.join([l.encode('ascii', 'backslashreplace') for l in r])
H A Dt059debug.py97 debugger.join()
H A Dtestbase.py30 testbasedir = os.path.join(
67 baseDir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..'))
68 libDir = os.path.join(baseDir, 'lib')
70 jar = os.path.join(libDir, 'ST-4.0.1.jar')
78 jar = os.path.join(libDir, 'antlr-2.7.7.jar')
86 jar = os.path.join(libDir, 'junit-4.2.jar')
94 cp.append(os.path.join(baseDir, 'runtime', 'Python', 'build'))
96 classpath = '-cp "' + ':'.join([os.path.abspath(p) for p in cp]) + '"'
125 raise AssertionError(''.join(difflib.unified_diff(a, b)))
150 self._baseDir = os.path.join(
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dteststreams.py250 path = os.path.join(os.path.dirname(__file__), 'teststreams.input1')
273 path = os.path.join(os.path.dirname(__file__), 'teststreams.input2')
H A Dtesttree.py389 return ' '.join(buf)
1347 return ' '.join(buf)
/external/antlr/antlr-3.4/runtime/Ruby/lib/
H A Dantlr3.rb107 DATA_PATH = ::File.join( PROJECT_PATH, 'java' ).freeze
114 # <tt>File.join</tt>.
117 ::File.expand_path( ::File.join( LIBRARY_PATH, *args ) )
122 # <tt>File.join</tt>.
125 ::File.expand_path( ::File.join( DATA_PATH, *args ) )
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb60 log!( " - %s", error.backtrace.join( "\n - " ) )
235 escape_newlines( token.text ) ].join( "\t" )
246 [ id, type, line, col, index ].join( "\t" )
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddot.rb78 | <%= @nodes.join("\n ") %>
79 | <%= @edges.join("\n ") %>
H A Dprofile.rb350 $stderr.puts( error.backtrace.map { |call| " - #{ call }" }.join( "\n" ) )
H A Drecognizers.rb161 end.join( ', ' )
164 super( #{ names.join( ', ' ) } )
H A Dstreams.rb1084 @tokens[ start..stop ].map! { |t| t.text }.join( '' )
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb397 return( self[ start..finish ].map { |t| t.text }.join( '' ) )

Completed in 874 milliseconds

1234567891011>>