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:SetScrollHereY
(Results
1 - 5
of
5
) sorted by relevance
/third_party/mesa3d/src/imgui/
H
A
D
imgui.h
295
IMGUI_API void
SetScrollHereY
(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a "default/current item" visible, consider using SetItemDefaultFocus() instead.
597
// - Prefer using "SetItemDefaultFocus()" over "if (IsWindowAppearing())
SetScrollHereY
()" when applicable to signify "this is the default item"
1489
static inline void SetScrollHere(float center_ratio=0.5f){
SetScrollHereY
(center_ratio); }
in SetScrollHere()
H
A
D
imgui.cpp
374
- 2018/09/28 (1.66) - renamed SetScrollHere() to
SetScrollHereY
(). Kept redirection function (will obsolete).
2188
// Set cursor position and a few other things so that
SetScrollHereY
() and Columns() can work when seeking cursor.
in SetCursorPosYAndSetupDummyPrevLine()
2193
window->DC.CursorPosPrevLine.y = window->DC.CursorPos.y - line_height; // Setting those fields so that
SetScrollHereY
() can properly function after the end of our clipper usage.
in SetCursorPosYAndSetupDummyPrevLine()
6429
void ImGui::
SetScrollHereY
(float center_y_ratio)
in SetScrollHereY()
function in ImGui
6464
SetScrollHereY
();
in SetItemDefaultFocus()
/third_party/skia/third_party/externals/imgui/
H
A
D
imgui_demo.cpp
2803
HelpMarker("Use
SetScrollHereY
() or SetScrollFromPosY() to scroll to a given vertical position.");
in ShowDemoWindowLayout()
2851
if (child_is_visible) // Avoid calling
SetScrollHereY
when running with culled items
in ShowDemoWindowLayout()
2858
ImGui::
SetScrollHereY
(i * 0.25f); // 0.0f:top, 0.5f:center, 1.0f:bottom
in ShowDemoWindowLayout()
2892
if (child_is_visible) // Avoid calling
SetScrollHereY
when running with culled items
in ShowDemoWindowLayout()
6390
ImGui::
SetScrollHereY
(1.0f);
6696
ImGui::
SetScrollHereY
(1.0f);
H
A
D
imgui.h
397
IMGUI_API void
SetScrollHereY
(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a "default/current item" visible, consider using SetItemDefaultFocus() instead.
830
// - Prefer using "SetItemDefaultFocus()" over "if (IsWindowAppearing())
SetScrollHereY
()" when applicable to signify "this is the default item"
2865
//static inline void SetScrollHere(float ratio = 0.5f) {
SetScrollHereY
(ratio); } // OBSOLETED in 1.66 (from Nov 2018)
H
A
D
imgui.cpp
404
- ImGui::SetScrollHere() -> use ImGui::
SetScrollHereY
()
502
- 2018/09/28 (1.66) - renamed SetScrollHere() to
SetScrollHereY
(). Kept redirection function (will obsolete).
2289
// Set cursor position and a few other things so that
SetScrollHereY
() and Columns() can work when seeking cursor.
in SetCursorPosYAndSetupForPrevLine()
2297
window->DC.CursorPosPrevLine.y = window->DC.CursorPos.y - line_height; // Setting those fields so that
SetScrollHereY
() can properly function after the end of our clipper usage.
in SetCursorPosYAndSetupForPrevLine()
8176
void ImGui::
SetScrollHereY
(float center_y_ratio)
in SetScrollHereY()
function in ImGui
Completed in 68 milliseconds