Searched refs:CurStringPiece (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/AST/
H A DStmt.cpp467 // CurStringPiece - The current string that we are building up as we scan the
469 std::string CurStringPiece; local
476 if (!CurStringPiece.empty())
477 Pieces.push_back(AsmStringPiece(CurStringPiece));
483 case '$': CurStringPiece += "$$"; continue;
484 case '{': CurStringPiece += (HasVariants ? "$(" : "{"); continue;
485 case '|': CurStringPiece += (HasVariants ? "$|" : "|"); continue;
486 case '}': CurStringPiece += (HasVariants ? "$)" : "}"); continue;
490 CurStringPiece += CurChar;
504 CurStringPiece
[all...]

Completed in 203 milliseconds