Lines Matching refs:pos
147 string::const_iterator pos = find(begin, end, ')');
148 if (pos == end)
153 if (!list_of_field_type(result, begin, pos))
176 string::const_iterator pos = find(begin, end, '(');
177 if (pos == end)
180 result += '.' + string(begin, pos);
181 begin = pos;
192 string::const_iterator pos = find(begin, end, ';');
193 if (pos == end)
196 string temp = string(begin + 1, pos);
200 begin = pos + 1;