HomeSort by relevance Sort by last modified time
    Searched refs:Undo (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/chrome/browser/undo/
undo_operation.h 8 // Base class for all undo operations.
13 virtual void Undo() = 0;
undo_manager.h 27 void Undo();
38 // undo and redo those operations.
44 // Perform an undo or redo operation.
45 void Undo();
57 // Suspend undo tracking while processing non-user initiated changes such as
63 // Returns all UndoOperations that are awaiting Undo or Redo. Note that
67 // Remove all undo and redo operations. Note that grouping of actions and
68 // suspension of undo tracking states are left unchanged.
72 void Undo(bool* performing_indicator,
76 // Handle the addition of |new_undo_group| to the active undo group container
    [all...]
undo_manager.cc 5 #include "chrome/browser/undo/undo_manager.h"
9 #include "chrome/browser/undo/undo_operation.h"
30 void UndoGroup::Undo() {
33 (*ri)->Undo();
53 void UndoManager::Undo() {
54 Undo(&performing_undo_, &undo_actions_);
58 Undo(&performing_redo_, &redo_actions_);
100 // Undo/Redo should have at least one operation performed.
140 void UndoManager::Undo(bool* performing_indicator,
154 action->Undo();
    [all...]
undo_manager_test.cc 6 #include "chrome/browser/undo/undo_manager.h"
7 #include "chrome/browser/undo/undo_operation.h"
41 virtual void Undo() OVERRIDE;
56 void TestUndoOperation::Undo() {
105 undo_service.undo_manager_.Undo();
109 undo_service.undo_manager_.Undo();
122 undo_service.undo_manager_.Undo();
147 undo_service.undo_manager_.Undo();
155 // Check that both operations were called in Undo and Redo.
179 undo_service.undo_manager_.Undo();
    [all...]
  /external/chromium_org/ui/views/controls/textfield/
textfield_views_model_unittest.cc     [all...]
textfield_views_model.h 32 // Internal Edit class that keeps track of edits for undo/redo.
175 // Undo edit. Returns true if undo changed the text.
176 bool Undo();
299 // This iterator moves from the |end()|, meaining no edit to undo,
301 // There is no edit to undo (== end()) when:
302 // 1) in initial state. (nothing to undo)
textfield_views_model.cc 27 // An edit object holds enough information/state to undo/redo the
31 // (For example, when you did undo/redo, or a text is appended via
45 void Undo(TextfieldViewsModel* model) {
321 Undo();
354 // No undo/redo for composition text.
375 // No undo/redo for composition text.
475 bool TextfieldViewsModel::Undo() {
485 (*current_edit_)->Undo(this);
516 // A trick to let undo/redo handle cursor correctly.
native_textfield_win.cc 74 // Suspend Undo processing.
76 text_object_model_->Undo(tomSuspend, NULL);
80 // Resume Undo processing.
82 text_object_model_->Undo(tomResume, NULL);
486 case IDS_APP_UNDO: Undo(); break;
665 // This replace selection will have no effect (even on the undo stack) if the
    [all...]
native_textfield_views.cc     [all...]
  /external/chromium_org/content/public/browser/
render_widget_host.h 132 virtual void Undo() = 0;
177 // Note: we cannot undo this change for compatibility with Firefox and IE.
  /external/chromium_org/v8/test/webkit/
dfg-get-by-val-clobber.js 42 // Undo.
49 // Undo.
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
commands.js 9 * Supports undo/redo.
136 // Remember one previous image so that the first undo is as fast as possible.
171 * @return {boolean} True if Undo is applicable.
178 * Undo the most recent command.
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.
image_editor.js 176 * @return {boolean} True if undo queue is not empty.
183 * Undo the recently executed command.
185 ImageEditor.prototype.undo = function() {
187 this.recordToolUse('undo');
189 // First undo click should dismiss the uncommitted modifications.
197 this.commandQueue_.undo();
214 * Update Undo/Redo buttons state.
423 this.undoButton_ = createButton('undo',
425 this.undo.bind(this));
426 this.registerAction_('undo');
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_impl.h 124 virtual void Undo() OVERRIDE;
    [all...]
render_widget_host_impl.cc     [all...]
render_widget_host_unittest.cc     [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.cc 305 // Suspend Undo processing.
307 text_object_model_->Undo(tomSuspend, NULL);
311 // Resume Undo processing.
313 text_object_model_->Undo(tomResume, NULL);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_view_win.cc 339 // Suspend Undo processing.
341 text_object_model_->Undo(tomSuspend, NULL);
345 // Resume Undo processing.
347 text_object_model_->Undo(tomResume, NULL);
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/metadata/
byte_reader.js 523 * Undo a previous seekPush.
  /external/chromium/chrome/browser/tab_contents/
render_view_context_menu.cc     [all...]
  /external/chromium_org/chrome/browser/tab_contents/
render_view_context_menu.cc 702 // Add undo/redo, cut/copy/paste etc for text fields.
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
gallery.js 580 /* TODO(dgozman): Implement Undo delete, Remove the confirmation dialog. */
slide_mode.js 931 // used Undo to restore the original image AND it is not a copy.
    [all...]
  /external/chromium_org/third_party/usb_ids/
usb.ids     [all...]
  /external/grub/docs/
texinfo.tex     [all...]

Completed in 778 milliseconds

1 2