Searched refs:OutStr (Results 1 – 8 of 8) sorted by relevance
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | CFGPrinter.h | 58 std::string OutStr = OS.str(); 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[i] == ';') { // Delete comments! 71 unsigned Idx = OutStr.find('\n', i+1); // Find end of line 72 OutStr.erase(OutStr.begin()+i, OutStr.begin()+Idx); 78 OutStr.insert(LastSpace, "\\l..."); [all …]
|
| /minix3/external/bsd/llvm/dist/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()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Basic/ |
| H A D | Diagnostic.cpp | 437 SmallVectorImpl<char> &OutStr) { in HandleSelectModifier() argument 453 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr); in HandleSelectModifier() 460 SmallVectorImpl<char> &OutStr) { in HandleIntegerSModifier() argument 462 OutStr.push_back('s'); in HandleIntegerSModifier() 470 SmallVectorImpl<char> &OutStr) { in HandleOrdinalModifier() argument 473 llvm::raw_svector_ostream Out(OutStr); in HandleOrdinalModifier() 579 SmallVectorImpl<char> &OutStr) { in HandlePluralModifier() argument 594 DInfo.FormatDiagnostic(Argument, ExprEnd, OutStr); in HandlePluralModifier() 617 FormatDiagnostic(SmallVectorImpl<char> &OutStr) const { in FormatDiagnostic() 619 OutStr.append(StoredDiagMessage.begin(), StoredDiagMessage.end()); in FormatDiagnostic() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/lib/Frontend/ |
| H A D | TextDiagnosticPrinter.cpp | 119 SmallString<100> OutStr; in HandleDiagnostic() local 120 Info.FormatDiagnostic(OutStr); in HandleDiagnostic() 122 llvm::raw_svector_ostream DiagMessageStream(OutStr); in HandleDiagnostic()
|
| /minix3/external/bsd/llvm/dist/llvm/utils/TableGen/ |
| H A D | CodeGenMapTable.cpp | 377 std::string OutStr(""); in emitBinSearchTable() local 383 OutStr += ", "; in emitBinSearchTable() 384 OutStr += TargetName; 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()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/ |
| H A D | MachineFunction.cpp | 391 std::string OutStr; in getNodeLabel() local 393 raw_string_ostream OSS(OutStr); in getNodeLabel() 403 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); in getNodeLabel() 406 for (unsigned i = 0; i != OutStr.length(); ++i) in getNodeLabel() 407 if (OutStr[i] == '\n') { // Left justify in getNodeLabel() 408 OutStr[i] = '\\'; in getNodeLabel() 409 OutStr.insert(OutStr.begin()+i+1, 'l'); in getNodeLabel() 411 return OutStr; in getNodeLabel()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Analysis/ |
| H A D | CFG.cpp | 4555 std::string& OutStr = Out.str(); in getNodeLabel() local 4557 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin()); in getNodeLabel() 4560 for (unsigned i = 0; i != OutStr.length(); ++i) in getNodeLabel() 4561 if (OutStr[i] == '\n') { // Left justify in getNodeLabel() 4562 OutStr[i] = '\\'; in getNodeLabel() 4563 OutStr.insert(OutStr.begin()+i+1, 'l'); in getNodeLabel() 4566 return OutStr; in getNodeLabel()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Basic/ |
| H A D | Diagnostic.h | 1231 void FormatDiagnostic(SmallVectorImpl<char> &OutStr) const; 1236 SmallVectorImpl<char> &OutStr) const;
|