Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:redo_point
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mesa3d/src/imgui/
H
A
D
imstb_textedit.h
315
short undo_point,
redo_point
;
member
1093
state->
redo_point
= STB_TEXTEDIT_UNDOSTATECOUNT;
in stb_textedit_flush_redo()
1124
if (state->
redo_point
<= k) {
in stb_textedit_discard_redo()
1132
for (i=state->
redo_point
; i < k; ++i)
in stb_textedit_discard_redo()
1136
// now move all the redo records towards the end of the buffer; the first one is at '
redo_point
'
in stb_textedit_discard_redo()
1138
size_t move_size = (size_t)((STB_TEXTEDIT_UNDOSTATECOUNT - state->
redo_point
- 1) * sizeof(state->undo_rec[0]));
in stb_textedit_discard_redo()
1141
IM_ASSERT(((char*)(state->undo_rec + state->
redo_point
)) >= buf_begin);
in stb_textedit_discard_redo()
1142
IM_ASSERT(((char*)(state->undo_rec + state->
redo_point
+ 1) + move_size) <= buf_end);
in stb_textedit_discard_redo()
1143
STB_TEXTEDIT_memmove(state->undo_rec + state->
redo_point
+1, state->undo_rec + state->
redo_point
, move_siz
in stb_textedit_discard_redo()
[all...]
/third_party/skia/third_party/externals/imgui/
H
A
D
imstb_textedit.h
313
short undo_point,
redo_point
;
member
1124
state->
redo_point
= STB_TEXTEDIT_UNDOSTATECOUNT;
in stb_textedit_flush_redo()
1155
if (state->
redo_point
<= k) {
in stb_textedit_discard_redo()
1163
for (i=state->
redo_point
; i < k; ++i)
in stb_textedit_discard_redo()
1167
// now move all the redo records towards the end of the buffer; the first one is at '
redo_point
'
in stb_textedit_discard_redo()
1169
size_t move_size = (size_t)((STB_TEXTEDIT_UNDOSTATECOUNT - state->
redo_point
- 1) * sizeof(state->undo_rec[0]));
in stb_textedit_discard_redo()
1172
IM_ASSERT(((char*)(state->undo_rec + state->
redo_point
)) >= buf_begin);
in stb_textedit_discard_redo()
1173
IM_ASSERT(((char*)(state->undo_rec + state->
redo_point
+ 1) + move_size) <= buf_end);
in stb_textedit_discard_redo()
1174
STB_TEXTEDIT_memmove(state->undo_rec + state->
redo_point
+1, state->undo_rec + state->
redo_point
, move_siz
in stb_textedit_discard_redo()
[all...]
H
A
D
imgui_internal.h
1029
int GetRedoAvailCount() const { return STB_TEXTEDIT_UNDOSTATECOUNT - Stb.undostate.
redo_point
; }
/third_party/glfw/deps/
H
A
D
nuklear.h
4265
short
redo_point
;
member
22408
state->
redo_point
= NK_TEXTEDIT_UNDOSTATECOUNT;
in nk_textedit_flush_redo()
22443
if (state->
redo_point
<= k) {
in nk_textedit_discard_redo()
22452
for (i = state->
redo_point
; i < k; ++i) {
in nk_textedit_discard_redo()
22459
++state->
redo_point
;
in nk_textedit_discard_redo()
22460
num = (nk_size)(NK_TEXTEDIT_UNDOSTATECOUNT - state->
redo_point
);
in nk_textedit_discard_redo()
22461
if (num) NK_MEMCPY(state->undo_rec + state->
redo_point
-1,
in nk_textedit_discard_redo()
22462
state->undo_rec + state->
redo_point
, num * sizeof(state->undo_rec[0]));
in nk_textedit_discard_redo()
22521
r = &s->undo_rec[s->
redo_point
-1];
in nk_textedit_undo()
22549
if (s->
redo_point
in nk_textedit_undo()
[all...]
Completed in 48 milliseconds