Searched defs:command (Results 76 - 100 of 428) sorted by relevance

1234567891011>>

/external/chromium_org/gpu/command_buffer/service/
H A Dmocks.cc35 void AsyncAPIMock::SetToken(unsigned int command, argument
39 DCHECK_EQ(1u, command);
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DExecutorFactory.java80 * Asynchronously wait for the next command to arrive. This should only be called on the
149 * Execute the given |command| in the executor thread. This can be called on any thread.
154 public void execute(Runnable command) { argument
162 mPendingActions.add(command);
/external/chromium_org/remoting/webapp/background/
H A Dmessage_window.js35 command: 'messageWindowResult',
82 switch (event.data['command']) {
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositeEditCommand.h80 bool isFirstCommand(EditCommand* command) { return !m_commands.isEmpty() && m_commands.first() == command; } argument
179 DEFINE_TYPE_CASTS(CompositeEditCommand, EditCommand, command, command->isCompositeEditCommand(), command.isCompositeEditCommand());
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Devent.cpp77 hard_event::hard_event(clover::command_queue &q, cl_command_type command, argument
80 __queue(q), __command(command), __fence(NULL) {
113 hard_event::command() const { function in class:hard_event
164 soft_event::command() const { function in class:soft_event
/external/chromium_org/third_party/skia/tools/
H A DDumpRecord.cpp33 void operator()(const T& command) { argument
36 fDraw(command);
39 this->print(command, timer.fCpu);
47 void print(const T& command, double time) { argument
48 this->printNameAndTime(command, time);
51 void print(const SkRecords::Restore& command, double time) { argument
53 this->printNameAndTime(command, time);
56 void print(const SkRecords::Save& command, double time) { argument
57 this->printNameAndTime(command, time);
61 void print(const SkRecords::SaveLayer& command, doubl argument
68 printNameAndTime(const T& command, double time) argument
[all...]
/external/chromium_org/tools/android/forwarder2/
H A Ddevice_controller.cc16 #include "tools/android/forwarder2/command.h"
79 command::Type command; local
80 if (!ReadCommand(socket.get(), &port, &command)) {
81 LOG(ERROR) << "Invalid command received.";
87 switch (command) {
88 case command::LISTEN: {
112 case command::DATA_CONNECTION:
114 LOG(ERROR) << "Data Connection command received, but "
117 // socket, the Adb forwarder command wil
136 << " Command: " << command; local
[all...]
H A Dhost_controller.cc14 #include "tools/android/forwarder2/command.h"
37 // Send the command to the device start listening to the "device_forward_port"
39 command::LISTEN, device_port, adb_control_socket.get());
42 command::Type command; local
44 adb_control_socket.get(), &device_port_allocated, &command) ||
45 command != command::BIND_SUCCESS) {
94 if (!ReceivedCommand(command::ACCEPT_SUCCESS, adb_control_socket_.get())) {
106 command
[all...]
/external/chromium_org/tools/flakiness/
H A Dis_flaky_test.py26 def mock_check_call(self, command, stdout, stderr):
27 self.check_call_calls.append(command)
38 command = ['command', 'param1', 'param2'] variable in class:IsFlakyTest.mock_load_options.MockOptions
48 self.assertEqual(call, ['command', 'param1', 'param2'])
/external/chromium_org/ui/aura/test/
H A Dui_controls_factory_aurawin.cc38 bool command) {
39 DCHECK(!command); // No command key on Aura
50 bool command,
52 DCHECK(!command); // No command key on Aura
33 SendKeyPress(gfx::NativeWindow native_window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
45 SendKeyPressNotifyWhenDone(gfx::NativeWindow native_window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, const base::Closure& task) argument
/external/chromium_org/ui/base/test/
H A Dui_controls_win.cc24 bool command) {
26 DCHECK(!command); // No command key on Windows
36 bool command,
39 DCHECK(!command); // No command key on Windows
19 SendKeyPress(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
31 SendKeyPressNotifyWhenDone(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, const base::Closure& task) argument
/external/chromium_org/v8/src/
H A Dd8-debug.cc56 // Get the debug command processor.
71 char command[kBufferSize]; local
73 char* str = fgets(command, kBufferSize, stdin);
77 if (strlen(command) == 0) continue;
81 // Convert the debugger command to a JSON debugger request.
83 isolate, String::NewFromUtf8(isolate, command));
89 // If undefined is returned the command was handled internally and there is
101 // Invoke the JavaScript to convert the debug command line to a JSON
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingExecutorService.java100 public void execute(Runnable command) { argument
101 delegate().execute(command);
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DInterpretedMacro.java38 private final PCommand command; field in class:InterpretedMacro
45 public InterpretedMacro(PCommand command, Template owningTemplate, String macroName, argument
48 this.command = command;
64 command.apply(templateInterpreter);
/external/libnl/lib/netfilter/
H A Dlog.c35 uint8_t command, struct nl_msg **result)
45 cmd.command = command;
170 cmd.command = NFULNL_CFG_CMD_BIND;
34 build_log_cmd_request(uint8_t family, uint16_t queuenum, uint8_t command, struct nl_msg **result) argument
/external/lldb/source/Commands/
H A DCommandObjectPlugin.cpp80 DoExecute (Args& command, CommandReturnObject &result) argument
84 size_t argc = command.GetArgumentCount();
93 const char* path = command.GetArgumentAtIndex(0);
/external/lldb/source/Interpreter/
H A DCommandObjectRegexCommand.cpp54 const char *command,
58 if (command)
65 if (pos->regex.Execute (command, &regex_match))
67 std::string new_command(pos->command);
73 if (regex_match.GetMatchAtIndex (command, match_idx, match_str))
84 // Interpret the new command and return this as the result!
87 // Pass in true for "no context switching". The command that called us should have set up the context
96 result.AppendErrorWithFormat ("Command contents '%s' failed to match any regular expression in the '%s' regex command.\n",
97 command,
101 result.AppendError("empty command passe
52 DoExecute( const char *command, CommandReturnObject &result ) argument
[all...]
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp96 ProcessFreeBSD::GetPluginCommandHelp(const char *command, Stream *strm) argument
101 ProcessFreeBSD::ExecutePluginCommand(Args &command, Stream *strm) argument
107 ProcessFreeBSD::EnablePluginLogging(Stream *strm, Args &command) argument
/external/ltrace/
H A Dlibltrace.c42 char *command = NULL; variable
117 if (command) {
122 if (ltelf_init(&lte, command) == 0)
128 pid_t pid = execute_program(command, argv);
129 struct process *proc = open_program(command, pid);
132 command, strerror(errno));
/external/mdnsresponder/mDNSShared/
H A Ddnsextd_parser.y137 commands command SEMICOLON
141 command: label
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Devent.cpp77 hard_event::hard_event(clover::command_queue &q, cl_command_type command, argument
80 __queue(q), __command(command), __fence(NULL) {
113 hard_event::command() const { function in class:hard_event
164 soft_event::command() const { function in class:soft_event
/external/protobuf/src/google/protobuf/compiler/
H A Dmock_code_generator.cc112 string command = StripPrefixString(file->message_type(i)->name(), local
114 if (command == "Error") {
117 } else if (command == "Exit") {
120 } else if (command == "Abort") {
124 GOOGLE_LOG(FATAL) << "Unknown MockCodeGenerator command: " << command;
/external/qemu/distrib/sdl-1.2.15/src/audio/nds/
H A DSDL_ndsaudio.c183 u32 command; local
186 command = REG_IPC_FIFO_RX;
188 switch(command)
/external/skia/tools/
H A DDumpRecord.cpp35 void operator()(const T& command) { argument
38 fDraw(command);
41 this->print(command, timer.fCpu);
49 void print(const T& command, double time) { argument
50 this->printNameAndTime(command, time);
53 void print(const SkRecords::Restore& command, double time) { argument
55 this->printNameAndTime(command, time);
58 void print(const SkRecords::Save& command, double time) { argument
59 this->printNameAndTime(command, time);
63 void print(const SkRecords::SaveLayer& command, doubl argument
70 printNameAndTime(const T& command, double time) argument
[all...]
/external/chromium_org/remoting/webapp/
H A Dwcs_sandbox_container.js47 'command': 'proxyXhrs'
111 'command': 'setAccessToken',
123 'command': 'sendIq',
135 switch (event.data['command']) {
239 console.error('Unexpected message:', event.data['command'], event.data);
278 'command': 'xhrStateChange',

Completed in 482 milliseconds

1234567891011>>