HomeSort by relevance Sort by last modified time
    Searched full:commandname (Results 1 - 25 of 46) sorted by null

1 2

  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Dicttool.java 37 public static void addCommand(final String commandName, final Class<? extends Command> cls) {
38 sCommands.put(commandName, cls);
41 private static Command getCommandInstance(final String commandName) {
43 return sCommands.get(commandName).newInstance();
45 throw new RuntimeException(commandName + " is not installed");
47 throw new RuntimeException(commandName + " is not installed");
53 for (final String commandName : sCommands.keySet()) {
54 System.out.println("*** " + commandName);
55 System.out.println(getCommandInstance(commandName).getHelp());
60 private static boolean isCommand(final String commandName) {
    [all...]
  /external/clang/lib/AST/
CommentCommandTraits.cpp 46 CommandInfo *CommandTraits::createCommandInfoWithName(StringRef CommandName) {
47 char *Name = Allocator.Allocate<char>(CommandName.size() + 1);
48 memcpy(Name, CommandName.data(), CommandName.size());
49 Name[CommandName.size()] = '\0';
62 StringRef CommandName) {
63 CommandInfo *Info = createCommandInfoWithName(CommandName);
68 const CommandInfo *CommandTraits::registerBlockCommand(StringRef CommandName) {
69 CommandInfo *Info = createCommandInfoWithName(CommandName);
CommentSema.cpp 373 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name;
378 getInlineCommandRenderKind(CommandName),
392 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name;
398 getInlineCommandRenderKind(CommandName),
404 StringRef CommandName) {
405 unsigned CommandID = Traits.registerUnknownCommand(CommandName)->getID();
427 StringRef CommandName = Traits.getCommandInfo(CommandID)->Name;
430 Loc.getLocWithOffset(1 + CommandName.size()),
631 StringRef CommandName = Command->getCommandName(Traits);
635 << CommandName
    [all...]
  /external/webkit/Source/WebCore/dom/
KeyboardEvent.h 39 KeypressCommand(const String& commandName) : commandName(commandName) { ASSERT(isASCIILower(commandName[0U])); }
40 KeypressCommand(const String& commandName, const String& text) : commandName(commandName), text(text) { ASSERT(commandName == "insertText:"); }
42 String commandName; // Actually, a selector name - it may have a trailing colon, and a name that can be different from an editor command name.
  /external/webkit/Source/WebKit/chromium/src/
WebDevToolsAgentImpl.cpp 339 String commandName;
340 if (!InspectorBackendDispatcher::getCommandName(message, &commandName))
342 return commandName == InspectorBackendDispatcher::Debugger_pauseCmd
343 || commandName == InspectorBackendDispatcher::Debugger_setBreakpointCmd
344 || commandName == InspectorBackendDispatcher::Debugger_setBreakpointByUrlCmd
345 || commandName == InspectorBackendDispatcher::Debugger_removeBreakpointCmd
346 || commandName == InspectorBackendDispatcher::Debugger_setBreakpointsActiveCmd
347 || commandName == InspectorBackendDispatcher::Profiler_startCmd
348 || commandName == InspectorBackendDispatcher::Profiler_stopCmd
349 || commandName == InspectorBackendDispatcher::Profiler_getProfileCmd
    [all...]
EditorClientImpl.cpp 575 String commandName = interpretKeyEvent(evt);
576 Editor::Command command = frame->editor()->command(commandName);
584 if (command.isTextInsertion() || commandName.isEmpty())
588 m_webView->client()->didExecuteCommand(WebString(commandName));
596 m_webView->client()->didExecuteCommand(WebString(commandName));
    [all...]
  /external/clang/test/Index/
headerfile-comment-to-html.m 25 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[headerfile]
47 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[headerfile]
52 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
70 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
74 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[headerfile]
91 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[headerfile]
107 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[headerfile]
comment-custom-block-command.cpp 33 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[CustomCommand]
comment-to-html-xml-conversion.cpp 44 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
56 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[short]
72 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
90 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
105 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
109 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief]
125 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[return]
141 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns]
157 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[result]
170 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[returns
    [all...]
  /system/core/sh/bltin/
bltin.h 74 #define getprogname() commandname
83 #define INITARGS(argv) if ((commandname = argv[0]) == NULL) {fputs("Argc is zero\n", stderr); exit(2);} else
94 extern const char *commandname;
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePagePrivate.h 37 WK_EXPORT bool WKBundlePageIsEditingCommandEnabled(WKBundlePageRef page, WKStringRef commandName);
41 WK_EXPORT void WKBundlePageExecuteEditingCommand(WKBundlePageRef page, WKStringRef commandName, WKStringRef argument);
  /external/clang/include/clang/AST/
CommentCommandTraits.h 147 const CommandInfo *registerUnknownCommand(StringRef CommandName);
149 const CommandInfo *registerBlockCommand(StringRef CommandName);
166 CommandInfo *createCommandInfoWithName(StringRef CommandName);
CommentSema.h 152 StringRef CommandName);
  /external/emma/core/java12/
emma.java 35 final String commandName = args [0];
39 final Command command = Command.create (commandName, "emma ".concat (commandName), commandArgs);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 454 String commandName = editorCommandForKeyDownEvent(event);
455 if (!commandName.isEmpty()) {
456 if (frame->editor()->command(commandName).execute()) // Event handled.
515 String commandName = editorCommandForKeyDownEvent(event);
516 ASSERT(!commandName.isEmpty());
517 frame->editor()->command(commandName).execute();
  /system/core/sh/
error.c 71 char *commandname; variable
135 if (commandname)
136 outfmt(&errout, "%s: ", commandname);
eval.h 37 extern char *commandname; /* currently executing command */
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbMessage.java 150 String commandName = extractString(mMessageBuffer, 0, 4);
152 String result = "Adb Message: " + commandName + " arg0: " + getArg0() +
  /external/webkit/Source/WebCore/editing/
Editor.h 198 Command command(const String& commandName); // Command source is CommandFromMenuOrKeyBinding.
199 Command command(const String& commandName, EditorCommandSource);
200 static bool commandIsSupportedFromMenuOrKeyBinding(const String& commandName); // Works without a frame.
EditorCommand.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKViewInternal.h 55 - (void)_setUserInterfaceItemState:(NSString *)commandName enabled:(BOOL)isEnabled state:(int)newState;
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 137 if (commands[i].commandName == "insertText:") {
147 Editor::Command command = frame->editor()->command(commandNameForSelectorName(commands[i].commandName));
152 bool performedNonEditingBehavior = event->keyEvent()->type() == PlatformKeyboardEvent::RawKeyDown && performNonEditingBehaviorForSelector(commands[i].commandName);
157 WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::ExecuteSavedCommandBySelector(commands[i].commandName),
203 if (frame->editor()->command(commandNameForSelectorName(commands[i].commandName)).isTextInsertion())
  /external/clang/unittests/AST/
CommentParser.cpp 186 StringRef CommandName,
196 if (ActualCommandName != CommandName)
199 "expected \"" << CommandName.str() << "\"";
234 StringRef CommandName,
242 if (ActualCommandName != CommandName)
245 "expected \"" << CommandName.str() << "\"";
    [all...]
  /external/chromium-trace/trace-viewer/src/importer/
timeline_stream_importer.js 27 * 'cmd': 'commandName',
  /external/skia/gm/
gmmain.cpp     [all...]

Completed in 752 milliseconds

1 2