reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
4522 for (; Pos != End; ++Pos) { 4522 for (; Pos != End; ++Pos) { 4525 if (Body[Pos] == '\\' && Pos + 1 != End) 4525 if (Body[Pos] == '\\' && Pos + 1 != End) 4529 if (Body[Pos] != '$' || Pos + 1 == End) 4529 if (Body[Pos] != '$' || Pos + 1 == End) 4531 char Next = Body[Pos + 1]; 4538 if (Pos == End) 4541 if (Body[Pos] == '$') { 4542 switch (Body[Pos + 1]) { 4558 Pos += 2; 4560 unsigned I = Pos + 1; 4564 const char *Begin = Body.data() + Pos + 1; 4565 StringRef Argument(Begin, I - (Pos + 1)); 4572 if (Body[Pos + 1] == '(' && Body[Pos + 2] == ')') 4572 if (Body[Pos + 1] == '(' && Body[Pos + 2] == ')') 4573 Pos += 3; 4575 Pos = I; 4579 Pos += 1 + Argument.size(); 4583 Body = Body.substr(Pos);