OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mundos
(Results
1 - 1
of
1
) sorted by null
/frameworks/base/core/java/android/content/
UndoManager.java
60
private final ArrayList<UndoState>
mUndos
= new ArrayList<UndoState>();
138
int i =
mUndos
.size();
142
mUndos
.get(i).writeToParcel(p);
187
mUndos
.add(0, ustate);
249
while (count > 0 && (i=findPrevState(
mUndos
, owners, i)) >= 0) {
250
UndoState state =
mUndos
.remove(i);
284
mUndos
.add(state);
305
count =
mUndos
.size();
310
while (i <
mUndos
.size() && removed < count) {
311
UndoState state =
mUndos
.get(i)
[
all
...]
Completed in 69 milliseconds