Home
last modified time | relevance | path

Searched refs:rootJson_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ui_lite/frameworks/dfx/
H A Dui_dump_dom_tree.cpp310 if (dumpUsr != rootJson_) { in OutputDomTree()
356 OutputDomTree(view, rootJson_); in DumpJsonById()
403 rootJson_ = cJSON_CreateObject(); in DumpDomTree()
404 if (rootJson_ == nullptr) { in DumpDomTree()
410 OutputDomTree(currView, rootJson_); in DumpDomTree()
414 cJSON_Delete(rootJson_); in DumpDomTree()
415 rootJson_ = nullptr; in DumpDomTree()
423 pJson_ = cJSON_Print(rootJson_); in DumpDomTree()
424 cJSON_Delete(rootJson_); in DumpDomTree()
425 rootJson_ = nullptr; in DumpDomTree()
/ohos5.0/foundation/arkui/ui_lite/interfaces/kits/dfx/
H A Dui_dump_dom_tree.h118 cJSON* rootJson_; // Root pointer of cJSON structure. variable
146 rootJson_(nullptr), in UIDumpDomTree()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/card_frontend/
H A Djs_card_parser.h211 std::unique_ptr<JsonValue> rootJson_; variable
H A Djs_card_parser.cpp1911 UpdateDomNode(page, rootJson_, -1); in SetUpdateStatus()
1969 rootJson_ = rootBody_->GetValue("template"); in Initialize()
1974 CHECK_NULL_RETURN(rootJson_, false); in Initialize()
1978 …if (!rootJson_->IsValid() || !styleJson_->IsValid() || !eventJson_->IsValid() || !dataJson_->IsVal… in Initialize()