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

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
install_headers.py 1 """distutils.command.install_headers
3 Implements the Distutils 'install_headers' command, to install C/C++ header
8 from distutils.core import Command
12 class install_headers(Command):
  /external/chromium_org/chrome/browser/extensions/api/commands/
commands.cc 13 const extensions::Command& command, bool active) {
15 result->SetString("name", command.command_name());
16 result->SetString("description", command.description());
18 active ? command.accelerator().GetShortcutText() :
31 extensions::Command browser_action;
40 extensions::Command page_action;
56 extensions::Command command = command_service->FindCommandByName( local
58 ui::Accelerator shortcut_assigned = command.accelerator()
    [all...]
command_service.cc 58 std::string key = Command::CommandPlatform() + ":" +
59 Command::AcceleratorToString(accelerator);
65 if (Command::IsMediaKey(accelerator))
72 return StartsWithASCII(key, Command::CommandPlatform() + ":", true);
167 Command* command,
170 extension_id, type, command, active, BROWSER_ACTION);
175 Command* command,
178 extension_id, type, command, active, PAGE_ACTION)
205 Command command = iter->second; local
315 Command command = FindCommandByName(extension_id, command_name); local
330 Command command = FindCommandByName(extension_id, command_name); local
519 const Command command = iter->second; local
607 const Command command = iter->second; local
789 std::string command; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/libgl-xlib/
SConscript 59 env.Command(libgl_1, libgl_1_5, "ln -sf ${SOURCE.file} ${TARGET}")
60 env.Command(libgl, libgl_1, "ln -sf ${SOURCE.file} ${TARGET}")
  /external/mesa3d/src/gallium/targets/libgl-xlib/
SConscript 59 env.Command(libgl_1, libgl_1_5, "ln -sf ${SOURCE.file} ${TARGET}")
60 env.Command(libgl, libgl_1, "ln -sf ${SOURCE.file} ${TARGET}")
  /packages/apps/Mms/src/com/android/mms/transaction/
NotificationPlayer.java 48 private static final class Command {
64 private LinkedList<Command> mCmdQueue = new LinkedList<Command>();
75 public Command mCmd;
76 public CreationAndCompletionThread(Command cmd) {
122 private void startSound(Command cmd) {
165 Command cmd = null;
194 Log.w(mTag, "STOP command without a player");
274 Command cmd = new Command();
    [all...]
  /external/chromium_org/chrome/test/chromedriver/server/
http_handler.h 18 #include "chrome/test/chromedriver/command.h"
51 const Command& command);
56 Command command; member in struct:CommandMapping
83 Command WrapToCommand(const char* name,
85 Command WrapToCommand(const char* name, const WindowCommand& window_command);
86 Command WrapToCommand(const char* name,
126 const CommandMapping& command,
  /external/clang/include/clang/AST/
CommentSema.h 58 /// AST node for the \\brief command and its aliases.
61 /// AST node for the \\headerfile command.
99 void actOnBlockCommandArgs(BlockCommandComment *Command,
102 void actOnBlockCommandFinish(BlockCommandComment *Command,
110 void actOnParamCommandDirectionArg(ParamCommandComment *Command,
115 void actOnParamCommandParamNameArg(ParamCommandComment *Command,
120 void actOnParamCommandFinish(ParamCommandComment *Command,
128 void actOnTParamCommandParamNameArg(TParamCommandComment *Command,
133 void actOnTParamCommandFinish(TParamCommandComment *Command,
189 void checkBlockCommandEmptyParagraph(BlockCommandComment *Command);
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
commands.js 8 * Command queue is the only way to modify images.
10 * Command execution is asynchronous (callback-based).
47 * Attach the UI elements to the command queue.
74 * @return {boolean} True if the command queue is busy.
91 ImageUtil.trace.resetTimer('command-busy');
111 ImageUtil.trace.reportTimer('command-busy');
125 * Internal function to execute the command in a given context.
127 * @param {Command} command The command to execute
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
commands.js 8 * Command queue is the only way to modify images.
10 * Command execution is asynchronous (callback-based).
47 * Attach the UI elements to the command queue.
74 * @return {boolean} True if the command queue is busy.
91 ImageUtil.trace.resetTimer('command-busy');
111 ImageUtil.trace.reportTimer('command-busy');
125 * Internal function to execute the command in a given context.
127 * @param {Command} command The command to execute
    [all...]
  /external/chromium_org/chrome/common/extensions/api/commands/
commands_handler.cc 10 #include "chrome/common/extensions/command.h"
31 const Command* CommandsInfo::GetBrowserActionCommand(
39 const Command* CommandsInfo::GetPageActionCommand(const Extension* extension) {
81 const base::DictionaryValue* command = NULL; local
82 if (!iter.value().GetAsDictionary(&command)) {
89 scoped_ptr<extensions::Command> binding(new Command());
90 if (!binding->Parse(command, iter.key(), command_index, error))
97 if (!Command::IsMediaKey(binding->accelerator()))
138 new Command(manifest_values::kBrowserActionCommandEvent
    [all...]
commands_manifest_unittest.cc 45 const Command* named_command = &(*iter).second;
51 const Command* browser_action =
59 const Command* page_action =
91 // An extension with a browser action but no extension command specified
92 // should get a command assigned to it.
93 const extensions::Command* command = local
95 ASSERT_TRUE(command != NULL);
96 ASSERT_EQ(ui::VKEY_UNKNOWN, command->accelerator().key_code());
  /external/chromium_org/tools/cr/cr/commands/
build.py 10 class BuildCommand(cr.Command):
11 """The implementation of the build command.
36 class CleanCommand(cr.Command):
37 """The implementation of the clean command.
60 class RebuildCommand(cr.Command):
61 """The implementation of the rebuild command.
select.py 5 """A module for the select command."""
14 class SelectCommand(cr.Command):
15 """The implementation of the select command.
17 The select command is used to set the default output directory used by all
50 This is also called by the init command to auto select the new output
  /external/chromium_org/tools/cr/
main.py 22 command.
31 # Build the command context
41 for command in cr.Command.Plugins():
42 cr.context.AddSubParser(command)
44 # test for the special autocomplete command
52 # At this point we should know what command we are going to use
53 command = cr.Command.GetActivePlugin()
55 if command
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/
command_line.py 12 """A structured way to handle command-line arguments.
14 In AddCommandLineArgs, add command-line arguments.
22 """Override to accept custom command-line arguments."""
26 """Override to process command-line arguments.
31 class Command(ArgumentHandlerMixIn):
32 """An abstraction for things that run from the command-line."""
50 """Main method to run this command as a standalone script."""
59 class OptparseCommand(Command):
72 """Main method to run this command as a standalone script."""
81 class SubcommandCommand(Command)
    [all...]
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 10 // Construct a compiler invocation object for command line driver arguments
28 /// a command line argument vector.
63 // We expect to get back exactly one command job, if we didn't something
66 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) {
74 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin());
  /external/chromium_org/chrome/browser/devtools/
devtools_protocol.cc 37 DevToolsProtocol::Command::Command(int id,
44 DevToolsProtocol::Command::~Command() {
47 std::string DevToolsProtocol::Command::Serialize() {
48 base::DictionaryValue command; local
49 command.SetInteger(kIdParam, id_);
50 command.SetString(kMethodParam, method_);
52 command.Set(kParamsParam, params_->DeepCopy());
55 base::JSONWriter::Write(&command, &json_command)
    [all...]
  /external/chromium_org/net/tools/tld_cleanup/
PRESUBMIT.py 19 test_cmd = input_api.Command(
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditorKeyBindings.cpp 45 Command command = this->command(commandName); local
53 if (command.isTextInsertion() || commandName.isEmpty())
55 return command.execute(evt);
58 if (command.execute(evt))
  /external/chromium_org/third_party/brotli/src/brotli/enc/
histogram.cc 23 #include "./command.h"
30 const std::vector<Command>& cmds,
45 const Command &cmd = cmds[i];
69 const std::vector<Command>& cmds,
79 const Command &cmd = cmds[i];
  /external/chromium_org/ui/views/examples/
widget_example.h 30 enum Command {
  /external/clang/include/clang/Driver/
Compilation.h 97 void addCommand(Command *C) { Jobs.addJob(C); }
161 /// ExecuteCommand - Execute an actual command.
164 /// Command which failed, if any.
166 int ExecuteCommand(const Command &C, const Command *&FailingCommand) const;
173 SmallVectorImpl< std::pair<int, const Command *> > &FailingCommands) const;
  /external/lzma/Java/SevenZip/
LzmaAlone.java 11 public int Command = -1;
107 Command = kEncode;
109 Command = kDecode;
111 Command = kBenchmak;
117 if (Command == kBenchmak)
177 System.out.println("\nIncorrect command");
181 if (params.Command == CommandLine.kBenchmak)
190 else if (params.Command == CommandLine.kEncode || params.Command == CommandLine.kDecode)
201 if (params.Command == CommandLine.kEncode)
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Makedict.java 26 public class Makedict extends Dicttool.Command {
27 public static final String COMMAND = "makedict";

Completed in 1874 milliseconds

1 23 4 5 6 7 8 91011>>