Searched refs:command_name (Results 26 - 45 of 45) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
H A Dmulticommandtool.py266 def command_by_name(self, command_name):
268 if command_name == command.name:
293 (command_name, args) = self._split_command_name_from_args(argv[1:])
298 command = self.command_by_name(command_name) or self.help_command
300 option_parser.error("%s is not a recognized command" % command_name)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
H A Dcommitannouncer.py139 command_name = message[len(prefix):].strip()
140 if command_name in self.commands:
141 return self.commands[command_name]
/external/chromium_org/chrome/browser/resources/extensions/
H A Dextension_command_list.js6 * command_name: string,
249 'command', command.extension_id, command.command_name);
273 'clear', command.extension_id, command.command_name);
279 'setCommandScope', command.extension_id, command.command_name);
/external/chromium_org/tools/telemetry/telemetry/
H A Dtest_runner.py362 command_name = 'run'
365 command_name = arg
369 commands = _MatchingCommands(command_name)
372 % (command_name, _ScriptName()))
/external/lldb/include/lldb/API/
H A DSBCommandInterpreter.h119 SetCommandOverrideCallback (const char *command_name,
/external/lldb/source/API/
H A DSBCommandInterpreter.cpp363 SBCommandInterpreter::SetCommandOverrideCallback (const char *command_name, argument
367 if (command_name && command_name[0] && m_opaque_ptr)
369 std::string command_name_str (command_name);
/external/chromium_org/chrome/test/chromedriver/
H A Dperformance_logger.cc106 Status PerformanceLogger::BeforeCommand(const std::string& command_name) { argument
108 if (trace_buffering_ && ShouldRequestTraceEvents(command_name)) {
H A Dutil.cc411 const std::string& command_name) {
416 Status status = (*it)->BeforeCommand(command_name);
424 command_name.c_str());
410 NotifyCommandListenersBeforeCommand(Session* session, const std::string& command_name) argument
H A Dcommands_unittest.cc558 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE {
560 EXPECT_STREQ("cmd", command_name.c_str());
665 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE {
/external/chromium_org/sandbox/win/tests/common/
H A Dcontroller.cc307 std::string command_name = base::SysWideToMultiByte(argv[3], CP_UTF8);
309 ::GetProcAddress(module, command_name.c_str()));
/external/lldb/source/Commands/
H A DCommandObjectCommands.cpp810 const char *command_name = args.GetArgumentAtIndex(0); local
811 cmd_obj = m_interpreter.GetCommandObject(command_name);
814 if (m_interpreter.CommandExists (command_name))
817 command_name);
823 if (m_interpreter.RemoveAlias (command_name) == false)
825 if (m_interpreter.AliasExists (command_name))
827 command_name);
829 result.AppendErrorWithFormat ("'%s' is not an existing alias.\n", command_name);
840 command_name);
H A DCommandObjectMultiword.cpp320 const char * command_name = pos->first.c_str(); local
324 complete_command_name.Printf ("%s %s", prefix, command_name);
/external/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1014 CommandInterpreter::GetAliasHelp (const char *alias_name, const char *command_name, StreamString &help_string) argument
1016 help_string.Printf ("'%s", command_name);
1808 std::string command_name (cmd_obj->GetCommandName());
2828 const char *command_name = pos->first.c_str(); local
2833 commands_found.AppendString (command_name);
2838 cmd_obj->AproposAllSubCommands (command_name,
2850 const char *command_name = pos->first.c_str(); local
2855 commands_found.AppendString (command_name);
2860 cmd_obj->AproposAllSubCommands (command_name,
/external/chromium_org/components/cloud_devices/tools/prototype/
H A Dprototype.py168 def handle_command(self, command_name, args):
169 if command_name == 'flashLED':
183 def handle_command(self, command_name, args):
184 if command_name == 'flashLED':
/external/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h277 const char *command_name,
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.cpp857 const char *command_name = GetCommandAsCString (command); local
858 if (command_name)
864 command_name,
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dexecutive.py79 def command_name(self): member in class:ScriptError
/external/chromium_org/third_party/cython/src/Cython/Debugger/
H A Dlibcython.py638 for command_name, command in commands.iteritems():
640 setattr(self, command_name, command)
/external/lldb/examples/python/
H A Dcrashlog.py722 def CreateSymbolicateCrashLogOptions(command_name, description, add_interactive_options):
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder.cc10854 std::string command_name; local
10855 if (!bucket->GetAsString(&command_name)) {
10858 TRACE_EVENT_COPY_ASYNC_BEGIN0("gpu", command_name.c_str(), this);
10859 if (!gpu_tracer_->Begin(command_name, kTraceCHROMIUM)) {

Completed in 1767 milliseconds

12