Searched refs:OutStr (Results 1 – 9 of 9) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtViz.cpp | 45 std::string OutStr = Out.str(); in getNodeLabel() local 46 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); in getNodeLabel() 49 for (unsigned i = 0; i != OutStr.length(); ++i) in getNodeLabel() 50 if (OutStr[i] == '\n') { // Left justify in getNodeLabel() 51 OutStr[i] = '\\'; in getNodeLabel() 52 OutStr.insert(OutStr.begin()+i+1, 'l'); in getNodeLabel() 55 return OutStr; in getNodeLabel()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | CFGPrinter.h | 146 OutStr.erase(OutStr.begin() + I, OutStr.begin() + Idx); 167 std::string OutStr = OS.str(); 168 if (OutStr[0] == '\n') 169 OutStr.erase(OutStr.begin()); 175 if (OutStr[i] == '\n') { // Left justify 176 OutStr[i] = '\\'; 177 OutStr.insert(OutStr.begin() + i + 1, 'l'); 182 HandleComment(OutStr, i, Idx); 187 OutStr.insert(LastSpace, "\\l..."); 193 if (OutStr[i] == ' ') [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Diagnostic.cpp | 624 OutStr.push_back('s'); in HandleIntegerSModifier() 635 llvm::raw_svector_ostream Out(OutStr); in HandleOrdinalModifier() 802 OutStr.push_back(c); in FormatDiagnostic() 827 OutStr.append(DiagStr, StrEnd); in FormatDiagnostic() 911 OutStr.append(S.begin(), S.end()); in FormatDiagnostic() 922 OutStr.append(S, S + strlen(S)); in FormatDiagnostic() 931 OutStr); in FormatDiagnostic() 936 OutStr); in FormatDiagnostic() 954 OutStr); in FormatDiagnostic() 993 OutStr.append(S, S + strlen(S)); in FormatDiagnostic() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | TextDiagnosticPrinter.cpp | 116 SmallString<100> OutStr; in HandleDiagnostic() local 117 Info.FormatDiagnostic(OutStr); in HandleDiagnostic() 119 llvm::raw_svector_ostream DiagMessageStream(OutStr); in HandleDiagnostic()
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeGenMapTable.cpp | 377 std::string OutStr; in emitBinSearchTable() local 383 OutStr += ", "; in emitBinSearchTable() 384 OutStr += Namespace; in emitBinSearchTable() 385 OutStr += "::"; in emitBinSearchTable() 386 OutStr += ColInstrs[j]->getName(); in emitBinSearchTable() 387 } else { OutStr += ", (uint16_t)-1U";} in emitBinSearchTable() 392 OS << OutStr <<" },\n"; in emitBinSearchTable()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineFunction.cpp | 605 std::string OutStr; in getNodeLabel() local 607 raw_string_ostream OSS(OutStr); in getNodeLabel() 617 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); in getNodeLabel() 620 for (unsigned i = 0; i != OutStr.length(); ++i) in getNodeLabel() 621 if (OutStr[i] == '\n') { // Left justify in getNodeLabel() 622 OutStr[i] = '\\'; in getNodeLabel() 623 OutStr.insert(OutStr.begin()+i+1, 'l'); in getNodeLabel() 625 return OutStr; in getNodeLabel()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | TFUtils.cpp | 288 std::string OutStr; in print() local 290 google::protobuf::TextFormat::PrintToString(SE, &OutStr); in print() 292 OutStr = SE.SerializeAsString(); in print() 294 OS << OutStr; in print()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CFG.cpp | 6055 std::string& OutStr = Out.str(); in getNodeLabel() local 6057 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); in getNodeLabel() 6060 for (unsigned i = 0; i != OutStr.length(); ++i) in getNodeLabel() 6061 if (OutStr[i] == '\n') { // Left justify in getNodeLabel() 6062 OutStr[i] = '\\'; in getNodeLabel() 6063 OutStr.insert(OutStr.begin()+i+1, 'l'); in getNodeLabel() 6066 return OutStr; in getNodeLabel()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Diagnostic.h | 1644 void FormatDiagnostic(SmallVectorImpl<char> &OutStr) const; 1649 SmallVectorImpl<char> &OutStr) const;
|