Home
last modified time | relevance | path

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

12345678

/external/python/cpython3/Lib/idlelib/
Drstrip.py15 undo = self.editwin.undo
17 undo.undo_block_start()
29 undo.undo_block_stop()
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')
Deditor.py52 from idlelib.undo import UndoDelegator
234 self.undo = undo = self.UndoDelegator()
235 per.insertfilter(undo)
236 text.undo_block_start = undo.undo_block_start
237 text.undo_block_stop = undo.undo_block_stop
238 undo.set_saved_change_hook(self.saved_change_hook)
666 self.per.removefilter(self.undo)
668 self.per.insertfilter(self.undo)
860 return self.undo.get_saved()
863 self.undo.set_saved(flag)
[all …]
Dconfig-keys.def40 undo=<Control-Key-z> <Control-Key-Z>
91 undo=<Control-Key-z>
142 undo = <Control-Key-z>
193 undo=<Command-Key-z>
245 undo = <Command-Key-z>
/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/toybox/toys/other/
Dhexedit.c33 int numlen, undo, undolen; argument
197 ll[TT.undo] = pos; in hexedit_main()
198 toybuf[(sizeof(long long)*UNDO_LEN)+TT.undo++] = TT.data[pos]; in hexedit_main()
200 TT.undo %= UNDO_LEN; in hexedit_main()
219 if (!TT.undo) TT.undo = UNDO_LEN; in hexedit_main()
220 pos = ll[--TT.undo]; in hexedit_main()
221 TT.data[pos] = toybuf[sizeof(long long)*UNDO_LEN+TT.undo]; in hexedit_main()
/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/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/swiftshader/third_party/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/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/python/cpython2/Demo/turtle/
Dtdemo_I_dontlike_tiltdemo.py50 undo()
Dtdemo_wikipedia.py57 t.undo()
/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/swiftshader/third_party/LLVM/test/CodeGen/PowerPC/
Dppc64-crash.ll3 ; ModuleID = 'undo.c'
/external/llvm/test/CodeGen/PowerPC/
Dppc64-crash.ll3 ; ModuleID = 'undo.c'
/external/skqp/samplecode/
DSampleAAGeometry.cpp897 PathUndo* undo = new PathUndo; in savePath() local
898 undo->fPath = fPath; in savePath()
899 undo->fNext = fUndo; in savePath()
900 fUndo = undo; in savePath()
903 bool undo() { in undo() function in AAGeometryView
916 PathUndo* undo = fUndo; in validatePath() local
918 while (undo) { in validatePath()
919 match += fPath == undo->fPath; in validatePath()
920 undo = undo->fNext; in validatePath()
1805 { 'Z', 0, "Z", "undo", &AAGeometryView::undo },
/external/skia/samplecode/
DSampleAAGeometry.cpp897 PathUndo* undo = new PathUndo; in savePath() local
898 undo->fPath = fPath; in savePath()
899 undo->fNext = fUndo; in savePath()
900 fUndo = undo; in savePath()
903 bool undo() { in undo() function in AAGeometryView
916 PathUndo* undo = fUndo; in validatePath() local
918 while (undo) { in validatePath()
919 match += fPath == undo->fPath; in validatePath()
920 undo = undo->fNext; in validatePath()
1805 { 'Z', 0, "Z", "undo", &AAGeometryView::undo },
/external/kernel-headers/original/uapi/linux/
Dsem.h31 struct sem_undo *undo; /* undo requests on this array */ member
/external/python/cpython3/Lib/idlelib/idle_test/
Dmock_idle.py40 self.undo = UndoDelegator()
/external/python/cpython2/Lib/idlelib/idle_test/
Dmock_idle.py40 self.undo = UndoDelegator()
/external/e2fsprogs/
DTODO242 layers on top of an existing I/O manager which provides an "undo"
243 functionality. This undo I/O manager takes will take two open I/O
244 managers, call them "base" and "undo". The "base" I/O manager is be
246 the I/O manager will check the "undo" I/O manager, using a file format
249 This is useful for allowing e2fsck to create an "undo" file, which
/external/e2fsprogs/tests/u_revert_all_onefile/
Dscript1 test_description="convert fs to 64bit,metadata_csum and revert as one undo file"
9 echo convert fs to 64bit,metadata_csum and revert both changes as one undo file > $OUT
/external/python/cpython3/Lib/turtledemo/
Dwikipedia.py57 t.undo()

12345678