HomeSort by relevance Sort by last modified time
    Searched refs:command_name (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_keybinding_registry_views.cc 39 const std::string& command_name) {
41 if (ShouldIgnoreCommand(command_name))
54 if (!command_name.empty() && (iter->second.command_name() != command_name))
58 std::make_pair(extension->id(), iter->second.command_name());
67 const std::string& command_name) {
69 if (ShouldIgnoreCommand(command_name))
75 (!command_name.empty() && (iter->second.second != command_name))) {
    [all...]
extension_keybinding_registry_views.h 49 const std::string& command_name) OVERRIDE;
52 const std::string& command_name) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/gtk/extensions/
extension_keybinding_registry_gtk.cc 60 const std::string& command_name) {
71 if (!command_name.empty() && (iter->second.command_name() != command_name))
76 std::make_pair(extension->id(), iter->second.command_name());
102 std::make_pair(extension->id(), browser_action.command_name());
114 std::make_pair(extension->id(), page_action.command_name());
126 std::make_pair(extension->id(), script_badge.command_name());
132 const std::string& command_name) {
136 (!command_name.empty() && iter->second.second != command_name))
    [all...]
extension_keybinding_registry_gtk.h 61 const std::string& command_name) OVERRIDE;
64 const std::string& command_name) OVERRIDE;
  /external/chromium_org/chrome/common/extensions/
command_unittest.cc 50 const char* command_name; member in struct:__anon9099
55 // test |command_name| being blank as it is used as a key in the manifest,
111 SCOPED_TRACE(std::string("Command name: |") + kTests[i].command_name +
119 command.Parse(input.get(), kTests[i].command_name, i, &error);
125 EXPECT_STREQ(kTests[i].command_name, command.command_name().c_str());
139 result = command.Parse(input.get(), kTests[i].command_name, i, &error);
145 EXPECT_STREQ(kTests[i].command_name, command.command_name().c_str());
154 std::string command_name = "foo" local
    [all...]
command.h 27 Command(const std::string& command_name,
45 const std::string& command_name,
55 const std::string& command_name() const { return command_name_; } function in class:extensions::Command
command.cc 211 Command::Command(const std::string& command_name,
214 : command_name_(command_name),
323 const std::string& command_name,
326 DCHECK(!command_name.empty());
329 if (command_name != values::kPageActionCommandEvent &&
330 command_name != values::kBrowserActionCommandEvent &&
331 command_name != values::kScriptBadgeCommandEvent) {
436 command_name_ = command_name;
448 if (command_name() == values::kBrowserActionCommandEvent ||
449 command_name() == values::kPageActionCommandEvent |
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_keybinding_registry.h 59 // |command_name| is optional, but if not blank then only the command
63 const std::string& command_name) = 0;
64 // Remove extension bindings for |extension|. |command_name| is optional,
68 const std::string& command_name) = 0;
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_keybinding_registry_cocoa.h 58 const std::string& command_name) OVERRIDE;
61 const std::string& command_name) OVERRIDE;
  /external/chromium_org/chrome/browser/extensions/api/commands/
command_service.cc 31 const char kCommandName[] = "command_name";
143 FindShortcutForCommand(extension_id, iter->second.command_name());
152 (*command_map)[iter->second.command_name()] = command;
161 std::string command_name,
177 keybinding->SetString(kCommandName, command_name);
182 std::make_pair(extension_id, command_name);
213 const std::string& command_name,
217 RemoveKeybindingPrefs(extension_id, command_name);
220 AddKeybindingPref(accelerator, extension_id, command_name, true);
236 std::string command_name; local
    [all...]
command_service_new.cc 28 const char kCommandName[] = "command_name";
119 FindShortcutForCommand(extension_id, iter->second.command_name());
128 (*command_map)[iter->second.command_name()] = command;
137 std::string command_name,
153 keybinding->SetString(kCommandName, command_name);
158 std::make_pair(extension_id, command_name);
189 const std::string& command_name,
193 RemoveKeybindingPrefs(extension_id, command_name);
196 AddKeybindingPref(accelerator, extension_id, command_name, true);
212 std::string command_name; local
    [all...]
command_service.h 104 // |extension_id| and command with the name |command_name|. If
112 std::string command_name,
116 // |command_name| is optional and if specified, causes only the command with
117 // the name |command_name| to be removed.
119 const std::string& command_name);
122 // and |command_name|) to |keystroke|. If the command had another key assigned
125 const std::string& command_name,
128 // Finds the shortcut assigned to a command with the name |command_name|
commands.cc 14 result->SetString("name", command.command_name());
64 extension_->id(), iter->second.command_name());
  /external/chromium_org/chrome/common/extensions/api/commands/
