Searched refs:command (Results 376 - 400 of 438) sorted by relevance

<<1112131415161718

/external/mksh/src/
H A Dhistrap.c134 /* Substitute and execute command */
253 ret = command(editor ? editor : "${FCEDIT:-/bin/ed} $_", 0);
322 ret = command(cmd, 0);
400 /* the -1 is to avoid the current fc command */
409 /* Return a pointer to the newest command in the history */
420 /* Return a pointer to the oldest command in the history */
597 /* do not save command in history but possibly sync */
619 * save command in history
648 if (++hp >= history + histsize) { /* remove oldest command */
675 * Each command i
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dscm.py579 _log.debug('Would run SVN command: "' + " ".join(svn_commit_args) + '"')
618 # Use the sysctl command to find out what the processor actually supports.
742 # We do not need to pass decode_output for this diff command
772 command = ['git', 'diff', '--binary', "--no-ext-diff", "--full-index", "-M", self.merge_base(git_commit), "--"]
774 command += changed_files
775 return self.prepend_svn_revision(self.run(command, decode_output=False, cwd=self.checkout_root))
/external/chromium/chrome/browser/resources/file_manager/js/
H A Dfile_manager.js448 var commands = this.dialogDom_.querySelectorAll('command');
450 var command = commands[i];
451 cr.ui.Command.decorate(command);
452 this.commands_[command.id] = command;
463 this.document_.addEventListener('command', this.onCommand_.bind(this));
562 * Invoked to decide whether the "rename" command can be executed.
579 * Invoked to decide whether the "delete" command can be executed.
692 * Respond to a command being executed.
695 switch (event.command
[all...]
/external/webkit/Source/WebKit/win/
H A DWebView.cpp1765 return frame->editor()->command("SelectAll").execute();
1767 return frame->editor()->command("Undo").execute();
1769 return frame->editor()->command("Redo").execute();
1916 Editor::Command command = frame->editor()->command(interpretKeyEvent(evt));
1922 return !command.isTextInsertion() && command.execute(evt);
1925 if (command.execute(evt))
3342 m_page->focusController()->focusedOrMainFrame()->editor()->command(name).execute(value);
4280 m_page->focusController()->focusedOrMainFrame()->editor()->command("Cop
[all...]
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_observers.h512 int command,
523 bool Register(int command);
525 bool GetNotificationType(int command, NotificationType::Type* type);
H A Dtesting_automation_provider.h105 void ExecuteBrowserCommandAsync(int handle, int command, bool* success);
106 void ExecuteBrowserCommand(int handle, int command,
182 // command that might open the popup menu; then call WaitForPopupMenuToOpen.
236 // Checks to see if a command on the browser's CommandController is enabled.
487 // Only includes tabs from command line arguments or session restore.
/external/openssl/crypto/objects/
H A Dobj_dat.pl174 * following command:
H A Dobjects.pl125 * following command:
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-aix5.c1397 Word, command, Word, arg, Word, ext);
1739 PRE_REG_READ3(long, "mntctl", long, command, long, size, char*, buffer);
2145 PRE_REG_READ3(int, "shmctl", int, shmid, int, command, void*, buffer);
2565 PRE_REG_READ3(int, "vmgetinfo", void*, out, int, command, int, arg);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage.cpp247 // Lookup the appropriate editor command to use for WebAction \a action
557 case QWebPage::SelectAll: // editor command is always enabled
566 // see if it's an editor command
569 // if it's an editor command, let it's logic determine state
571 Editor::Command command = editor->command(commandName);
572 enabled = command.isEnabled();
574 checked = command.state() != FalseTriState;
2321 const char *command = 0; local
2416 command
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DLayoutTestController.cpp729 std::string command = arguments[0].toString();
732 // since this command emulates a manual action.
737 m_shell->webView()->focusedFrame()->executeCommand(WebString::fromUTF8(command), WebString::fromUTF8(value));
747 std::string command = arguments[0].toString(); local
748 bool rv = m_shell->webView()->focusedFrame()->isCommandEnabled(WebString::fromUTF8(command));
/external/grub/docs/
H A Dtexinfo.tex266 % For @cropmarks command.
475 % If an index command is used in an @example environment, any spaces
522 \errmessage{This command can appear only \inenvironment\temp,
1059 % to a command which sets the catcodes (such as @item or @section).
1601 % Each font-changing command also sets the names \lsize (one size lower)
1837 % @kbd is like @code, except that if the argument is just one @key command,
1869 % For @indicateurl, @env, @command quotes seem unnecessary, so use \code.
1872 \let\command=\code
2001 % We set the font at each command, rather than predefining it in
2330 % command i
[all...]
/external/kernel-headers/original/linux/
H A Dsoundcard.h104 /* Ioctl's have the command encoded in the lower word,
156 char data[4000]; /* Device spesific command/data record */
706 int command; /* Set to 0 if not used */ member in struct:copr_buffer
718 int command; /* Used internally. Set to 0 */ member in struct:copr_debug_buf
/external/llvm/lib/Support/Unix/
H A DProgram.inc360 // Following the POSIX convention for command-line tools (which posix_spawn
/external/quake/quake/src/QW/gas2masm/
H A Dgas2masm.mak15 !MESSAGE by defining the macro CFG on the command line. For example:
/external/v8/src/
H A Dd8.cc297 Handle<Value> Shell::DebugCommandToJSONRequest(Handle<String> command) { argument
302 Handle<Value> argv[kArgc] = { command };
H A Ddebug.h555 // event or the response to a command.
564 // Create a message object for the response to a debug command.
627 // In addition to command text it may contain a pointer to some user data
628 // which are expected to be passed along with the command reponse to message
632 static CommandMessage New(const Vector<uint16_t>& command,
746 // Add a debugger command to the command queue.
747 void ProcessCommand(Vector<const uint16_t> command,
750 // Check whether there are commands in the command queue.
753 // Enqueue a debugger command t
[all...]
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp4034 static Editor::Command command(Document* document, const String& commandName, bool userInterface = false) function in namespace:WebCore
4042 return frame->editor()->command(commandName,
4048 return command(this, commandName, userInterface).execute(value);
4053 return command(this, commandName).isEnabled();
4058 return command(this, commandName).state() == MixedTriState;
4063 return command(this, commandName).state() == TrueTriState;
4068 return command(this, commandName).isSupported();
4073 return command(this, commandName).value();
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerRendererChromium.cpp141 void LayerRendererChromium::debugGLCall(GraphicsContext3D* context, const char* command, const char* file, int line) argument
145 LOG_ERROR("GL command failed: File: %s\n\tLine %d\n\tcommand: %s, error %x\n", file, line, command, static_cast<int>(error));
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DTextureMapperGL.cpp81 inline static void debugGLCommand(const char* command, int line) argument
86 WTFReportError(__FILE__, line, WTF_PRETTY_FUNCTION, "[TextureMapper GL] Command failed: %s (%x)\n", command, err);
/external/webkit/Source/WebCore/inspector/front-end/
H A Dinspector.css659 .console-user-command-result.console-log-level::before {
663 .console-message, .console-user-command {
670 .console-adjacent-user-command-result {
674 .console-adjacent-user-command-result + .console-user-command-result.console-log-level::before {
678 .console-message::before, .console-user-command::before, #console-prompt::before, .console-group-title::before {
764 .console-user-command .console-message {
770 .console-user-command::before {
774 .console-user-command > .console-message-text {
3048 .console-user-command
[all...]
/external/bluetooth/bluez/tools/
H A Dsdptool.c843 /* Convert command line args */
982 /* Convert command line args */
3921 * Note : we should support multiple services on the command line :
4118 /* Convert command line parameters */
4188 /* Convert command line parameters */
4198 } command[] = { variable in typeref:struct:__anon438
4216 "\tsdptool [options] <command> [command parameters]\n");
4222 for (i = 0; command[i].cmd; i++)
4223 printf("\t%-4s\t\t%s\n", command[
[all...]
/external/chromium/sdch/open-vcdiff/
H A Dltmain.sh247 # if one wasn't chosen via the "--tag" command line option.
249 # command doesn't match the default compiler.
264 # Blanks in the command may have been stripped by the calling shell,
286 # The compiler in the base compile command matches
296 # was found and let the user know that the "--tag" command
429 # Parse our command line options once, thoroughly.
594 # If this variable is set in any of the actions, the command in it
659 # Get the compilation command and the source file.
684 # Accept any command-line options.
849 $echo "$modename: you must specify a compilation command"
[all...]
/external/chromium/third_party/libevent/
H A Dltmain.sh247 # if one wasn't chosen via the "--tag" command line option.
249 # command doesn't match the default compiler.
264 # Blanks in the command may have been stripped by the calling shell,
286 # The compiler in the base compile command matches
296 # was found and let the user know that the "--tag" command
429 # Parse our command line options once, thoroughly.
594 # If this variable is set in any of the actions, the command in it
659 # Get the compilation command and the source file.
684 # Accept any command-line options.
849 $echo "$modename: you must specify a compilation command"
[all...]
/external/expat/conftools/
H A Dltmain.sh223 # if one wasn't chosen via the "--tag" command line option.
225 # command doesn't match the default compiler.
240 # Blanks in the command may have been stripped by the calling shell,
262 # The compiler in the base compile command matches
272 # was found and let the user know that the "--tag" command
395 # Parse our command line options once, thoroughly.
559 # If this variable is set in any of the actions, the command in it
624 # Get the compilation command and the source file.
649 # Accept any command-line options.
812 $echo "$modename: you must specify a compilation command"
[all...]

Completed in 1367 milliseconds

<<1112131415161718