Home
last modified time | relevance | path

Searched refs:boolArray (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/cj/src/
H A Dpreferences_impl.cpp198 for (int64_t i = 0; i < value.boolArray.size; i++) { in CValueTypeToNativeValue()
199 bools.push_back(value.boolArray.head[i]); in CValueTypeToNativeValue()
235 free(v.boolArray.head); in FreeValueType()
291 CArrBool boolArray = { head, bools.size() }; in VectorToBoolArray() local
292 return boolArray; in VectorToBoolArray()
360 v.boolArray = VectorToBoolArray(boolVector, code); in NativeValueToCValueType()
H A Dpreferences_interface.h46 CArrBool boolArray; member
/ohos5.0/foundation/distributeddatamgr/preferences/test/native/unittest/
H A Dpreferences_test.cpp826 std::vector<bool> boolArray = { false, true }; variable
830 pref1->Put(KEY_TEST_BOOL_ARRAY_ELEMENT, boolArray);
846 EXPECT_EQ(static_cast<std::vector<bool>>(boolArrayRes), boolArray);