OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UndoOperation
(Results
1 - 8
of
8
) 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 =
bookmark_undo_service.cc
23
class BookmarkUndoOperation : public
UndoOperation
,
57
//
UndoOperation
:
105
//
UndoOperation
:
171
//
UndoOperation
:
219
//
UndoOperation
:
284
//
UndoOperation
:
343
std::vector<
UndoOperation
*> all_operations =
345
for (std::vector<
UndoOperation
*>::iterator it = all_operations.begin();
365
scoped_ptr<
UndoOperation
> op(new BookmarkMoveOperation(profile_,
376
scoped_ptr<
UndoOperation
> op(new BookmarkAddOperation(profile_
[
all
...]
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 45 milliseconds