Lines Matching refs:strTemp
973 void XmlPullParser::Replace(std::string& strTemp, std::string strSrc, std::string strDes) const
976 while ((iPos = strTemp.find(strSrc)) != std::string::npos) {
977 strTemp.replace(iPos, strSrc.size(), strDes);
1330 std::string strTemp = ParseDelimiterInfo(tagText_.END_COMMENT, returnText);
1332 text_ = strTemp;
1575 std::string strTemp = text_;
1576 Replace(strTemp, "\r", "");
1577 Replace(strTemp, "\n", "");
1578 Replace(strTemp, " ", "");
1579 if ((depth == 0 && bWhitespace_) || strTemp.size() == 0) {