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:w_full
(Results
1 - 3
of
3
) sorted by relevance
/third_party/mesa3d/src/imgui/
H
A
D
imgui.cpp
5635
void ImGui::PushMultiItemsWidths(int components, float
w_full
)
in PushMultiItemsWidths()
argument
5639
if (
w_full
<= 0.0f)
in PushMultiItemsWidths()
5640
w_full
= CalcItemWidth();
in PushMultiItemsWidths()
5641
const float w_item_one = ImMax(1.0f, (float)(int)((
w_full
- (style.ItemInnerSpacing.x) * (components-1)) / (float)components));
in PushMultiItemsWidths()
5642
const float w_item_last = ImMax(1.0f, (float)(int)(
w_full
- (w_item_one + style.ItemInnerSpacing.x) * (components-1)));
in PushMultiItemsWidths()
/third_party/skia/third_party/externals/imgui/
H
A
D
imgui_widgets.cpp
4825
const float
w_full
= CalcItemWidth();
4827
const float w_inputs =
w_full
- w_button;
4987
const float text_offset_x = (flags & ImGuiColorEditFlags_NoInputs) ? w_button :
w_full
+ style.ItemInnerSpacing.x;
H
A
D
imgui.cpp
7713
void ImGui::PushMultiItemsWidths(int components, float
w_full
)
in PushMultiItemsWidths()
argument
7718
const float w_item_one = ImMax(1.0f, IM_FLOOR((
w_full
- (style.ItemInnerSpacing.x) * (components - 1)) / (float)components));
in PushMultiItemsWidths()
7719
const float w_item_last = ImMax(1.0f, IM_FLOOR(
w_full
- (w_item_one + style.ItemInnerSpacing.x) * (components - 1)));
in PushMultiItemsWidths()
Completed in 49 milliseconds