HomeSort by relevance Sort by last modified time
    Searched refs:Command (Results 126 - 150 of 161) sorted by null

1 2 3 4 56 7

  /external/webkit/Source/WebCore/page/
ContextMenuController.cpp 263 frame->editor()->command("Cut").execute();
266 frame->editor()->command("Paste").execute();
275 frame->editor()->command("SelectAll").execute();
282 RefPtr<ReplaceSelectionCommand> command = ReplaceSelectionCommand::create(document, createFragmentFromMarkup(document, item->title(), ""), ReplaceSelectionCommand::SelectReplacement | ReplaceSelectionCommand::MatchStyle | ReplaceSelectionCommand::PreventNesting); local
283 applyCommand(command);
307 frame->editor()->command("ToggleBold").execute();
310 frame->editor()->command("ToggleItalic").execute();
343 frame->editor()->command("MakeTextWritingDirectionNatural").execute();
346 frame->editor()->command("MakeTextWritingDirectionLeftToRight").execute();
349 frame->editor()->command("MakeTextWritingDirectionRightToLeft").execute()
1045 Editor::Command command = frame->editor()->command("MakeTextWritingDirectionNatural"); local
1051 Editor::Command command = frame->editor()->command("MakeTextWritingDirectionLeftToRight"); local
1057 Editor::Command command = frame->editor()->command("MakeTextWritingDirectionRightToLeft"); local
    [all...]
  /external/mdnsresponder/mDNSPosix/
