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

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp468 // CurStringPiece - The current string that we are building up as we scan the
470 std::string CurStringPiece; local
477 if (!CurStringPiece.empty())
478 Pieces.push_back(AsmStringPiece(CurStringPiece));
484 case '$': CurStringPiece += "$$"; continue;
485 case '{': CurStringPiece += (HasVariants ? "$(" : "{"); continue;
486 case '|': CurStringPiece += (HasVariants ? "$|" : "|"); continue;
487 case '}': CurStringPiece += (HasVariants ? "$)" : "}"); continue;
491 CurStringPiece += CurChar;
505 CurStringPiece
[all...]

Completed in 43 milliseconds