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:minSize_
(Results
1 - 3
of
3
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components/common/layout/
H
A
D
layout_param.h
46
return
minSize_
;
in GetMinSize()
51
minSize_
= size;
in SetMinSize()
56
minSize_
= size;
in SetFixedSize()
77
return (
minSize_
.Width() >= maxSize_.Width()) && (
minSize_
.Height() >= maxSize_.Height());
in IsTight()
82
return (maxSize_.Width() >=
minSize_
.Width()) && (maxSize_.Width() > 0.0);
in IsWidthValid()
87
return (maxSize_.Height() >=
minSize_
.Height()) && (maxSize_.Height() > 0.0);
in IsHeightValid()
96
constrainSize.SetWidth(std::clamp(size.Width(),
minSize_
.Width(), maxSize_.Width()));
in Constrain()
101
constrainSize.SetHeight(std::clamp(size.Height(),
minSize_
.Height(), maxSize_.Height()));
in Constrain()
108
Size min = layoutParam.Constrain(
minSize_
);
in Enforce()
[all...]
/foundation/arkui/ui_lite/frameworks/font/
H
A
D
ui_font_allocator.cpp
26
: ram_(nullptr), ramSize_(0), freeSize_(0),
minSize_
(0), end_(nullptr), free_(nullptr)
in UIFontAllocator()
70
minSize_
= UI_ALIGN_UP(size);
in SetMinChunkSize()
82
if (size <
minSize_
) {
in Allocate()
83
size =
minSize_
;
in Allocate()
97
if (left >= sizeof(struct Chunk) +
minSize_
) {
in Allocate()
H
A
D
ui_font_allocator.h
69
uint32_t
minSize_
;
member in OHOS::UIFontAllocator
Completed in 2 milliseconds