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:horizontalDpi
(Results
1 - 6
of
6
) sorted by relevance
/base/print/print_fwk/frameworks/helper/print_helper/src/
H
A
D
print_resolution_helper.cpp
22
static constexpr const char *PARAM_RESOLUTION_HORIZONTALDPI = "
horizontalDpi
";
40
uint32_t
horizontalDpi
= NapiPrintUtils::GetUint32Property(env, jsValue, PARAM_RESOLUTION_HORIZONTALDPI);
in BuildFromJs()
local
51
nativeObj->SetHorizontalDpi(
horizontalDpi
);
in BuildFromJs()
/base/print/print_fwk/frameworks/models/print_models/src/
H
A
D
print_resolution.cpp
71
void PrintResolution::SetHorizontalDpi(uint32_t
horizontalDpi
)
in SetHorizontalDpi()
argument
73
horizontalDpi_ =
horizontalDpi
;
in SetHorizontalDpi()
/base/print/print_fwk/frameworks/ohprint/src/
H
A
D
print_converter.cpp
126
return std::to_string(resolution.
horizontalDpi
) + "x" + std::to_string(resolution.verticalDpi) + "dpi";
in GetResolutionString()
H
A
D
print_helper.cpp
295
if (!jsonObject.contains("
horizontalDpi
")) {
in ParseResolutionObject()
296
PRINT_HILOGW("
horizontalDpi
missing");
in ParseResolutionObject()
299
if (!jsonObject["
horizontalDpi
"].is_number()) {
in ParseResolutionObject()
300
PRINT_HILOGW("
horizontalDpi
is not string");
in ParseResolutionObject()
303
int xDpi = jsonObject["
horizontalDpi
"];
in ParseResolutionObject()
313
resolution.
horizontalDpi
= static_cast<uint32_t>(xDpi);
in ParseResolutionObject()
/base/print/print_fwk/frameworks/ohprint/include/
H
A
D
ohprint.h
171
uint32_t
horizontalDpi
;
member
/base/print/print_fwk/services/print_service/src/
H
A
D
vendor_helper.cpp
287
PRINT_HILOGD("dpi = %{public}u x %{public}u", capability->supportedResolutions[i].
horizontalDpi
,
in LogOtherCapability()
323
PRINT_HILOGD("defaultResolution = %{public}u x %{public}u", defaultValue->defaultResolution.
horizontalDpi
,
in LogDefaultValue()
555
uint32_t xRes = capability->supportedResolutions[i].
horizontalDpi
;
in UpdateResolutionCapability()
562
object["
horizontalDpi
"] = xRes;
in UpdateResolutionCapability()
578
object["
horizontalDpi
"] = defaultValue->defaultResolution.
horizontalDpi
;
in UpdateResolutionDefaultValue()
Completed in 5 milliseconds