Home
last modified time | relevance | path

Searched refs:undo (Results 1 – 25 of 223) sorted by relevance

123456789

/external/python/cpython2/Lib/idlelib/
DRstripExtension.py15 undo = self.editwin.undo
17 undo.undo_block_start()
29 undo.undo_block_stop()
DUndoDelegator.py142 cmd.undo(self.delegate)
188 def undo(self, text): member in Command
231 def undo(self, text): member in InsertCommand
293 def undo(self, text): member in DeleteCommand
329 def undo(self, text): member in CommandSequence
333 cmd.undo(text)
354 undo = Button(root, text="Undo", command=lambda:d.undo_event(None))
355 undo.pack(side='left')
DEditorWindow.py305 self.undo = undo = self.UndoDelegator()
306 per.insertfilter(undo)
307 text.undo_block_start = undo.undo_block_start
308 text.undo_block_stop = undo.undo_block_stop
309 undo.set_saved_change_hook(self.saved_change_hook)
744 self.per.removefilter(self.undo)
746 self.per.insertfilter(self.undo)
936 return self.undo.get_saved()
939 self.undo.set_saved(flag)
942 self.undo.reset_undo()
[all …]
/external/escapevelocity/src/main/java/com/google/escapevelocity/
DEvaluationContext.java69 Runnable undo; in setVar() local
72 undo = () -> vars.put(var, oldValue); in setVar()
74 undo = () -> vars.remove(var); in setVar()
77 return undo; in setVar()
DDirectiveNode.java123 Runnable undo = context.setVar(var, null); in evaluate() local
132 undo.run(); in evaluate()
/external/toybox/toys/other/
Dhexedit.c36 int numlen, undo, undolen; argument
310 ll[TT.undo] = TT.pos; in hexedit_main()
311 toybuf[(sizeof(long long)*UNDO_LEN)+TT.undo++] = TT.data[TT.pos]; in hexedit_main()
313 TT.undo %= UNDO_LEN; in hexedit_main()
332 if (!TT.undo) TT.undo = UNDO_LEN; in hexedit_main()
333 TT.pos = ll[--TT.undo]; in hexedit_main()
334 TT.data[TT.pos] = toybuf[sizeof(long long)*UNDO_LEN+TT.undo]; in hexedit_main()
/external/python/cpython3/Lib/idlelib/
Dundo.py144 cmd.undo(self.delegate)
189 def undo(self, text): member in Command
231 def undo(self, text): member in InsertCommand
292 def undo(self, text): member in DeleteCommand
328 def undo(self, text): member in CommandSequence
332 cmd.undo(text)
354 undo = Button(undowin, text="Undo", command=lambda:d.undo_event(None))
355 undo.pack(side='left')
Dformat.py398 undo = self.editwin.undo
399 undo.undo_block_start()
421 undo.undo_block_stop()
Deditor.py52 from idlelib.undo import UndoDelegator
259 self.undo = undo = self.UndoDelegator()
260 per.insertfilter(undo)
261 text.undo_block_start = undo.undo_block_start
262 text.undo_block_stop = undo.undo_block_stop
263 undo.set_saved_change_hook(self.saved_change_hook)
785 self.per.removefilter(self.undo)
787 self.per.insertfilter(self.undo)
1006 return self.undo.get_saved()
1009 self.undo.set_saved(flag)
[all …]
/external/e2fsprogs/tests/u_mke2fs_opt_offset/
Dscript27 # dump undo header (just to ease debugging in case of a failure)
28 echo "undo header:" >> "$OUT"
31 # offset is stored in the undo header
82 # with an offset of 2048 the old code wrote an incorrect undo file,
/external/llvm-project/polly/lib/External/isl/
Disl_tab.c182 static void free_undo_record(struct isl_tab_undo *undo) in free_undo_record() argument
184 switch (undo->type) { in free_undo_record()
186 free(undo->u.col_var); in free_undo_record()
190 free(undo); in free_undo_record()
195 struct isl_tab_undo *undo, *next; in free_undo() local
197 for (undo = tab->top; undo && undo != &tab->bottom; undo = next) { in free_undo()
198 next = undo->next; in free_undo()
199 free_undo_record(undo); in free_undo()
201 tab->top = undo; in free_undo()
802 struct isl_tab_undo *undo; in push_union() local
[all …]
/external/llvm/test/Transforms/SimplifyCFG/
D2007-12-21-Crash.ll12 %undo.0.ph = phi i32 [ 0, %entry ], [ 1, %bb5.outer.loopexit ] ; <i32> [#uses=1]
24 %tmp12 = tail call i32 (...) @bar( i32 %undo.0.ph ) nounwind ; <i32> [#uses=0]
/external/llvm-project/llvm/test/Transforms/SimplifyCFG/
D2007-12-21-Crash.ll12 %undo.0.ph = phi i32 [ 0, %entry ], [ 1, %bb5.outer.loopexit ] ; <i32> [#uses=1]
24 %tmp12 = tail call i32 (...) @bar( i32 %undo.0.ph ) nounwind ; <i32> [#uses=0]
/external/python/cpython2/Demo/turtle/
Dtdemo_I_dontlike_tiltdemo.py50 undo()
Dtdemo_wikipedia.py57 t.undo()
/external/llvm/test/CodeGen/PowerPC/
Dppc64-crash.ll3 ; ModuleID = 'undo.c'
/external/rust/crates/uuid/
D.gitignore27 # Persistent undo
/external/e2fsprogs/tests/u_offset/
Dscript67 # test removal of the offset feature in the undo header
73 # offset feature will be removed from the undo header
/external/llvm-project/llvm/test/CodeGen/PowerPC/
Dppc64-crash.ll3 ; ModuleID = 'undo.c'
/external/kernel-headers/original/uapi/linux/
Dsem.h32 struct sem_undo *undo; /* undo requests on this array */ member
/external/python/cpython2/Lib/idlelib/idle_test/
Dmock_idle.py40 self.undo = UndoDelegator()
/external/python/cpython3/Lib/idlelib/idle_test/
Dmock_idle.py46 self.undo = UndoDelegator()
/external/cros/system_api/dbus/power_manager/
Dsuspend.proto34 // containing a SuspendDone message. The client should undo any pre-suspend
48 // "undo" operation when SuspendDone is received so it will run after the
51 // client may wish to unqueue the undo operation and instead report readiness
/external/python/cpython3/Lib/turtledemo/
Drosette.py57 t.undo()
/external/e2fsprogs/tests/u_not_undo/
Dscript1 test_description="e2undo a non-undo file"

123456789