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:win_size_avail_v
(Results
1 - 1
of
1
) sorted by relevance
/third_party/mesa3d/src/imgui/
H
A
D
imgui_widgets.cpp
770
float
win_size_avail_v
= (horizontal ? window->SizeFull.x : window->SizeFull.y) - other_scrollbar_size_w;
in Scrollbar()
local
775
IM_ASSERT(ImMax(win_size_contents_v,
win_size_avail_v
) > 0.0f); // Adding this assert to check if the ImMax(XXX,1.0f) is still needed. PLEASE CONTACT ME if this triggers.
in Scrollbar()
776
const float win_size_v = ImMax(ImMax(win_size_contents_v,
win_size_avail_v
), 1.0f);
in Scrollbar()
777
const float grab_h_pixels = ImClamp(scrollbar_size_v * (
win_size_avail_v
/ win_size_v), style.GrabMinSize, scrollbar_size_v);
in Scrollbar()
786
float scroll_max = ImMax(1.0f, win_size_contents_v -
win_size_avail_v
);
in Scrollbar()
Completed in 9 milliseconds