Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/data_share/
H A Ddata_share_profile_config.cpp99 std::vector<std::string> splitPath; in Unmarshal() local
100 SplitStr(path, SEPARATOR, splitPath); in Unmarshal()
101 if (splitPath.size() < PATH_SIZE) { in Unmarshal()
105 if (splitPath[0].empty() || splitPath[1].empty()) { in Unmarshal()
108 storeName = splitPath[0]; in Unmarshal()
109 tableName = splitPath[1]; in Unmarshal()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/src/
H A Djson_common.cpp258 JsonFieldPath splitPath; in SplitePath() local
263 splitPath.push_back(str.substr(start, end - start)); in SplitePath()
267 splitPath.push_back(str.substr(start)); in SplitePath()
269 isCollapse = (splitPath.size() > 1); in SplitePath()
270 return splitPath; in SplitePath()
275 JsonFieldPath splitPath; in ExpendPathForField() local
283 splitPath.push_back(str.substr(start, end - start)); in ExpendPathForField()
287 splitPath.push_back(str.substr(start)); in ExpendPathForField()
289 isCollapse = (splitPath.size() > 1); in ExpendPathForField()
291 splitPath.emplace_back(path[i]); in ExpendPathForField()
[all …]
/ohos5.0/drivers/hdf_core/framework/tools/hc-gen/src/
H A Dast.cpp1120 auto splitPath = SplitNodePath(path, '.'); in Lookup() local
1121 if (splitPath.front() != astRoot_->name_) { in Lookup()
1125 splitPath.erase(splitPath.begin()); in Lookup()
1128 for (auto &it : splitPath) { in Lookup()
/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/
H A Dast.js1045 let splitPath = this.splitNodePath(path, '.');