Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/card_frontend/
H A Djs_card_parser.cpp737 repeatJson_->Contains(REPEAT_INDEX) ? repeatJson_->Replace(REPEAT_INDEX.c_str(), idx.c_str()) in SetRepeatItemValue()
738 : repeatJson_->Put(REPEAT_INDEX.c_str(), idx.c_str()); in SetRepeatItemValue()
739 repeatJson_->Contains(REPEAT_ITEM) ? repeatJson_->Replace(REPEAT_ITEM.c_str(), itemValue) in SetRepeatItemValue()
740 : repeatJson_->Put(REPEAT_ITEM.c_str(), itemValue); in SetRepeatItemValue()
744repeatJson_->Contains(repeatIndex_) ? repeatJson_->Replace(repeatIndex_.c_str(), idx.c_str()) in SetRepeatItemValue()
748 repeatJson_->Contains(repeatItem_) ? repeatJson_->Replace(repeatItem_.c_str(), itemValue) in SetRepeatItemValue()
1172 repeatJson_->Replace(key.c_str(), data); in UpdatePageData()
1203 auto dataJson = isRepeat_ ? repeatJson_->ToString() : json->ToString(); in ParseArrayExpression()
1559 if (!repeatJson_->Contains(key) && isRepeat_) { in GetVariable()
1566 dataValue = repeatJson_->GetValue(key); in GetVariable()
[all …]
H A Djs_card_parser.h214 std::unique_ptr<JsonValue> repeatJson_; variable