Home
last modified time | relevance | path

Searched refs:boolItems_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/base/json/
H A Duobject.cpp64 boolItems_[key] = value; in AddItemToObject()
133 auto iter = boolItems_.find(key); in GetBool()
134 if (iter != boolItems_.end()) { in GetBool()
152 doubleItems_.count(key) || boolItems_.count(key) || children_.count(key); in Contains()
181 for (const auto& item : boolItems_) { in Serialize()
223 for (const auto& item : boolItems_) { in Hash()
252 for (auto& item : boolItems_) { in EstimateBufferSize()
H A Duobject.h102 std::unordered_map<std::string, bool> boolItems_; variable