HomeSort by relevance Sort by last modified time
    Searched refs:UndoOperation (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/chrome/browser/undo/
undo_operation.h 9 class UndoOperation {
11 virtual ~UndoOperation() {}
undo_manager.h 12 class UndoOperation;
23 void AddOperation(scoped_ptr<UndoOperation> operation);
24 const std::vector<UndoOperation*>& undo_operations() {
30 ScopedVector<UndoOperation> operations_;
51 void AddUndoOperation(scoped_ptr<UndoOperation> operation);
65 std::vector<UndoOperation*> GetAllUndoOperations() const;
undo_manager.cc 26 void UndoGroup::AddOperation(scoped_ptr<UndoOperation> operation) {
31 for (ScopedVector<UndoOperation>::reverse_iterator ri = operations_.rbegin();
61 void UndoManager::AddUndoOperation(scoped_ptr<UndoOperation> operation) {
118 std::vector<UndoOperation*> UndoManager::GetAllUndoOperations() const {
119 std::vector<UndoOperation*> result;
121 const std::vector<UndoOperation*>& operations =
126 const std::vector<UndoOperation*>& operations =
undo_manager_test.cc 35 class TestUndoOperation : public UndoOperation {
40 // UndoOperation:
78 undo_manager_.AddUndoOperation(op.PassAs<UndoOperation>());
204 std::vector<UndoOperation*> all_operations =
  /frameworks/base/core/java/android/content/
UndoOperation.java 29 public abstract class UndoOperation<DATA> implements Parcelable {
37 public UndoOperation(UndoOwner owner) {
44 protected UndoOperation(Parcel src, ClassLoader loader) {
48 * Owning object as given to {@link #UndoOperation(UndoOwner)}.
UndoManager.java 32 * <p>A single undoable operation is represented by {@link UndoOperation} which
43 * <p>Every {link UndoOperation} is associated with an {@link UndoOwner}, which identifies
463 * Check whether there is an {@link UndoOperation} in the current {@link #beginUpdate}
478 * Return the most recent {@link UndoOperation} that was added to the update.
481 public UndoOperation<?> getLastOperation(int mergeMode) {
486 * Return the most recent {@link UndoOperation} that was added to the update and
494 public UndoOperation<?> getLastOperation(UndoOwner owner, int mergeMode) {
499 * Return the most recent {@link UndoOperation} that was added to the update and
510 public <T extends UndoOperation> T getLastOperation(Class<T> clazz, UndoOwner owner,
517 UndoOperation<?> last
    [all...]
  /frameworks/base/core/java/android/widget/
Editor.java 20 import android.content.UndoOperation;
    [all...]

Completed in 360 milliseconds