Lines Matching defs:n3
254 size_t n3 = Rest.find(' ');
255 if (n3 == StringRef::npos) {
259 if (Rest.substr(0, n3).getAsInteger(10, NumSamples))
274 while (n3 != StringRef::npos) {
275 n3 += Rest.substr(n3).find_first_not_of(' ');
276 Rest = Rest.substr(n3);
277 n3 = Rest.find_first_of(':');
278 if (n3 == StringRef::npos || n3 == 0)
285 StringRef AfterColon = Rest.substr(n3 + 1);
287 Target = Rest.substr(0, n3);
290 n4 = (n4 != StringRef::npos) ? n3 + n4 + 1 : Rest.size();
291 StringRef WordAfterColon = Rest.substr(n3 + 1, n4 - n3 - 1);
299 n3 += n5 + 1;
306 // Change n3 to the next blank space after colon + integer pair.
307 n3 = n4;
311 size_t n3 = Rest.find_last_of(':');
312 CalleeName = Rest.substr(0, n3);
313 if (Rest.substr(n3 + 1).getAsInteger(10, NumSamples))