Searched defs:commands (Results 1 - 25 of 140) sorted by relevance

123456

/external/chromium_org/tools/gn/
H A Dcommand_format_unittest.cc8 #include "tools/gn/commands.h"
10 namespace commands { namespace
14 } // namespace commands
20 EXPECT_TRUE(commands::FormatFileToString( \
H A Dcommands.h20 namespace commands { namespace
81 // Helper functions for some commands ------------------------------------------
117 } // namespace commands
H A Dcommand_check.cc5 #include "tools/gn/commands.h"
11 namespace commands { namespace
103 } // namespace commands
H A Dcommand_help.cc9 #include "tools/gn/commands.h"
19 namespace commands { namespace
26 const commands::CommandInfoMap& command_map = commands::GetCommands();
27 for (commands::CommandInfoMap::const_iterator i = command_map.begin();
118 // Check commands.
119 const commands::CommandInfoMap& command_map = commands::GetCommands();
120 commands::CommandInfoMap::const_iterator found_command =
184 } // namespace commands
[all...]
H A Dcommand_ls.cc9 #include "tools/gn/commands.h"
15 namespace commands { namespace
121 } // namespace commands
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/
H A Dirc.js3 * subset of the IRC commands are implemented. To be functional, IRCConnection
33 sendCommand(commands.JOIN, [channel], "");
37 sendCommand(commands.PRIVMSG, [recipient], message);
41 sendCommand(commands.PART, [channel], "");
45 sendCommand(commands.QUIT, [], message);
56 sendCommand(commands.NICK, [this.nick], "");
57 sendCommand(commands.USER,
71 if (parsed.command == commands.PING) {
72 sendCommand(commands.PONG, [], parsed.body);
77 if (parsed.command == commands
[all...]
/external/lldb/examples/python/
H A Dstacks.py4 import commands namespace
H A Dcmdtemplate.py13 import commands namespace
74 # Add any commands contained in this module to LLDB
H A Dglobals.py12 import commands namespace
H A Ddelta.py7 # print out statistics about how long commands took to execute and also
19 import commands namespace
29 in order to dump out the commands.'''
49 # Any commands whose names might be followed by more valid C identifier
74 for GDB remote commands to make a send/receive round trip. This can be
76 a long time during a preset set of debugger commands.'''
113 # Add any commands contained in this module to LLDB
/external/chromium_org/chrome/browser/chromeos/system_logs/
H A Dcommand_line_log_source.cc25 std::vector<std::pair<std::string, CommandLine> > commands; local
30 commands.push_back(std::make_pair("alsa controls", command));
35 commands.push_back(std::make_pair("cras", command));
38 commands.push_back(std::make_pair("audio_diagnostics", command));
52 commands.push_back(std::make_pair("cras_rms", command));
56 commands.push_back(std::make_pair("env", command));
61 commands.push_back(std::make_pair("setxkbmap", command));
66 commands.push_back(std::make_pair("xinput", command));
70 commands.push_back(std::make_pair("xrandr", command));
78 commands
[all...]
H A Dtouch_log_source.cc32 std::vector<std::pair<std::string, CommandLine> > commands; local
36 commands.push_back(std::make_pair("hack-33025-touchpad", command));
40 commands.push_back(std::make_pair("hack-33025-touchpad_activity", command));
44 commands.push_back(
47 for (size_t i = 0; i < commands.size(); ++i) {
49 base::GetAppOutput(commands[i].second, &output);
50 (*response)[commands[i].first] = output;
/external/smack/src/org/jivesoftware/smackx/commands/
H A DLocalCommandFactory.java20 package org.jivesoftware.smackx.commands;
23 * A factory for creating local commands. It's useful in cases where instantiation
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/
H A Dchrome_test.py7 import common, commands, logging, os namespace
/external/chromium_org/third_party/skia/debugger/QT/
H A DSkImageWidget.cpp35 const SkTDArray<SkDrawCommand*>& commands = fDebugger->getDrawCommands(); local
36 if (0 != commands.count()) {
37 SkDrawCommand* command = commands[fDebugger->index()];
/external/chromium_org/v8/test/fuzz-natives/
H A Dtestcfg.py7 from testrunner.local import commands namespace
21 output = commands.Execute(
/external/lldb/scripts/
H A Dverify_api.py3 import commands namespace
12 (command_exit_status, command_output) = commands.getstatusoutput(command)
/external/skia/debugger/QT/
H A DSkImageWidget.cpp39 const SkTDArray<SkDrawCommand*>& commands = fDebugger->getDrawCommands(); local
40 if (0 != commands.count()) {
41 SkDrawCommand* command = commands[fDebugger->index()];
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.commands_3.6.0.I20100512-1500.jar ... properties org/ org/eclipse/ org/eclipse/core/ org/eclipse/core/commands/ org/eclipse/core/commands/AbstractHandler.class AbstractHandler.java ...
/external/chromium_org/media/tools/constrained_network_server/
H A Dtraffic_control_unittest.py16 # Stores commands called by the traffic control _Exec function.
17 commands = [] variable in class:TrafficControlUnitTests
20 """Mocks traffic_control._Exec and adds the command to commands list."""
22 self.commands.append(' '.join(cmd_list))
26 """Resets the commands list and set the _Exec mock function."""
27 self.commands = []
58 self.assertEqual(expected, self.commands)
81 self.assertEqual(expected, self.commands)
104 self.assertEqual(expected, self.commands)
116 self.assertEqual(expected, self.commands)
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
H A Dmain.py36 from webkitpy.tool import commands namespace
60 # FIXME: This may be unnecessary since we pass global options to all commands during execute() as well.
/external/chromium_org/third_party/skia/tools/
H A Dsanitize_source_files.py9 import commands namespace
128 output = commands.getoutput(
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dcommand_line.py82 """Combines Commands into one big command with sub-commands.
84 E.g. "svn checkout", "svn update", and "svn commit" are separate sub-commands.
88 commands = (Help, List, Run)
94 commands = () variable in class:SubcommandCommand
100 for command in cls.commands:
/external/chromium_org/v8/test/cctest/
H A Dtestcfg.py31 from testrunner.local import commands namespace
55 output = commands.Execute(context.command_prefix +
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DAbstractApplication.java58 protected void processCommandLine(List commands) { argument
66 protected String[] getArguments(List commands, String param) { argument
67 int index = commands.indexOf(param);
70 commands.remove(index);
71 if (index == commands.size()) // if this is the last command
73 List args = new ArrayList(commands.size());
74 while (index < commands.size()) { // while not the last command
75 String command = (String) commands.get(index);
79 commands.remove(index);

Completed in 2129 milliseconds

123456