Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/
H A Djsi_declarative_engine.cpp1144 thread_local std::unordered_map<std::string, std::string> JsiDeclarativeEngine::routerPathInfoMap_; member in OHOS::Ace::Framework::JsiDeclarativeEngine
1740 auto pageRet = routerPathInfoMap_.insert(std::make_pair(pagePathKey, pageFullPath)); in AddToNamedRouterMap()
1742 routerPathInfoMap_[pagePathKey] = pageFullPath; in AddToNamedRouterMap()
1745 auto ret = routerPathInfoMap_.insert(std::make_pair(namedRoute, pageFullPath)); in AddToNamedRouterMap()
1747 routerPathInfoMap_[namedRoute] = pageFullPath; in AddToNamedRouterMap()
1844 auto recordIter = routerPathInfoMap_.begin(); in GetFullPathInfo()
1845 while (recordIter != routerPathInfoMap_.end()) { in GetFullPathInfo()
1884 std::swap(routerPathInfoMap_, routerPathInfoMap); in RestoreFullPathInfo()
2502 auto iter = routerPathInfoMap_.find(url); in GetFullPathInfo()
2503 if (iter != routerPathInfoMap_.end()) { in GetFullPathInfo()
H A Djsi_declarative_engine.h530 static thread_local std::unordered_map<std::string, std::string> routerPathInfoMap_; variable