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:bools
(Results
1 - 1
of
1
) sorted by relevance
/foundation/distributeddatamgr/preferences/frameworks/cj/src/
H
A
D
preferences_impl.cpp
197
std::vector<bool>
bools
= std::vector<bool>();
in CValueTypeToNativeValue()
local
199
bools
.push_back(value.boolArray.head[i]);
in CValueTypeToNativeValue()
201
preferencesValue = NativePreferences::PreferencesValue(
bools
);
in CValueTypeToNativeValue()
278
static CArrBool VectorToBoolArray(std::vector<bool> &
bools
, int32_t &code)
in VectorToBoolArray()
argument
280
if (
bools
.size() == 0) {
in VectorToBoolArray()
283
bool* head = static_cast<bool*>(malloc(
bools
.size() * sizeof(bool)));
in VectorToBoolArray()
288
for (unsigned long i = 0; i <
bools
.size(); i++) {
in VectorToBoolArray()
289
head[i] =
bools
[i];
in VectorToBoolArray()
291
CArrBool boolArray = { head,
bools
.size() };
in VectorToBoolArray()
Completed in 1 milliseconds