Home
last modified time | relevance | path

Searched refs:commandline (Results 1 – 25 of 97) sorted by relevance

1234

/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
DANTLR3.java67 private CommandlineJava commandline = new CommandlineJava(); field in ANTLR3
124 commandline.setVm(JavaEnvUtils.getJreExecutable("java")); in ANTLR3()
125 commandline.setClassname("org.antlr.Tool"); in ANTLR3()
334 return commandline.createClasspath(getProject()).createPath(); in createClasspath()
343 return commandline.createVmArgument(); in createJvmarg()
441 commandline.createArgument().setValue(target.toString()); in execute()
443 log(commandline.describeCommand(), Project.MSG_VERBOSE); in execute()
446 …err = run(commandline.getCommandline(), new LogOutputStream(this, Project.MSG_INFO), new LogOutput… in execute()
481 commandline.createArgument().setValue("-o"); in populateAttributes()
482 commandline.createArgument().setValue(outputDirectory.toString()); in populateAttributes()
[all …]
/external/autotest/site_utils/deployment/
Dcommandline_unittest.py7 from autotest_lib.site_utils.deployment import commandline
16 parser = commandline._ArgumentParser()
22 parser = commandline._ArgumentParser()
31 parser = commandline._ArgumentParser()
39 parser = commandline._ArgumentParser()
47 parser = commandline._ArgumentParser()
72 got = commandline.get_default_logdir_name(arguments)
/external/skqp/tools/skpbench/
Dskpbench.py80 def dump_commandline_if_verbose(commandline): argument
82 quoted = ['\'%s\'' % re.sub(r'([\\\'])', r'\\\1', x) for x in commandline]
131 commandline = cls.ARGV + ['--duration', '0']
132 dump_commandline_if_verbose(commandline)
133 out = subprocess.check_output(commandline, stderr=subprocess.STDOUT)
141 commandline = cls.ARGV + ['--duration', str(warmup_time * 1000),
144 dump_commandline_if_verbose(commandline)
145 output = subprocess.check_output(commandline, stderr=subprocess.STDOUT)
177 commandline = self.ARGV + ['--config', self.config,
183 commandline.extend(['--png', pngfile])
[all …]
/external/skia/tools/skpbench/
Dskpbench.py80 def dump_commandline_if_verbose(commandline): argument
82 quoted = ['\'%s\'' % re.sub(r'([\\\'])', r'\\\1', x) for x in commandline]
131 commandline = cls.ARGV + ['--duration', '0']
132 dump_commandline_if_verbose(commandline)
133 out = subprocess.check_output(commandline, stderr=subprocess.STDOUT)
141 commandline = cls.ARGV + ['--duration', str(warmup_time * 1000),
144 dump_commandline_if_verbose(commandline)
145 output = subprocess.check_output(commandline, stderr=subprocess.STDOUT)
177 commandline = self.ARGV + ['--config', self.config,
183 commandline.extend(['--png', pngfile])
[all …]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
DCommandLineSupport.java76 static List<String> split(final String commandline) { in split() argument
77 if (commandline == null || commandline.length() == 0) { in split()
84 for (final char c : commandline.toCharArray()) { in split()
/external/markdown/bin/
Dmarkdown34 from markdown import commandline
42 commandline.run()
/external/autotest/site_utils/
Ddump_suite_report.py15 from chromite.lib import commandline
21 parser = commandline.ArgumentParser(description=__doc__)
Drpc_flight_recorder.py20 from chromite.lib import commandline
261 parser = commandline.ArgumentParser(description=__doc__)
/external/parameter-framework/upstream/tools/xmlValidator/
DREADME.md12 To run xmlValidator, just start it from the commandline with:
56 And we will get the following output on the commandline:
/external/autotest/contrib/
Dsummarize_loadtest.py17 from chromite.lib import commandline
43 parser = commandline.ArgumentParser(description=__doc__)
Dfind_suite_tasks.py13 from chromite.lib import commandline
21 parser = commandline.ArgumentParser(description=__doc__)
/external/testng/src/test/java/test/commandline/
DOverrideSampleTest.java1 package test.commandline;
/external/syslinux/com32/cmenu/
DTODO2 - take the name of menu file to parse from commandline
/external/gflags/cmake/
DREADME_runtime.txt2 by applications that use these libraries for the commandline flags
/external/python/cpython3/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/
Dclasses.nib9 commandline = NSTextField;
/external/python/cpython2/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/
Dclasses.nib9 commandline = NSTextField;
/external/python/cpython3/Mac/PythonLauncher/English.lproj/MyDocument.nib/
Dclasses.nib9 commandline = NSTextField;
/external/python/cpython2/Mac/PythonLauncher/English.lproj/MyDocument.nib/
Dclasses.nib9 commandline = NSTextField;
/external/python/cpython3/Mac/PythonLauncher/
DMyDocument.h27 IBOutlet NSTextField *commandline; variable
DPreferencesWindowController.h20 IBOutlet NSTextField *commandline; variable
/external/python/cpython2/Mac/PythonLauncher/
DMyDocument.h27 IBOutlet NSTextField *commandline; variable
DPreferencesWindowController.h20 IBOutlet NSTextField *commandline; variable
/external/gflags/
DMETADATA3 "The gflags package contains a C++ library that implements commandline "
/external/python/cpython3/Mac/BuildScript/
Dbuild-installer.py521 def runCommand(commandline): argument
526 fd = os.popen(commandline, 'r')
531 raise RuntimeError("command failed: %s"%(commandline,))
536 def captureCommand(commandline): argument
537 fd = os.popen(commandline, 'r')
542 raise RuntimeError("command failed: %s"%(commandline,))
/external/python/cpython2/Mac/BuildScript/
Dbuild-installer.py549 def runCommand(commandline): argument
554 fd = os.popen(commandline, 'r')
559 raise RuntimeError("command failed: %s"%(commandline,))
564 def captureCommand(commandline): argument
565 fd = os.popen(commandline, 'r')
570 raise RuntimeError("command failed: %s"%(commandline,))

1234