Searched defs:OutStr (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/AST/
H A DStmtViz.cpp46 std::string OutStr = Out.str(); local
47 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
50 for (unsigned i = 0; i != OutStr.length(); ++i)
51 if (OutStr[i] == '\n') { // Left justify
52 OutStr[i] = '\\';
53 OutStr.insert(OutStr.begin()+i+1, 'l');
56 return OutStr;
[all...]
/external/llvm/include/llvm/Analysis/
H A DCFGPrinter.h58 std::string OutStr = OS.str(); local
59 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
62 for (unsigned i = 0; i != OutStr.length(); ++i)
63 if (OutStr[i] == '\n') { // Left justify
64 OutStr[i] = '\\';
65 OutStr.insert(OutStr.begin()+i+1, 'l');
66 } else if (OutStr[
[all...]
/external/clang/lib/Frontend/
H A DTextDiagnosticPrinter.cpp115 SmallString<100> OutStr; local
116 Info.FormatDiagnostic(OutStr);
118 llvm::raw_svector_ostream DiagMessageStream(OutStr);
/external/clang/lib/Basic/
H A DDiagnostic.cpp478 SmallVectorImpl<char> &OutStr) {
494 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
501 SmallVectorImpl<char> &OutStr) {
503 OutStr.push_back('s');
511 SmallVectorImpl<char> &OutStr) {
514 llvm::raw_svector_ostream Out(OutStr);
636 SmallVectorImpl<char> &OutStr) {
651 DInfo.FormatDiagnostic(Argument, ExprEnd, OutStr);
663 FormatDiagnostic(SmallVectorImpl<char> &OutStr) const {
665 OutStr
476 HandleSelectModifier(const Diagnostic &DInfo, unsigned ValNo, const char *Argument, unsigned ArgumentLen, SmallVectorImpl<char> &OutStr) argument
500 HandleIntegerSModifier(unsigned ValNo, SmallVectorImpl<char> &OutStr) argument
510 HandleOrdinalModifier(unsigned ValNo, SmallVectorImpl<char> &OutStr) argument
634 HandlePluralModifier(const Diagnostic &DInfo, unsigned ValNo, const char *Argument, unsigned ArgumentLen, SmallVectorImpl<char> &OutStr) argument
[all...]
/external/llvm/lib/CodeGen/
H A DMachineFunction.cpp359 std::string OutStr; local
361 raw_string_ostream OSS(OutStr);
371 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
374 for (unsigned i = 0; i != OutStr.length(); ++i)
375 if (OutStr[i] == '\n') { // Left justify
376 OutStr[i] = '\\';
377 OutStr.insert(OutStr
[all...]
/external/clang/lib/Analysis/
H A DCFG.cpp4078 std::string& OutStr = Out.str(); local
4080 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
4083 for (unsigned i = 0; i != OutStr.length(); ++i)
4084 if (OutStr[i] == '\n') { // Left justify
4085 OutStr[i] = '\\';
4086 OutStr.insert(OutStr.begin()+i+1, 'l');
4089 return OutStr;
[all...]

Completed in 63 milliseconds