HomeSort by relevance Sort by last modified time
    Searched refs:Undo (Results 1 - 25 of 44) 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;
15 // Returns the resource string id describing the undo/redo of this operation
undo_manager.h 30 void Undo();
32 // The resource string id describing the undo and redo action.
42 // The resource string id describing the undo and redo action.
52 // undo and redo those operations.
58 // Perform an undo or redo operation.
59 void Undo();
74 // Suspend undo tracking while processing non-user initiated changes such as
80 // Returns all UndoOperations that are awaiting Undo or Redo. Note that
84 // Remove all undo and redo operations. Note that grouping of actions and
85 // suspension of undo tracking states are left unchanged
    [all...]
undo_manager.cc 5 #include "chrome/browser/undo/undo_manager.h"
9 #include "chrome/browser/undo/undo_manager_observer.h"
10 #include "chrome/browser/undo/undo_operation.h"
39 void UndoGroup::Undo() {
42 (*ri)->Undo();
63 void UndoManager::Undo() {
64 Undo(&performing_undo_, &undo_actions_);
68 Undo(&performing_redo_, &redo_actions_);
122 // Undo/Redo should have at least one operation performed.
152 // Ensure that if an Undo is in progress the UndoOperations part of tha
    [all...]
undo_manager_test.cc 6 #include "chrome/browser/undo/undo_manager.h"
7 #include "chrome/browser/undo/undo_manager_observer.h"
8 #include "chrome/browser/undo/undo_operation.h"
42 virtual void Undo() OVERRIDE;
59 void TestUndoOperation::Undo() {
132 undo_service.undo_manager_.Undo();
136 undo_service.undo_manager_.Undo();
149 undo_service.undo_manager_.Undo();
174 undo_service.undo_manager_.Undo();
182 // Check that both operations were called in Undo and Redo
    [all...]
bookmark_undo_service.cc 5 #include "chrome/browser/undo/bookmark_undo_service.h"
9 #include "chrome/browser/undo/bookmark_renumber_observer.h"
10 #include "chrome/browser/undo/bookmark_undo_service_factory.h"
11 #include "chrome/browser/undo/undo_operation.h"
54 // Handles the undo of the insertion of a bookmark or folder.
61 virtual void Undo() OVERRIDE;
83 void BookmarkAddOperation::Undo() {
107 // Handles the undo of the deletion of a bookmark node. For a bookmark folder,
120 virtual void Undo() OVERRIDE;
149 void BookmarkRemoveOperation::Undo() {
    [all...]
bookmark_undo_service_test.cc 5 #include "chrome/browser/undo/bookmark_undo_service.h"
9 #include "chrome/browser/undo/bookmark_undo_service_factory.h"
65 // Undo bookmark creation and test for no bookmarks.
66 undo_service->undo_manager()->Undo();
89 // Undo the deletion of the only bookmark and check the bookmark values.
90 undo_service->undo_manager()->Undo();
107 // Ensure the undo/redo works for editing of bookmark information grouped into
126 // Undo the modification of the bookmark and check for the original values.
127 undo_service->undo_manager()->Undo();
164 // Undo the move and check that the nodes are in order
    [all...]
  /external/chromium_org/ui/views/controls/textfield/
textfield_model_unittest.cc     [all...]
textfield_model.cc 20 // Edit holds state information to undo/redo editing changes. Editing operations
34 void Undo(TextfieldModel* model) {
298 Undo();
327 // No undo/redo for composition text.
348 // No undo/redo for composition text.
449 bool TextfieldModel::Undo() {
459 (*current_edit_)->Undo(this);
489 // A trick to let undo/redo handle cursor correctly.
textfield_model.h 22 // Internal Edit class that keeps track of edits for undo/redo.
159 // Undo edit. Returns true if undo changed the text.
160 bool Undo();
274 // This iterator moves from the |end()|, meaining no edit to undo,
277 // There is no edit to undo (== end()) when:
278 // 1) in initial state. (nothing to undo)
  /external/pdfium/fpdfsdk/include/formfiller/
FFL_TextField.h 24 virtual void Undo();
  /external/chromium_org/v8/test/webkit/
dfg-get-by-val-clobber.js 42 // Undo.
49 // Undo.
  /art/runtime/
transaction.h 90 void Undo(mirror::Object* obj) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
121 void Undo(mirror::Array* obj) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
151 void Undo(InternTable* intern_table)
transaction.cc 134 it.second.Undo(it.first);
143 it.second.Undo(it.first);
150 // We want to undo each operation from the most recent to the oldest. List has been filled so the
153 string_log.Undo(intern_table);
259 void Transaction::ObjectLog::Undo(mirror::Object* obj) {
329 void Transaction::InternStringLog::Undo(InternTable* intern_table) {
377 void Transaction::ArrayLog::Undo(mirror::Array* array) {
  /external/pdfium/fpdfsdk/include/fxedit/
fxet_edit.h 290 void Undo();
353 virtual void Undo();
373 void Undo();
393 void Undo();
413 void Undo();
435 void Undo();
456 void Undo();
475 void Undo();
498 void Undo();
520 void Undo();
    [all...]
fx_edit.h 146 virtual void Undo() = 0;
309 //do Undo operation.
310 virtual FX_BOOL Undo() = 0;
322 //allow undo/redo?
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventFactoryMac.mm 642 // "Undo"
644 return @"Undo";
    [all...]
  /external/pdfium/fpdfsdk/include/pdfwindow/
PWL_EditCtrl.h 120 void Undo();
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_EditCtrl.cpp 290 Undo();
631 void CPWL_EditCtrl::Undo()
634 m_pEdit->Undo();
  /external/chromium_org/ui/accessibility/extensions/alt/
hide-images.js 98 undoButton.textContent = 'Undo';
  /external/chromium_org/athena/content/
render_view_context_menu_impl.cc 249 source_web_contents_->Undo();
  /external/chromium_org/chrome/browser/android/bookmarks/
bookmarks_bridge.h 137 void Undo(JNIEnv* env, jobject obj);
  /external/chromium_org/content/public/browser/
web_contents.h 366 virtual void Undo() = 0;
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_edit.cpp 367 void CFX_Edit_Undo::Undo()
376 pItem->Undo();
534 void CFX_Edit_GroupUndoItem::Undo()
541 pUndoItem->Undo();
590 void CFXEU_InsertWord::Undo()
630 void CFXEU_InsertReturn::Undo()
670 void CFXEU_Backspace::Undo()
718 void CFXEU_Delete::Undo()
759 void CFXEU_Clear::Undo()
801 void CFXEU_ClearRich::Undo()
    [all...]
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_context_menu_controller.cc 21 #include "chrome/browser/undo/bookmark_undo_service.h"
22 #include "chrome/browser/undo/bookmark_undo_service_factory.h"
182 Undo();
  /external/pdfium/fpdfsdk/src/formfiller/
FFL_TextField.cpp 21 void CFFL_EditUndoItem::Undo()

Completed in 2772 milliseconds

1 2