Searched refs:tempInPathString (Results 1 – 1 of 1) sorted by relevance
385 std::string tempInPathString = inPathString; in ParseAndCheckFieldPath() local386 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()