Home
last modified time | relevance | path

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

123456789

/third_party/toybox/toys/other/
Dhexedit.c33 int numlen, undo, undolen; argument
198 ll[TT.undo] = pos; in hexedit_main()
199 toybuf[(sizeof(long long)*UNDO_LEN)+TT.undo++] = TT.data[pos]; in hexedit_main()
201 TT.undo %= UNDO_LEN; in hexedit_main()
220 if (!TT.undo) TT.undo = UNDO_LEN; in hexedit_main()
221 pos = ll[--TT.undo]; in hexedit_main()
222 TT.data[pos] = toybuf[sizeof(long long)*UNDO_LEN+TT.undo]; in hexedit_main()
/third_party/python/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)
787 self.per.insertfilterafter(filter=self.color, after=self.undo)
1006 return self.undo.get_saved()
1009 self.undo.set_saved(flag)
1012 self.undo.reset_undo()
[all …]
/third_party/ltp/tools/sparse/sparse-src/Documentation/sphinx/
Dcdoc.py80 def undo(self): member in Lines
93 lines.undo()
135 lines.undo() ## end of doc-block
143 lines.undo()
155 lines.undo()
/third_party/musl/src/thread/
Dpthread_once.c3 static void undo(void *control) in undo() function
21 pthread_cleanup_push(undo, control); in __pthread_once_full()
/third_party/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,
/third_party/flutter/flutter/dev/manual_tests/lib/
Dactions.dart39 /// The maximum number of undo levels allowed.
86 // Enforces undo level limit.
114 bool undo() {
120 action.undo();
147 properties.add(IterableProperty<UndoableAction>('undo stack', _completedActions));
181 manager?.undo();
227 void undo();
256 void undo() {
/third_party/mbedtls/scripts/
Dtmp_ignore_makefiles.sh28 -u|--undo)
/third_party/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
/third_party/EGL/sdk/docs/man/xhtml/
Dundohtml.css1 /* -- undo browser HTML defaults -- */
/third_party/skia/third_party/externals/egl-registry/sdk/docs/man/xhtml/
Dundohtml.css1 /* -- undo browser HTML defaults -- */
/third_party/EGL/sdk/docs/man/html/
Dundohtml.css1 /* -- undo browser HTML defaults -- */
/third_party/skia/third_party/externals/egl-registry/sdk/docs/man/html/
Dundohtml.css1 /* -- undo browser HTML defaults -- */
/third_party/python/Lib/idlelib/idle_test/
Dmock_idle.py46 self.undo = UndoDelegator()
/third_party/boost/boost/multi_index/
Dhashed_index.hpp975 unlink_undo undo; in replace_() local
976 unlink(x,undo); in replace_()
985 undo(); in replace_()
989 undo(); in replace_()
1064 unlink_undo undo; in modify_rollback_() local
1065 unlink(x,undo); in modify_rollback_()
1073 undo(); in modify_rollback_()
1077 undo(); in modify_rollback_()
1345 void unlink(index_node_type* x,unlink_undo& undo) in unlink() argument
1347 node_alg::unlink(x->impl(),undo); in unlink()
/third_party/python/Lib/turtledemo/
Drosette.py57 t.undo()
/third_party/e2fsprogs/tests/u_not_undo/
Dscript1 test_description="e2undo a non-undo file"
/third_party/e2fsprogs/tests/u_revert_all_onefile/
Dscript1 test_description="convert 64bit,mcsum and revert undo file"
9 echo convert fs to 64bit,metadata_csum and revert both changes as one undo file > $OUT
/third_party/weston/compositor/
Dmain.c2048 struct wet_head_array *undo, in drm_try_enable() argument
2057 while (undo->n > 0 && undo->heads[--undo->n] == NULL) in drm_try_enable()
2061 if (undo->heads[undo->n] == NULL) in drm_try_enable()
2067 weston_head_detach(undo->heads[undo->n]); in drm_try_enable()
2068 failed->heads[failed->n++] = undo->heads[undo->n]; in drm_try_enable()
2069 undo->heads[undo->n] = NULL; in drm_try_enable()
/third_party/ntfs-3g/ntfsprogs/
Dntfsrecover.c1866 unsigned int undo; in detaillogr() local
1958 undo = sizeof(LOG_RECORD) - 8 in detaillogr()
1961 redo = undo; in detaillogr()
1963 redo = undo + ((le16_to_cpu(logr->undo_length) - 1) | 7) + 1; in detaillogr()
1970 undo = redo + ((le16_to_cpu(logr->redo_length) - 1) | 7) + 1; in detaillogr()
1971 extra = undo + ((le16_to_cpu(logr->undo_length) - 1) | 7) + 1; in detaillogr()
1978 redo = undo = sizeof(LOG_RECORD) - 8 in detaillogr()
1985 redo = undo = sizeof(LOG_RECORD) - 8 in detaillogr()
1987 extra = undo + ((le16_to_cpu(logr->undo_length) - 1) | 7) + 1; in detaillogr()
1992 undo,(int)(((le16_to_cpu(logr->undo_length) - 1) | 7) + 1), in detaillogr()
[all …]
/third_party/cef/include/capi/
Dcef_frame_capi.h79 void(CEF_CALLBACK* undo)(struct _cef_frame_t* self);
/third_party/flutter/skia/samplecode/
DSampleAAGeometry.cpp881 std::unique_ptr<PathUndo> undo = std::move(fUndo); in ~AAGeometryView() local
882 while (undo) { in ~AAGeometryView()
883 undo = std::move(undo->fNext); in ~AAGeometryView()
899 std::unique_ptr<PathUndo> undo(new PathUndo); in savePath() local
900 undo->fPath = fPath; in savePath()
901 undo->fNext = std::move(fUndo); in savePath()
902 fUndo = std::move(undo); in savePath()
905 bool undo() { in undo() function in AAGeometryView
1799 { 'Z', 0, "Z", "undo", &AAGeometryView::undo },
/third_party/cef/libcef_dll/ctocpp/
Dframe_ctocpp.cc48 if (CEF_MEMBER_MISSING(_struct, undo)) in Undo()
54 _struct->undo(_struct); in Undo()
/third_party/e2fsprogs/tests/u_onefile_bad/
Dscript1 test_description="check that we cant append a bad undo file"
9 echo check that we cant append a bad undo file > $OUT

123456789