Searched refs:undo (Results 1 - 25 of 62) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorHistory.h60 virtual bool undo(ExceptionState&) = 0;
74 bool undo(ExceptionState&);
H A DInspectorHistory.cpp48 virtual bool undo(ExceptionState&) OVERRIDE { return true; }
110 bool InspectorHistory::undo(ExceptionState& exceptionState) function in class:blink::InspectorHistory
117 if (!action->undo(exceptionState)) {
H A DDOMEditor.cpp63 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
111 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
117 return m_removeChildAction->undo(exceptionState);
161 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
206 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
258 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
260 return m_history->undo(exceptionState);
309 virtual bool undo(ExceptionState&) OVERRIDE
349 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
391 virtual bool undo(ExceptionStat
[all...]
H A DInspectorCSSAgent.cpp182 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
240 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
301 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
340 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DUndoStack.h53 void undo();
H A DUndoStack.cpp37 // Arbitrary depth limit for the undo stack, to keep it from using
98 void UndoStack::undo() function in class:blink::UndoStack
119 // reapply will call us back to push this command onto the undo stack.
H A DEditor.h171 void undo();
/external/kernel-headers/original/uapi/linux/
H A Dsem.h7 #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/chromium_org/build/linux/unbundle/
H A Dreplace_gyp_files.py57 parser.add_option('--undo', action='store_true')
65 if options.undo:
71 # Create a backup copy for --undo.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.engine_2.0.0.v20100606.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.commands_3.6.0.I20100512-1500.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DTextEditor.js46 undo: function() { },
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dmost_visited_page.js202 var undo = {
216 [undo, undoAll]);
H A Dsuggestions_page.js172 * Shows notification that you can undo blacklisting.
182 var undo = {
196 [undo, undoAll]);
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp1123 virtual void undo() = 0;
1187 void undo() override {
1212 void undo() override {
1244 void undo() override {
1267 void undo() override {
1290 void undo() override {
1311 void undo() override {
1349 void undo() override {
1389 void undo() override {
1393 Replacer->undo();
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A Dexterns.js392 undo: function() { },
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dimage_editor.js177 * @return {boolean} True if undo queue is not empty.
186 ImageEditor.prototype.undo = function() {
188 this.recordToolUse('undo');
190 // First undo click should dismiss the uncommitted modifications.
198 this.commandQueue_.undo();
426 this.undoButton_ = createButton('undo',
428 this.undo.bind(this));
429 this.registerAction_('undo');
564 this.undo();
H A Dcommands.js9 * Supports undo/redo.
136 // Remember one previous image so that the first undo is as fast as possible.
180 CommandQueue.prototype.undo = function() {
182 throw new Error('Cannot undo');
198 // First undo after an execute call.
252 // Free memory used by the undo buffer.
/external/llvm/lib/Support/
H A Dregengine.inc646 case OLPAREN: /* must undo assignment if rest fails */
657 case ORPAREN: /* must undo assignment if rest fails */
/external/mksh/src/
H A Dedit.c3463 static struct edstate *undo; variable in typeref:struct:edstate
3527 undo = &undobuf;
3920 if (es->cursor == undo->cursor) {
3927 if (es->cursor >= undo->linelen)
3930 es->cbuf[es->cursor] = undo->cbuf[es->cursor];
4061 undo->winleft = es->winleft;
4062 memmove(undo->cbuf, es->cbuf, es->linelen);
4063 undo->linelen = es->linelen;
4064 undo->cursor = es->cursor;
4362 es = undo;
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DBookmarksBridge.java454 * Undo the last undoable action on the top of the bookmark undo stack
456 public void undo() { method in class:BookmarksBridge
461 * Start grouping actions for a single undo operation
469 * End grouping actions for a single undo operation

Completed in 3519 milliseconds

123