HomeSort by relevance Sort by last modified time
    Searched defs:redo (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/base/core/java/android/content/
UndoOperation.java 97 * the temporary redo stack). The implementation should remove the original
104 * redo stack to the main undo stack. The implementation should re-apply
107 public abstract void redo(); method in class:UndoOperation
UndoManager.java 29 * a document or application. This class supports both undo and redo and has
33 * apps implement to define their undo/redo behavior. The UndoManager keeps
50 * undo/redo them without needing to impact edits in other objects; while
52 * undo/redo them as a single stream.</p>
265 * Perform redo of last/top <var>count</var> undo states in the transient redo stack.
273 public int redo(UndoOwner[] owners, int count) { method in class:UndoManager
285 state.redo();
297 * Returns true if we are currently inside of an undo/redo operation. This is
361 * Return the number of redo states on the undo stack
913 void redo() { method in class:UndoManager.UndoState
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorHistory.cpp 50 virtual bool redo(ExceptionState&) { return true; } function in class:WebCore::__anon12603::UndoableStateMark
127 bool InspectorHistory::redo(ExceptionState& es) function in class:WebCore::InspectorHistory
134 if (!action->redo(es)) {
DOMEditor.cpp 62 return redo(es);
71 virtual bool redo(ExceptionState& es) function in class:WebCore::DOMEditor::RemoveChildAction
115 virtual bool redo(ExceptionState& es) function in class:WebCore::DOMEditor::InsertBeforeAction
117 if (m_removeChildAction && !m_removeChildAction->redo(es))
143 return redo(es);
152 virtual bool redo(ExceptionState&) function in class:WebCore::DOMEditor::RemoveAttributeAction
181 return redo(es);
193 virtual bool redo(ExceptionState& es) function in class:WebCore::DOMEditor::SetAttributeAction
234 virtual bool redo(ExceptionState& es) function in class:WebCore::DOMEditor::SetOuterHTMLAction
236 return m_history->redo(es)
276 virtual bool redo(ExceptionState&) function in class:WebCore::DOMEditor::ReplaceWholeTextAction
310 virtual bool redo(ExceptionState& es) function in class:WebCore::DOMEditor::ReplaceChildNodeAction
344 virtual bool redo(ExceptionState&) function in class:WebCore::DOMEditor::SetNodeValueAction
    [all...]
InspectorCSSAgent.cpp 276 return redo(es);
288 virtual bool redo(ExceptionState& es) function in class:WebCore::InspectorCSSAgent::SetStyleSheetTextAction
332 return redo(es);
341 virtual bool redo(ExceptionState& es) function in class:WebCore::InspectorCSSAgent::SetStyleTextAction
384 return redo(es);
393 virtual bool redo(ExceptionState& es) function in class:WebCore::InspectorCSSAgent::SetPropertyTextAction
438 return redo(es);
446 virtual bool redo(ExceptionState& es) function in class:WebCore::InspectorCSSAgent::TogglePropertyAction
472 return redo(es);
480 virtual bool redo(ExceptionState& es function in class:WebCore::InspectorCSSAgent::SetRuleSelectorAction
510 virtual bool redo(ExceptionState& es) function in class:WebCore::InspectorCSSAgent::AddRuleAction
    [all...]
InspectorDOMAgent.cpp 1267 void InspectorDOMAgent::redo(ErrorString* errorString) function in class:WebCore::InspectorDOMAgent
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/history/
HistoryManager.java 153 public int redo() { method in class:HistoryManager
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMStorage.js 102 redo: function()
104 this._storageHistory.redo();
129 redo: function()
164 this.redo();
180 redo: function()
225 this.redo();
244 redo: function()
301 redo: function()
308 action.redo();
TextEditor.js 48 redo: function() { },
externs.js 468 redo: function() { },
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 6 #$ event <<redo>>
30 self.unbind("<<redo>>")
35 self.bind("<<redo>>", self.redo_event)
88 # undo & redo. Nested matching calls are OK, and the inner calls
153 cmd.redo(self.delegate)
185 def redo(self, text): member in class:Command
224 def redo(self, text): member in class:InsertCommand
229 ##sys.__stderr__.write("redo: %s\n" % self)
286 def redo(self, text): member in class:DeleteCommand
291 ##sys.__stderr__.write("redo: %s\n" % self
325 def redo(self, text): member in class:CommandSequence
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 6 #$ event <<redo>>
30 self.unbind("<<redo>>")
35 self.bind("<<redo>>", self.redo_event)
88 # undo & redo. Nested matching calls are OK, and the inner calls
153 cmd.redo(self.delegate)
185 def redo(self, text): member in class:Command
224 def redo(self, text): member in class:InsertCommand
229 ##sys.__stderr__.write("redo: %s\n" % self)
286 def redo(self, text): member in class:DeleteCommand
291 ##sys.__stderr__.write("redo: %s\n" % self
325 def redo(self, text): member in class:CommandSequence
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
EditorClientImpl.cpp 305 // unapply will call us back to push this command onto the redo stack.
309 void EditorClientImpl::redo() function in class:WebKit::EditorClientImpl
465 { 'Z', CtrlKey | ShiftKey, "Redo" },
466 { 'Y', CtrlKey, "Redo" },
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
commands.js 9 * Supports undo/redo.
157 * @param {boolean=} opt_keep_redo True if redo stack should not be cleared.
231 * @return {boolean} True if Redo is applicable.
240 CommandQueue.prototype.redo = function() {
242 throw new Error('Cannot redo');
image_editor.js 202 * Redo the recently un-done command.
204 ImageEditor.prototype.redo = function() {
206 this.recordToolUse('redo');
209 this.commandQueue_.redo();
214 * Update Undo/Redo buttons state.
428 this.redoButton_ = createButton('redo',
430 this.redo.bind(this));
431 this.registerAction_('redo');
568 this.redo();
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.cpp 1066 void Editor::redo() function in class:WebCore::Editor
    [all...]
  /external/valgrind/main/massif/
ms_main.c 866 Bool redo; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
org.eclipse.text_3.5.0.v20100601-1300.jar 
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-core-commands-3.6.0.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.commands_3.4.0.I20080509-2000.jar 
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-core-commands/3.6.0/
org-eclipse-core-commands-3.6.0.jar 
  /frameworks/base/core/java/android/widget/
Editor.java 4024 public void redo() { method in class:Editor.SelectionModifierCursorController.TextModifyOperation
    [all...]

Completed in 586 milliseconds

1 2