Searched refs:OutStr (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12.1/contrib/llvm/include/llvm/Analysis/ |
| H A D | CFGPrinter.h | 87 std::string OutStr = OS.str(); 88 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); 93 for (unsigned i = 0; i != OutStr.length(); ++i) { 94 if (OutStr[i] == '\n') { // Left justify 95 OutStr[i] = '\\'; 96 OutStr.insert(OutStr.begin()+i+1, 'l'); 99 } else if (OutStr[i] == ';') { // Delete comments! 101 OutStr.erase(OutStr.begin()+i, OutStr.begin()+Idx); 107 OutStr.insert(LastSpace, "\\l..."); 114 if (OutStr[i] == ' ') [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | StmtViz.cpp | 46 std::string OutStr = Out.str(); in getNodeLabel() local 47 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); in getNodeLabel() 50 for (unsigned i = 0; i != OutStr.length(); ++i) in getNodeLabel() 51 if (OutStr[i] == '\n') { // Left justify in getNodeLabel() 52 OutStr[i] = '\\'; in getNodeLabel() 53 OutStr.insert(OutStr.begin()+i+1, 'l'); in getNodeLabel() 56 return OutStr; in getNodeLabel()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/ |
| H A D | Diagnostic.cpp | 610 OutStr.push_back('s'); in HandleIntegerSModifier() 621 llvm::raw_svector_ostream Out(OutStr); in HandleOrdinalModifier() 788 OutStr.push_back(c); in FormatDiagnostic() 813 OutStr.append(DiagStr, StrEnd); in FormatDiagnostic() 897 OutStr.append(S.begin(), S.end()); in FormatDiagnostic() 908 OutStr.append(S, S + strlen(S)); in FormatDiagnostic() 917 OutStr); in FormatDiagnostic() 922 OutStr); in FormatDiagnostic() 940 OutStr); in FormatDiagnostic() 979 OutStr.append(S, S + strlen(S)); in FormatDiagnostic() [all …]
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | CodeGenMapTable.cpp | 388 std::string OutStr(""); in emitBinSearchTable() local 394 OutStr += ", "; in emitBinSearchTable() 395 OutStr += Namespace; in emitBinSearchTable() 396 OutStr += "::"; in emitBinSearchTable() 397 OutStr += ColInstrs[j]->getName(); in emitBinSearchTable() 398 } else { OutStr += ", (uint16_t)-1U";} in emitBinSearchTable() 403 OS << OutStr <<" },\n"; in emitBinSearchTable()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/ |
| H A D | TextDiagnosticPrinter.cpp | 117 SmallString<100> OutStr; in HandleDiagnostic() local 118 Info.FormatDiagnostic(OutStr); in HandleDiagnostic() 120 llvm::raw_svector_ostream DiagMessageStream(OutStr); in HandleDiagnostic()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | MachineFunction.cpp | 514 std::string OutStr; in getNodeLabel() local 516 raw_string_ostream OSS(OutStr); in getNodeLabel() 526 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); in getNodeLabel() 529 for (unsigned i = 0; i != OutStr.length(); ++i) in getNodeLabel() 530 if (OutStr[i] == '\n') { // Left justify in getNodeLabel() 531 OutStr[i] = '\\'; in getNodeLabel() 532 OutStr.insert(OutStr.begin()+i+1, 'l'); in getNodeLabel() 534 return OutStr; in getNodeLabel()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/ |
| H A D | CFG.cpp | 5560 std::string& OutStr = Out.str(); in getNodeLabel() local 5562 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); in getNodeLabel() 5565 for (unsigned i = 0; i != OutStr.length(); ++i) in getNodeLabel() 5566 if (OutStr[i] == '\n') { // Left justify in getNodeLabel() 5567 OutStr[i] = '\\'; in getNodeLabel() 5568 OutStr.insert(OutStr.begin()+i+1, 'l'); in getNodeLabel() 5571 return OutStr; in getNodeLabel()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | Diagnostic.h | 1425 void FormatDiagnostic(SmallVectorImpl<char> &OutStr) const; 1430 SmallVectorImpl<char> &OutStr) const;
|