Responder.c 199 #pragma mark ***** Command Line Arguments
230 fprintf(stderr, " MUST be the last command-line argument;\n");
246 // Parses our command line arguments into the global variables
260 // Parse command line options using getopt.
327 // Check for any left over command line arguments.
660 // Parse our command line arguments. This won't come back if there's an error.
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 224 if (LCI.Command.Type == macho::LCT_FunctionStarts) {
281 if (LCI.Command.Type == macho::LCT_Symtab) {
  /external/wpa_supplicant_8/wpa_supplicant/
nmake.mak 3 # This can be run in Visual Studio 2005 Command Prompt
  /frameworks/compile/libbcc/gdb_plugin/
android-commands.py 46 # AttachAndroidApp - GDB command to attach to an existing android app process
47 # AndroidStatus - app status query command (not needed, mostly harmless)
128 print "Warning: " + msg + " use the set-android-device command."
334 class AndroidStatus(gdb.Command):
335 """Implements the android-status gdb command."""
376 """Implements the 'start-android-app' gdb command."""
399 print '### GDB Command: ' + str(cmd)
579 """Implements the run-android-app gdb command."""
589 """Implements the attach-android-app gdb command."""
626 """ Implements the load-android-app gbd command
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.cpp 303 void EditorClientImpl::registerCommandForUndo(PassRefPtr<EditCommand> command)
309 m_undoStack.append(command);
312 void EditorClientImpl::registerCommandForRedo(PassRefPtr<EditCommand> command)
314 m_redoStack.append(command);
347 RefPtr<EditCommand> command(*back);
349 command->unapply();
350 // unapply will call us back to push this command onto the redo stack.
358 RefPtr<EditCommand> command(*back);
363 command->reapply();
364 // reapply will call us back to push this command onto the undo stack
576 Editor::Command command = frame->editor()->command(commandName); local
    [all...]
  /external/chromium/chrome/browser/resources/bookmark_manager/js/
main.js 10 const Command = cr.ui.Command;
182 // Activate is handled by the open-in-same-window-command.
185 $('open-in-same-window-command').execute();
898 cr.ui.decorate('command', Command);
905 var commands = document.querySelectorAll('command');
906 for (var i = 0, command; command = commands[i]; i++) {
907 if (command.id != 'import-menu-command' &
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
dataview.js 179 text.push('Command line: ' + ClientInfo.command_line);
  /external/oprofile/events/x86-64/family11h/
unit_masks 215 0x01 Command DWORD sent
  /external/oprofile/events/x86-64/hammer/
unit_masks 98 0x01 Command sent
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 56 import org.eclipse.core.commands.Command;
    [all...]
  /external/blktrace/btreplay/doc/
btreplay.tex 40 This document presents the command line overview for
73 specify the \texttt{-a queue} command line option to \texttt{blktrace}.
242 \newpage\section{\label{sec:command-line}Command Line Options}
243 \subsection{\texttt{btrecord} Command Line Options}
288 The \texttt{-h} option displays the command line options and
382 \newpage\subsection{\texttt{btreplay} Command Line Options}
426 The \texttt{-h} option displays the command line options and
492 supplied on the command line.
497 When specified on the command line, all pre-bunch stall indicators will b
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 350 frame->editor()->command(commandName).execute(argument);
359 Editor::Command command = frame->editor()->command(commandName);
360 return command.isSupported() && command.isEnabled();
1040 Editor::Command command = frame->editor()->command(commandName); local
1041 state = command.state()
1628 WebEditCommand* command = webEditCommand(commandID); local
1637 WebEditCommand* command = webEditCommand(commandID); local
    [all...]
  /external/bison/doc/
refcard.tex 315 \section{Command Line Options}
511 % compile-command: "tex refcard"
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 88 // Map selectors into Editor command names.
89 // This is not needed for any selectors that have the same name as the Editor command.
114 // No need to capitalize the command name since Editor command names are not case sensitive.
147 Editor::Command command = frame->editor()->command(commandNameForSelectorName(commands[i].commandName));
148 if (command.isSupported()) {
149 bool commandExecutedByEditor = command.execute(event);
203 if (frame->editor()->command(commandNameForSelectorName(commands[i].commandName)).isTextInsertion()
    [all...]
  /external/chromium/net/ftp/
ftp_network_transaction.cc 35 // Returns true if |input| can be safely used as a part of FTP command.
38 // characters in the command if the request path contains them. To be
39 // compatible, we do the same and allow non-ASCII characters in a command.
50 // reply before issuing the next command.
56 // The command has been accepted, but to complete the operation, more
60 // The command was not accepted and the requested action did not take place.
62 // command sequence.
65 // The command was not accepted and the requested action did not take place.
117 // The text returned in response to the EPSV command MUST be:
410 // Used to prepare and send FTP command
696 std::string command = "USER " + UTF16ToUTF8(username_); local
728 std::string command = "PASS " + UTF16ToUTF8(password_); local
759 std::string command = "SYST"; local
812 std::string command = "PWD"; local
857 std::string command = "TYPE "; local
893 const std::string command = "EPSV"; local
927 std::string command = "PASV"; local
960 std::string command = "RETR " + GetRequestPathForFtpCommand(false); local
1011 std::string command = "SIZE " + GetRequestPathForFtpCommand(false); local
1061 std::string command = "CWD " + GetRequestPathForFtpCommand(true); local
1141 std::string command = "QUIT"; local
    [all...]
  /frameworks/av/services/audioflinger/
FastMixer.cpp 120 FastMixerState::Command command = next->mCommand;
141 if (command & FastMixerState::IDLE) {
156 dumpState->mCommand = command;
158 switch (command) {
164 // only perform a cold idle command once
201 LOG_FATAL("bad command %d", command);
370 if ((command & FastMixerState::MIX) && (mixer != NULL) && isWarm) {
434 if ((command & FastMixerState::WRITE) && (outputSink != NULL) && (mixBuffer != NULL))
    [all...]
  /frameworks/base/services/java/com/android/server/
NsdService.java 54 import com.android.server.NativeDaemonConnector.Command;
    [all...]
  /external/clang/tools/scan-build/
scan-build 199 die "No build command." if (scalar(@$Args) == 0);
606 <tr><th>Command Line:</th><td>${CmdArgs}</td></tr>
846 # RunBuildCommand - Run the build command.
968 # Get only the part of the command after the last '/'.
1023 USAGE: $Prog [options] <build command> [build options]
1054 Add a "keep on going" option to the specified build command. This option
1077 command. Specifying this option causes the exit status of scan-build to be 1
    [all...]
  /external/emma/lib/
emma.jar 
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLView.mm     [all...]
  /frameworks/base/services/input/
InputDispatcher.cpp 585 Command command = commandEntry->command; local
586 (this->*command)(commandEntry); // commands are implicitly 'LockedInterruptible'
594 InputDispatcher::CommandEntry* InputDispatcher::postCommandLocked(Command command) {
595 CommandEntry* commandEntry = new CommandEntry(command);
678 // Enqueue a command to run outside the lock to tell the policy that the configuration changed.
759 return false; // wait for the command to run
    [all...]
  /external/qemu/distrib/sdl-1.2.15/acinclude/
libtool.m4     [all...]
  /external/blktrace/btt/doc/
btt.tex 54 command-line usage section occurs relatively late in the document (see
600 \texttt{iostat -x} command in parallel with the system as it is being
685 command at that time (either Q2D, D2C or Q2C).
799 \newpage\section{\label{sec:cmd-line}Command Line}
    [all...]
  /external/valgrind/main/massif/
ms_main.c 141 --------------------------------------------------------------------------------Command: date
383 //--- Command line args ---//
    [all...]

Completed in 828 milliseconds

1 2 3 4 56 7