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:thisDistance
(Results
1 - 3
of
3
) sorted by relevance
/base/global/resource_management_lite/frameworks/resmgr_lite/src/
H
A
D
res_config_impl.cpp
240
int
thisDistance
= this->screenDensity_ - request->screenDensity_;
in IsMoreSuitable()
local
242
if (
thisDistance
>= 0 && otherDistance >= 0) {
in IsMoreSuitable()
243
return (
thisDistance
<= otherDistance);
in IsMoreSuitable()
245
if (
thisDistance
> 0) {
in IsMoreSuitable()
251
return (
thisDistance
>= otherDistance);
in IsMoreSuitable()
/base/global/resource_management/frameworks/resmgr/src/
H
A
D
res_config_impl.cpp
605
int
thisDistance
;
in IsDensityMoreSuitable()
local
610
thisDistance
= this->screenDensityDpi_ - requestDensity;
in IsDensityMoreSuitable()
612
if (IsDensityMoreSuitable(
thisDistance
, otherDistance)) {
in IsDensityMoreSuitable()
622
thisDistance
= static_cast<int>(this->screenDensityDpi_ - density);
in IsDensityMoreSuitable()
624
if (IsDensityMoreSuitable(
thisDistance
, otherDistance)) {
in IsDensityMoreSuitable()
636
bool ResConfigImpl::IsDensityMoreSuitable(int
thisDistance
, int otherDistance) const
in IsDensityMoreSuitable()
argument
638
if (
thisDistance
>= 0 && otherDistance >= 0) {
in IsDensityMoreSuitable()
639
return (
thisDistance
<= otherDistance);
in IsDensityMoreSuitable()
641
if (
thisDistance
> 0) {
in IsDensityMoreSuitable()
647
return (
thisDistance
>
in IsDensityMoreSuitable()
755
int
thisDistance
= static_cast<int>(this->screenDensityDpi_ - density);
IsDensityMoreSpecificThan()
local
[all...]
/base/global/resource_management/frameworks/resmgr/include/
H
A
D
res_config_impl.h
239
bool IsDensityMoreSuitable(int
thisDistance
, int otherDistance) const;
Completed in 3 milliseconds