HomeSort by relevance Sort by last modified time
    Searched refs:Command (Results 76 - 100 of 464) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/utils/analyzer/
SATestBuild.py 75 def which(command, paths = None):
76 """which(command, [paths]) - Look up the given command in the paths string
83 if os.path.exists(command):
84 return command
100 p = os.path.join(path, command + ext)
217 for Command in SBCommandFile:
218 Command = Command.strip()
222 if (Command.startswith("make ") or Command == "make") and
    [all...]
  /external/chromium_org/chrome/browser/net/
net_log_temp_file.h 45 enum Command {
53 // Accepts the button command and executes it.
54 void ProcessCommand(Command command);
  /external/chromium_org/tools/cr/cr/commands/
command.py 4 """Module to hold the Command plugin."""
11 class Command(cr.Plugin, cr.Plugin.Type):
14 These are the sub-commands on the command line, and modify the
22 """Called to select which command is active.
24 This picks a command based on the first non - argument on the command
27 the selected command, or None if not specified on the command line.
34 super(Command, self).__init__()
42 """Add arguments to the command line parser
    [all...]
install.py 5 """A module for the install command."""
10 class InstallCommand(cr.Command):
11 """The implementation of the install command.
15 The builder installs its command line arguments, and you can use those to
prepare.py 5 """A module for the prepare command."""
10 class PrepareCommand(cr.Command):
11 """The implementation of the prepare command.
13 The prepare command is used to perform the steps needed to get an output
shell.py 5 """A module for the shell command."""
13 class ShellCommand(cr.Command):
14 """The implementation of the shell command.
16 The shell command is the escape hatch that lets user run any program in the
27 If any arguments are present, they are used as a command line to run
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Compress.java 38 static public class Compressor extends Dicttool.Command {
39 public static final String COMMAND = "compress";
46 return COMMAND + " <src_filename> <dst_filename>: "
53 throw new RuntimeException("Too many arguments for command " + COMMAND);
67 static public class Uncompressor extends Dicttool.Command {
68 public static final String COMMAND = "uncompress";
75 return COMMAND + " <src_filename> <dst_filename>: "
82 throw new RuntimeException("Too many arguments for command " + COMMAND);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmat.h 27 LPWSTR Command;
36 LPWSTR Command;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
clean.py 1 """distutils.command.clean
3 Implements the Distutils 'clean' command."""
10 from distutils.core import Command
14 class clean(Command):
16 description = "clean up temporary files from 'build' command"
install_scripts.py 1 """distutils.command.install_scripts
3 Implements the Distutils 'install_scripts' command, for installing
11 from distutils.core import Command
15 class install_scripts (Command):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
clean.py 1 """distutils.command.clean
3 Implements the Distutils 'clean' command."""
10 from distutils.core import Command
14 class clean(Command):
16 description = "clean up temporary files from 'build' command"
install_scripts.py 1 """distutils.command.install_scripts
3 Implements the Distutils 'install_scripts' command, for installing
11 from distutils.core import Command
15 class install_scripts (Command):
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/
unisetperf.cpp 25 // Command-line options specific to unisetperf.
26 // Options do not have abbreviations: Force readable command lines.
133 class Command : public UPerfFunction {
135 Command(const UnicodeSetPerformanceTest &testcase) : testcase(testcase) {}
138 virtual ~Command() {}
155 class Contains : public Command {
157 Contains(const UnicodeSetPerformanceTest &testcase) : Command(testcase) {
205 class SpanUTF16 : public Command {
207 SpanUTF16(const UnicodeSetPerformanceTest &testcase) : Command(testcase) {
256 class SpanBackUTF16 : public Command {
    [all...]
  /external/icu/icu4c/source/test/perf/unisetperf/
unisetperf.cpp 25 // Command-line options specific to unisetperf.
26 // Options do not have abbreviations: Force readable command lines.
133 class Command : public UPerfFunction {
135 Command(const UnicodeSetPerformanceTest &testcase) : testcase(testcase) {}
138 virtual ~Command() {}
155 class Contains : public Command {
157 Contains(const UnicodeSetPerformanceTest &testcase) : Command(testcase) {
205 class SpanUTF16 : public Command {
207 SpanUTF16(const UnicodeSetPerformanceTest &testcase) : Command(testcase) {
256 class SpanBackUTF16 : public Command {
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 41 private static interface Command {
46 private ArrayList<Command> mCommands = new ArrayList<Command>();
58 for (Command command : mCommands) {
59 command.execute(this);
63 public void append(Command command) {
64 mCommands.add(command);
80 private static class ImportPackageCommand implements Command {
    [all...]
  /external/clang/lib/Driver/
Compilation.cpp 125 int Compilation::ExecuteCommand(const Command &C,
126 const Command *&FailingCommand) const {
170 typedef SmallVectorImpl< std::pair<int, const Command *> > FailingCommandList;
190 static bool InputsOk(const Command &C,
197 if (const Command *C = dyn_cast<Command>(&J)) {
200 const Command *FailingCommand = nullptr;
  /external/chromium_org/third_party/icu/source/test/perf/utfperf/
utfperf.cpp 43 // Command-line options specific to utfperf.
44 // Options do not have abbreviations: Force readable command lines.
120 class Command : public UPerfFunction {
122 Command(const UtfPerformanceTest &testcase)
133 virtual ~Command(){
151 class Roundtrip : public Command {
153 Roundtrip(const UtfPerformanceTest &testcase) : Command(testcase) {}
218 class FromUnicode : public Command {
220 FromUnicode(const UtfPerformanceTest &testcase) : Command(testcase) {}
263 class FromUTF8 : public Command {
    [all...]
  /external/icu/icu4c/source/test/perf/utfperf/
utfperf.cpp 43 // Command-line options specific to utfperf.
44 // Options do not have abbreviations: Force readable command lines.
120 class Command : public UPerfFunction {
122 Command(const UtfPerformanceTest &testcase)
133 virtual ~Command(){
151 class Roundtrip : public Command {
153 Roundtrip(const UtfPerformanceTest &testcase) : Command(testcase) {}
218 class FromUnicode : public Command {
220 FromUnicode(const UtfPerformanceTest &testcase) : Command(testcase) {}
263 class FromUTF8 : public Command {
    [all...]
  /external/chromium_org/content/browser/devtools/
devtools_power_handler.cc 54 scoped_refptr<DevToolsProtocol::Command> command) {
57 return command->SuccessResponse(NULL);
60 return command->InternalErrorResponse("Power profiler service unavailable");
64 DevToolsPowerHandler::OnEnd(scoped_refptr<DevToolsProtocol::Command> command) {
67 return command->SuccessResponse(NULL);
70 return command->InternalErrorResponse("Power profiler service unavailable");
75 scoped_refptr<DevToolsProtocol::Command> command) {
    [all...]
  /external/llvm/test/MC/MachO/ARM/
darwin-Thumb-reloc.s 32 @ CHECK: # Load Command 0
33 @ CHECK: (('command', 1)
88 @ CHECK: # Load Command 1
89 @ CHECK: (('command', 2)
115 @ CHECK: # Load Command 2
116 @ CHECK: (('command', 11)
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_manager_commands.js 12 cr.ui.Command.prototype.setHidden = function(value) {
17 * A command.
20 var Command = function() {};
24 * @param {Event} event Command event.
27 Command.prototype.execute = function(event, fileManager) {};
34 Command.prototype.canExecute = function(event, fileManager) {};
42 * Extracts entry on which command event was dispatched.
95 * Checks if command can be executed on drive.
96 * @param {Event} event Command event to mark.
104 * Sets the command as visible only when the current volume is drive and it'
    [all...]
  /external/chromium_org/chrome/browser/devtools/
chrome_devtools_manager_delegate.h 36 DevToolsProtocol::Command* command);
  /external/chromium_org/chrome/browser/ui/webui/extensions/
command_handler.h 25 class Command;
61 // for a given extension command.
65 // keyboard shortcut for a given extension command.
  /external/chromium_org/third_party/WebKit/Source/bindings/
PRESUBMIT.py 59 test_cmd = input_api.Command(
  /frameworks/av/services/audioflinger/
FastCapture.h 56 virtual bool isSubClassCommand(FastThreadState::Command command);

Completed in 1206 milliseconds

1 2 34 5 6 7 8 91011>>