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:item_rect
(Results
1 - 2
of
2
) sorted by relevance
/third_party/skia/third_party/externals/imgui/
H
A
D
imgui.cpp
8001
void ImGui::ScrollToRect(ImGuiWindow* window, const ImRect&
item_rect
, ImGuiScrollFlags flags)
in ScrollToRect()
argument
8003
ScrollToRectEx(window,
item_rect
, flags);
in ScrollToRect()
8007
ImVec2 ImGui::ScrollToRectEx(ImGuiWindow* window, const ImRect&
item_rect
, ImGuiScrollFlags flags)
in ScrollToRectEx()
argument
8024
const bool fully_visible_x =
item_rect
.Min.x >= window_rect.Min.x &&
item_rect
.Max.x <= window_rect.Max.x;
in ScrollToRectEx()
8025
const bool fully_visible_y =
item_rect
.Min.y >= window_rect.Min.y &&
item_rect
.Max.y <= window_rect.Max.y;
in ScrollToRectEx()
8026
const bool can_be_fully_visible_x =
item_rect
.GetWidth() <= window_rect.GetWidth();
in ScrollToRectEx()
8027
const bool can_be_fully_visible_y =
item_rect
.GetHeight() <= window_rect.GetHeight();
in ScrollToRectEx()
8031
if (
item_rect
in ScrollToRectEx()
[all...]
/third_party/mesa3d/src/imgui/
H
A
D
imgui.cpp
7540
static void NavScrollToBringItemIntoView(ImGuiWindow* window, const ImRect&
item_rect
)
in NavScrollToBringItemIntoView()
argument
7544
if (window_rect.Contains(
item_rect
))
in NavScrollToBringItemIntoView()
7548
if (window->ScrollbarX &&
item_rect
.Min.x < window_rect.Min.x)
in NavScrollToBringItemIntoView()
7550
window->ScrollTarget.x =
item_rect
.Min.x - window->Pos.x + window->Scroll.x - g.Style.ItemSpacing.x;
in NavScrollToBringItemIntoView()
7553
else if (window->ScrollbarX &&
item_rect
.Max.x >= window_rect.Max.x)
in NavScrollToBringItemIntoView()
7555
window->ScrollTarget.x =
item_rect
.Max.x - window->Pos.x + window->Scroll.x + g.Style.ItemSpacing.x;
in NavScrollToBringItemIntoView()
7558
if (
item_rect
.Min.y < window_rect.Min.y)
in NavScrollToBringItemIntoView()
7560
window->ScrollTarget.y =
item_rect
.Min.y - window->Pos.y + window->Scroll.y - g.Style.ItemSpacing.y;
in NavScrollToBringItemIntoView()
7563
else if (
item_rect
.Max.y >= window_rect.Max.y)
in NavScrollToBringItemIntoView()
7565
window->ScrollTarget.y =
item_rect
in NavScrollToBringItemIntoView()
[all...]
Completed in 32 milliseconds