Home
last modified time | relevance | path

Searched refs:bools (Results 1 - 1 of 1) sorted by relevance

/foundation/distributeddatamgr/preferences/frameworks/cj/src/
H A Dpreferences_impl.cpp197 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