Searched defs:OutStr (Results 1 - 7 of 7) 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/clang/lib/Frontend/
H A DTextDiagnosticPrinter.cpp119 SmallString<100> OutStr; local
120 Info.FormatDiagnostic(OutStr);
122 llvm::raw_svector_ostream DiagMessageStream(OutStr);
/external/llvm/include/llvm/Analysis/
H A DCFGPrinter.h58 std::string OutStr = OS.str(); local
59 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
64 for (unsigned i = 0; i != OutStr.length(); ++i) {
65 if (OutStr[i] == '\n') { // Left justify
66 OutStr[i] = '\\';
67 OutStr.insert(OutStr.begin()+i+1, 'l');
70 } else if (OutStr[
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp373 std::string OutStr("");
379 OutStr += ", ";
380 OutStr += TargetName;
381 OutStr += "::";
382 OutStr += ColInstrs[j]->getName();
383 } else { OutStr += ", (uint16_t)-1U";}
388 OS << OutStr <<" },\n"; local
/external/clang/lib/Basic/
H A DDiagnostic.cpp450 SmallVectorImpl<char> &OutStr) {
466 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
473 SmallVectorImpl<char> &OutStr) {
475 OutStr.push_back('s');
483 SmallVectorImpl<char> &OutStr) {
486 llvm::raw_svector_ostream Out(OutStr);
592 SmallVectorImpl<char> &OutStr) {
607 DInfo.FormatDiagnostic(Argument, ExprEnd, OutStr);
630 FormatDiagnostic(SmallVectorImpl<char> &OutStr) const {
632 OutStr
448 HandleSelectModifier(const Diagnostic &DInfo, unsigned ValNo, const char *Argument, unsigned ArgumentLen, SmallVectorImpl<char> &OutStr) argument
472 HandleIntegerSModifier(unsigned ValNo, SmallVectorImpl<char> &OutStr) argument
482 HandleOrdinalModifier(unsigned ValNo, SmallVectorImpl<char> &OutStr) argument
590 HandlePluralModifier(const Diagnostic &DInfo, unsigned ValNo, const char *Argument, unsigned ArgumentLen, SmallVectorImpl<char> &OutStr) argument
[all...]
/external/llvm/lib/CodeGen/
H A DMachineFunction.cpp419 std::string OutStr; local
421 raw_string_ostream OSS(OutStr);
431 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
434 for (unsigned i = 0; i != OutStr.length(); ++i)
435 if (OutStr[i] == '\n') { // Left justify
436 OutStr[i] = '\\';
437 OutStr.insert(OutStr
[all...]
/external/clang/lib/Analysis/
H A DCFG.cpp4632 std::string& OutStr = Out.str(); local
4634 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
4637 for (unsigned i = 0; i != OutStr.length(); ++i)
4638 if (OutStr[i] == '\n') { // Left justify
4639 OutStr[i] = '\\';
4640 OutStr.insert(OutStr.begin()+i+1, 'l');
4643 return OutStr;
[all...]

Completed in 1054 milliseconds