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:preferencesValue
(Results
1 - 4
of
4
) sorted by relevance
/foundation/distributeddatamgr/preferences/frameworks/native/src/
H
A
D
preferences_value.cpp
20
PreferencesValue::PreferencesValue(const PreferencesValue &
preferencesValue
)
in PreferencesValue()
argument
22
if (this == &
preferencesValue
) {
in PreferencesValue()
25
value_ =
preferencesValue
.value_;
in PreferencesValue()
28
PreferencesValue::PreferencesValue(PreferencesValue &&
preferencesValue
) noexcept
30
if (this == &
preferencesValue
) {
33
value_ = std::move(
preferencesValue
.value_);
101
PreferencesValue &PreferencesValue::operator=(PreferencesValue &&
preferencesValue
) noexcept
103
if (this == &
preferencesValue
) {
106
value_ = std::move(
preferencesValue
.value_);
110
PreferencesValue &PreferencesValue::operator=(const PreferencesValue &
preferencesValue
)
in operator =()
argument
[all...]
H
A
D
preferences_base.cpp
55
PreferencesValue
preferencesValue
= Get(key, defValue);
local
56
if (!
preferencesValue
.IsInt()) {
59
return
preferencesValue
;
64
PreferencesValue
preferencesValue
= Get(key, defValue);
local
65
if (!
preferencesValue
.IsString()) {
68
return
preferencesValue
;
72
PreferencesValue
preferencesValue
= Get(key, defValue);
local
73
if (!
preferencesValue
.IsBool()) {
76
return
preferencesValue
;
80
PreferencesValue
preferencesValue
local
89
PreferencesValue
preferencesValue
= Get(key, defValue);
global()
local
98
PreferencesValue
preferencesValue
= Get(key, defValue);
global()
local
[all...]
/foundation/distributeddatamgr/preferences/interfaces/inner_api/include/
H
A
D
preferences_value.h
69
PREF_API_EXPORT PreferencesValue(PreferencesValue &&
preferencesValue
) noexcept;
74
PREF_API_EXPORT PreferencesValue(const PreferencesValue &
preferencesValue
);
189
PREF_API_EXPORT PreferencesValue &operator=(PreferencesValue &&
preferencesValue
) noexcept;
194
PreferencesValue &operator=(const PreferencesValue &
preferencesValue
);
/foundation/distributeddatamgr/preferences/frameworks/cj/src/
H
A
D
preferences_impl.cpp
178
NativePreferences::PreferencesValue
preferencesValue
= NativePreferences::PreferencesValue(-1);
in CValueTypeToNativeValue()
local
181
preferencesValue
= NativePreferences::PreferencesValue(value.integer);
in CValueTypeToNativeValue()
185
preferencesValue
= NativePreferences::PreferencesValue(value.float64);
in CValueTypeToNativeValue()
189
preferencesValue
= NativePreferences::PreferencesValue(std::string(value.string));
in CValueTypeToNativeValue()
193
preferencesValue
= NativePreferences::PreferencesValue(value.boolean);
in CValueTypeToNativeValue()
201
preferencesValue
= NativePreferences::PreferencesValue(bools);
in CValueTypeToNativeValue()
209
preferencesValue
= NativePreferences::PreferencesValue(doubles);
in CValueTypeToNativeValue()
217
preferencesValue
= NativePreferences::PreferencesValue(strings);
in CValueTypeToNativeValue()
221
preferencesValue
= NativePreferences::PreferencesValue(-1);
in CValueTypeToNativeValue()
224
return
preferencesValue
;
in CValueTypeToNativeValue()
[all...]
Completed in 3 milliseconds