Lines Matching refs:pos
56 string::size_type pos;
62 pos = str.find(pattern, i);
63 if (pos < size) {
64 string s = str.substr(i, pos - i);
66 i = pos + pattern.size() - 1;
107 string::size_type pos = 0;
108 pos = str.find(subStr, pos);
109 while (pos != string::npos) {
111 pos = pos + subStr.size();
112 pos = str.find(subStr, pos);
124 size_t pos = line.find(DELIMITER_EQUAL_SIGN);
126 if (string::npos == pos || (line.length() - 1) == pos) {
130 first = line.substr(0, pos);
131 second = line.substr(pos + 1, string::npos);