Lines Matching defs:n3
246 size_t n3 = Rest.find(' ');
247 if (n3 == StringRef::npos) {
251 if (Rest.substr(0, n3).getAsInteger(10, NumSamples))
266 while (n3 != StringRef::npos) {
267 n3 += Rest.substr(n3).find_first_not_of(' ');
268 Rest = Rest.substr(n3);
269 n3 = Rest.find_first_of(':');
270 if (n3 == StringRef::npos || n3 == 0)
277 StringRef AfterColon = Rest.substr(n3 + 1);
279 Target = Rest.substr(0, n3);
282 n4 = (n4 != StringRef::npos) ? n3 + n4 + 1 : Rest.size();
283 StringRef WordAfterColon = Rest.substr(n3 + 1, n4 - n3 - 1);
291 n3 += n5 + 1;
298 // Change n3 to the next blank space after colon + integer pair.
299 n3 = n4;
303 size_t n3 = Rest.find_last_of(':');
304 CalleeName = Rest.substr(0, n3);
305 if (Rest.substr(n3 + 1).getAsInteger(10, NumSamples))