Lines Matching refs:Rest
108 StringRef Rest = Input.substr(n1 + 2); in ParseLine() local
109 if (Rest[0] >= '0' && Rest[0] <= '9') { in ParseLine()
111 size_t n3 = Rest.find(' '); in ParseLine()
113 if (Rest.getAsInteger(10, NumSamples)) in ParseLine()
116 if (Rest.substr(0, n3).getAsInteger(10, NumSamples)) in ParseLine()
120 n3 += Rest.substr(n3).find_first_not_of(' '); in ParseLine()
121 Rest = Rest.substr(n3); in ParseLine()
122 n3 = Rest.find(' '); in ParseLine()
123 StringRef pair = Rest; in ParseLine()
125 pair = Rest.substr(0, n3); in ParseLine()
135 size_t n3 = Rest.find_last_of(':'); in ParseLine()
136 CalleeName = Rest.substr(0, n3); in ParseLine()
137 if (Rest.substr(n3 + 1).getAsInteger(10, NumSamples)) in ParseLine()