commands_handler.cc 108 std::string command_name = binding->command_name(); local
109 if (command_name == extension_manifest_values::kBrowserActionCommandEvent) {
111 } else if (command_name ==
114 } else if (command_name ==
118 if (command_name[0] != '_') // All commands w/underscore are reserved.
119 commands_info->named_commands[command_name] = *binding.get();
commands_manifest_unittest.cc 43 ASSERT_STREQ("feature1", named_command->command_name().c_str());
51 browser_action->command_name().c_str());
59 page_action->command_name().c_str());
  /external/chromium_org/tools/telemetry/telemetry/
test_runner.py 135 command_name = 'run'
138 command_name = arg
143 if command.name.startswith(command_name)]
146 % (command_name, _GetScriptName()))
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_main.cc 581 const char* const command_name = argv[0]; local
585 std::cerr << command_name << ": Must specify exactly one command option"
587 ShowUsageWithFlagsRestrict(command_name, "vcdiff");
592 std::cerr << command_name << " " << command_option
594 ShowUsageWithFlagsRestrict(command_name, "vcdiff");
599 std::cerr << command_name << ": Option --buffersize cannot be 0"
601 ShowUsageWithFlagsRestrict(command_name, "vcdiff");
626 std::cerr << command_name
646 std::cerr << command_name << ": Unrecognized command option "
648 ShowUsageWithFlagsRestrict(command_name, "vcdiff")
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
vcdiff_main.cc 585 const char* const command_name = argv[0]; local
589 std::cerr << command_name << ": Must specify exactly one command option"
591 ShowUsageWithFlagsRestrict(command_name, "vcdiff");
596 std::cerr << command_name << " " << command_option
598 ShowUsageWithFlagsRestrict(command_name, "vcdiff");
603 std::cerr << command_name << ": Option --buffersize cannot be 0"
605 ShowUsageWithFlagsRestrict(command_name, "vcdiff");
630 std::cerr << command_name
650 std::cerr << command_name << ": Unrecognized command option "
652 ShowUsageWithFlagsRestrict(command_name, "vcdiff")
    [all...]
  /external/open-vcdiff/src/
vcdiff_main.cc 585 const char* const command_name = argv[0]; local
589 std::cerr << command_name << ": Must specify exactly one command option"
591 ShowUsageWithFlagsRestrict(command_name, "vcdiff");
596 std::cerr << command_name << " " << command_option
598 ShowUsageWithFlagsRestrict(command_name, "vcdiff");
603 std::cerr << command_name << ": Option --buffersize cannot be 0"
605 ShowUsageWithFlagsRestrict(command_name, "vcdiff");
630 std::cerr << command_name
650 std::cerr << command_name << ": Unrecognized command option "
652 ShowUsageWithFlagsRestrict(command_name, "vcdiff")
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/extensions/
command_handler.cc 84 std::string command_name; local
87 !args->GetString(1, &command_name) ||
95 command_service->UpdateKeybindingPrefs(extension_id, command_name, keystroke);
158 (*extension)->id(), iter->second.command_name());
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
multicommandtool.py 266 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/
commitannouncer.py 139 command_name = message[len(prefix):].strip()
140 if command_name in self.commands:
141 return self.commands[command_name]
  /external/chromium_org/sandbox/win/tests/common/
controller.cc 307 std::string command_name = base::SysWideToMultiByte(argv[3], CP_UTF8);
309 ::GetProcAddress(module, command_name.c_str()));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dist.py 180 # command_options = { command_name : { option : (source, value) } }
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dist.py 180 # command_options = { command_name : { option : (source, value) } }
    [all...]

Completed in 377 milliseconds

1 2