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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebKit/win/WebCoreSupport/
WebEditorClient.cpp 487 case EditActionSetColor: return LPCTSTR_UI_STRING_KEY("Set Color", "Set Color (Undo action name)", "Undo action name");
488 case EditActionSetBackgroundColor: return LPCTSTR_UI_STRING_KEY("Set Background Color", "Set Background Color (Undo action name)", "Undo action name");
489 case EditActionTurnOffKerning: return LPCTSTR_UI_STRING_KEY("Turn Off Kerning", "Turn Off Kerning (Undo action name)", "Undo action name");
490 case EditActionTightenKerning: return LPCTSTR_UI_STRING_KEY("Tighten Kerning", "Tighten Kerning (Undo action name)", "Undo action name");
491 case EditActionLoosenKerning: return LPCTSTR_UI_STRING_KEY("Loosen Kerning", "Loosen Kerning (Undo action name)", "Undo action name")
590 void WebEditorClient::undo() function in class:WebEditorClient
    [all...]
  /external/webkit/WebKit/mac/WebCoreSupport/
WebEditorClient.mm 416 case EditActionSetColor: return UI_STRING_KEY("Set Color", "Set Color (Undo action name)", "Undo action name");
417 case EditActionSetBackgroundColor: return UI_STRING_KEY("Set Background Color", "Set Background Color (Undo action name)", "Undo action name");
418 case EditActionTurnOffKerning: return UI_STRING_KEY("Turn Off Kerning", "Turn Off Kerning (Undo action name)", "Undo action name");
419 case EditActionTightenKerning: return UI_STRING_KEY("Tighten Kerning", "Tighten Kerning (Undo action name)", "Undo action name");
420 case EditActionLoosenKerning: return UI_STRING_KEY("Loosen Kerning", "Loosen Kerning (Undo action name)", "Undo action name")
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
sem.h 7 #define SEM_UNDO 0x1000 /* undo the operation on exit */
30 struct sem_undo *undo; /* undo requests on this array */ member in struct:semid_ds
74 #define SEMUME SEMOPM /* max num of undo entries per process */
75 #define SEMMNU SEMMNS /* num of undo structures system wide */
  /external/kernel-headers/original/linux/
sem.h 7 #define SEM_UNDO 0x1000 /* undo the operation on exit */
30 struct sem_undo *undo; /* undo requests on this array */ member in struct:semid_ds
74 #define SEMUME SEMOPM /* max num of undo entries per process */
75 #define SEMMNU SEMMNS /* num of undo structures system wide */
99 struct sem_undo *undo; /* undo requests on this array */ member in struct:sem_array
108 struct sem_undo * undo; /* undo structure */ member in struct:sem_queue
118 /* Each task has a list of undo requests. They are executed automaticall
    [all...]
  /bionic/libc/kernel/common/linux/
sem.h 37 struct sem_undo *undo; member in struct:semid_ds
  /development/ndk/platforms/android-3/include/linux/
sem.h 37 struct sem_undo *undo; member in struct:semid_ds
  /external/chromium/net/base/
net_util_posix.cc 31 // GURL stores strings as percent-encoded 8-bit, this will undo if possible.
net_util_win.cc 46 // GURL stores strings as percent-encoded UTF-8, this will undo if possible.
  /external/webkit/WebKit/qt/WebCoreSupport/
EditCommandQt.cpp 51 void EditCommandQt::undo() { function in class:EditCommandQt
EditCommandQt.h 41 void undo();
EditorClientQt.h 85 virtual void undo();
115 bool m_inUndoRedo; // our undo stack works differently - don't re-enter!
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
sem.h 37 struct sem_undo *undo; member in struct:semid_ds
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
sem.h 37 struct sem_undo *undo; member in struct:semid_ds
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
sem.h 37 struct sem_undo *undo; member in struct:semid_ds
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
sem.h 37 struct sem_undo *undo; member in struct:semid_ds
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
sem.h 37 struct sem_undo *undo; member in struct:semid_ds
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
sem.h 37 struct sem_undo *undo; member in struct:semid_ds
  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 86 virtual void undo();
118 bool m_inUndoRedo; // our undo stack works differently - don't re-enter!
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
ElementCreateCommand.java 96 public void undo() { method in class:ElementCreateCommand
97 throw new UnsupportedOperationException("undo not supported by this command"); //$NON-NLS-1$
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditorContributor.java 80 actionBars.setGlobalActionHandler(ActionFactory.UNDO.getId(),
81 getAction(editor, ITextEditorActionConstants.UNDO));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlEditor.java 224 * Creates undo redo actions for the editor site (so that it works for any page of this
231 IAction action = mTextEditor.getAction(ActionFactory.UNDO.getId());
232 bars.setGlobalActionHandler(ActionFactory.UNDO.getId(), action);
689 * Starts an "undo recording" session. This is managed by the underlying undo manager
695 * undo operation is recorded.)
697 * @param label The label for the undo operation. Can be null but we should really try to put
699 * @return True if the undo recording actually started, false if any kind of error occured.
718 * Ends an "undo recording" session.
737 * Creates an "undo recording" session by calling the undoableAction runnabl
    [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 79 // after the contents have been edited or unedited (ie undo)
208 // we just don't support Undo/Redo at the moment
215 void EditorClientAndroid::undo() {} function in class:android::EditorClientAndroid
  /external/webkit/WebKit/win/Interfaces/
IWebUIDelegate.idl 635 /// Undo related UI delegate methods --------------------------------------------------------------------------------
639 @abstract Registers an undo operation of a IWebUndoTarget on the undo/redo stack.
641 @param actionName The name of the action - this will be passed back to the target when we need to undo the operation
642 @param actionArg An object that target used to save undo information
648 @abstract remove all the undo operations that are registered for the passed in target on the undo/redo stack.
655 @abstract Sets the name of the action for the current group of undo operations
661 @method undo:
662 @abstract Undo the last group of operation
    [all...]
  /external/chromium/third_party/icu/source/common/
uinit.c 48 cmemory_cleanup(); /* undo any heap functions set by u_setMemoryFunctions(). */
  /external/icu4c/common/
uinit.c 51 cmemory_cleanup(); /* undo any heap functions set by u_setMemoryFunctions(). */

Completed in 389 milliseconds

1 2 3 4 5 6 7 8 91011>>