Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dschema_utils.cpp385 std::string tempInPathString = inPathString; in ParseAndCheckFieldPath() local
386 TrimFiled(tempInPathString); in ParseAndCheckFieldPath()
388 int errCode = CheckDollarDotPrefix(tempInPathString, hasPrefix); in ParseAndCheckFieldPath()
400 tempInPathString = std::string("$.") + tempInPathString; in ParseAndCheckFieldPath()
403 for (size_t curPos = 1; curPos < tempInPathString.size();) { in ParseAndCheckFieldPath()
404 if (curPos + 1 == tempInPathString.size()) { in ParseAndCheckFieldPath()
408 size_t nextPointPos = tempInPathString.find_first_of(".", curPos + 1); in ParseAndCheckFieldPath()
409 outPath.push_back(tempInPathString.substr(curPos + 1, nextPointPos - curPos - 1)); in ParseAndCheckFieldPath()