| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | raw_ostream.h | 674 class raw_svector_ostream : public raw_pwrite_stream { 690 explicit raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { in raw_svector_ostream() function 694 ~raw_svector_ostream() override = default; 721 class buffer_ostream : public raw_svector_ostream { 728 buffer_ostream(raw_ostream &OS) : raw_svector_ostream(Buffer), OS(OS) {} in buffer_ostream() 732 class buffer_unique_ostream : public raw_svector_ostream { 740 : raw_svector_ostream(Buffer), OS(std::move(OS)) { in buffer_unique_ostream()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CXXSelfAssignmentChecker.cpp | 58 llvm::raw_svector_ostream Out(Msg); in checkBeginFunction() 68 llvm::raw_svector_ostream Out(Msg); in checkBeginFunction()
|
| H A D | UnixAPIChecker.cpp | 185 llvm::raw_svector_ostream OS(SBuf); in CheckOpenVariant() 197 llvm::raw_svector_ostream OS(SBuf); in CheckOpenVariant() 252 llvm::raw_svector_ostream OS(SBuf); in CheckOpenVariant() 288 llvm::raw_svector_ostream os(S); in CheckPthreadOnce() 338 llvm::raw_svector_ostream os(S); in ReportZeroByteAllocation()
|
| H A D | AnalyzerStatsChecker.cpp | 92 llvm::raw_svector_ostream output(buf); in checkEndAnalysis() 126 llvm::raw_svector_ostream outputI(bufI); in checkEndAnalysis()
|
| H A D | CheckSecuritySyntaxOnly.cpp | 323 llvm::raw_svector_ostream os(sbuf); in checkLoopConditionForFloat() 651 llvm::raw_svector_ostream out(buf); in checkCall_mkstemp() 793 llvm::raw_svector_ostream Out1(Buf1); in checkDeprecatedOrUnsafeBufferHandling() 794 llvm::raw_svector_ostream Out2(Buf2); in checkDeprecatedOrUnsafeBufferHandling() 880 llvm::raw_svector_ostream os1(buf1); in checkCall_rand() 884 llvm::raw_svector_ostream os2(buf2); in checkCall_rand() 1052 llvm::raw_svector_ostream os1(buf1); in checkUncheckedReturnValue() 1056 llvm::raw_svector_ostream os2(buf2); in checkUncheckedReturnValue()
|
| H A D | ReturnValueChecker.cpp | 106 llvm::raw_svector_ostream Out(Msg); in checkPostCall() 154 llvm::raw_svector_ostream Out(Msg); in checkEndFunction()
|
| H A D | ObjCContainersASTChecker.cpp | 131 llvm::raw_svector_ostream OsName(BufName); in VisitCallExpr() 135 llvm::raw_svector_ostream Os(Buf); in VisitCallExpr()
|
| H A D | CallAndMessageChecker.cpp | 153 llvm::raw_svector_ostream &Os) { in describeUninitializedArgumentInCall() 204 llvm::raw_svector_ostream Os(Buf); in uninitRefOrPointer() 303 llvm::raw_svector_ostream Os(Buf); in PreVisitProcessArg() 332 llvm::raw_svector_ostream os(Str); in PreVisitProcessArg() 427 llvm::raw_svector_ostream os(Str); in checkParameterCount() 644 llvm::raw_svector_ostream os(buf); in emitNilReceiverBug()
|
| H A D | IvarInvalidationChecker.cpp | 198 static void printIvar(llvm::raw_svector_ostream &os, 329 llvm::raw_svector_ostream os(PropNameWithUnderscore); in findPropertyBackingIvar() 342 void IvarInvalidationCheckerImpl::printIvar(llvm::raw_svector_ostream &os, in printIvar() 519 llvm::raw_svector_ostream os(sbuf); in reportNoInvalidationMethod() 542 llvm::raw_svector_ostream os(sbuf); in reportIvarNeedsInvalidation()
|
| H A D | StackAddrEscapeChecker.cpp | 162 llvm::raw_svector_ostream os(buf); in EmitStackError() 201 llvm::raw_svector_ostream Out(Buf); in checkAsyncExecutedBlockCaptures() 225 llvm::raw_svector_ostream Out(Buf); in checkReturnedBlockCaptures() 379 llvm::raw_svector_ostream Out(Buf); in checkEndFunction()
|
| H A D | ObjCAutoreleaseWriteChecker.cpp | 141 llvm::raw_svector_ostream BugName(BugNameBuf); in emitDiagnostics() 146 llvm::raw_svector_ostream BugMessage(BugMessageBuf); in emitDiagnostics()
|
| H A D | DynamicTypeChecker.cpp | 69 llvm::raw_svector_ostream OS(Buf); in reportTypeError() 107 llvm::raw_svector_ostream OS(Buf); in VisitNode()
|
| H A D | CXXDeleteChecker.cpp | 164 llvm::raw_svector_ostream OS(Buf); in checkTypedDeleteExpr() 212 llvm::raw_svector_ostream OS(Buf); in VisitNode()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | MSP430MCInstLower.cpp | 54 raw_svector_ostream(Name) << DL.getPrivateGlobalPrefix() << "JTI" in GetJumpTableSymbol() 71 raw_svector_ostream(Name) << DL.getPrivateGlobalPrefix() << "CPI" in GetConstantPoolIndexSymbol()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiMCInstLower.cpp | 49 raw_svector_ostream(Name) << Printer.MAI->getPrivateGlobalPrefix() << "JTI" in GetJumpTableSymbol() 59 raw_svector_ostream(Name) << Printer.MAI->getPrivateGlobalPrefix() << "CPI" in GetConstantPoolIndexSymbol()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Option/ |
| H A D | Arg.cpp | 71 raw_svector_ostream OS(Res); in getAsString() 102 raw_svector_ostream OS(Res); in render()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineFunctionPass.cpp | 87 raw_svector_ostream OS(BeforeStr); in runOnFunction() 124 raw_svector_ostream OS(AfterStr); in runOnFunction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | ByteStreamer.h | 111 raw_svector_ostream OSE(Buffer); in emitSLEB128() 124 raw_svector_ostream OSE(Buffer); in emitULEB128()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | DiagnosticRenderer.cpp | 446 llvm::raw_svector_ostream Message(MessageStorage); in emitSingleMacroExpansion() 582 llvm::raw_svector_ostream Message(MessageStorage); in emitMacroExpansions() 600 llvm::raw_svector_ostream Message(MessageStorage); in emitIncludeLocation() 611 llvm::raw_svector_ostream Message(MessageStorage); in emitImportLocation() 625 llvm::raw_svector_ostream Message(MessageStorage); in emitBuildingModuleLocation()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Mangle.cpp | 279 llvm::raw_svector_ostream Out(Buffer); in mangleCtorBlock() 288 llvm::raw_svector_ostream Out(Buffer); in mangleDtorBlock() 298 llvm::raw_svector_ostream Stream(Buffer); in mangleBlock() 389 llvm::raw_svector_ostream OS(Name); in mangleObjCMethodNameAsSourceName() 408 llvm::raw_svector_ostream FrontendBufOS(FrontendBuf); in writeName()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/APINotes/ |
| H A D | APINotesWriter.cpp | 326 llvm::raw_svector_ostream BlobStream(HashTableBlob); in writeIdentifierBlock() 607 llvm::raw_svector_ostream BlobStream(HashTableBlob); in writeObjCContextBlock() 626 llvm::raw_svector_ostream BlobStream(HashTableBlob); in writeObjCContextBlock() 717 llvm::raw_svector_ostream BlobStream(HashTableBlob); in writeObjCPropertyBlock() 785 llvm::raw_svector_ostream BlobStream(HashTableBlob); in writeObjCMethodBlock() 853 llvm::raw_svector_ostream BlobStream(HashTableBlob); in writeObjCSelectorBlock() 911 llvm::raw_svector_ostream BlobStream(HashTableBlob); in writeGlobalVariableBlock() 1025 llvm::raw_svector_ostream BlobStream(HashTableBlob); in writeGlobalFunctionBlock() 1079 llvm::raw_svector_ostream BlobStream(HashTableBlob); in writeEnumConstantBlock() 1187 llvm::raw_svector_ostream BlobStream(HashTableBlob); in writeTagBlock() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llc/ |
| H A D | NewPMDriver.cpp | 136 std::unique_ptr<raw_svector_ostream> BOS; in compileModuleWithNewPM() 139 BOS = std::make_unique<raw_svector_ostream>(Buffer); in compileModuleWithNewPM()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFExpression.cpp | 454 raw_svector_ostream S(Stack.emplace_back(PrintedExpr::Value).String); in printCompactDWARFExpr() 464 raw_svector_ostream S(Stack.emplace_back().String); in printCompactDWARFExpr() 477 raw_svector_ostream S(Stack.emplace_back().String); in printCompactDWARFExpr() 506 raw_svector_ostream S(Stack.emplace_back(PrintedExpr::Value).String); in printCompactDWARFExpr() 515 raw_svector_ostream S(Stack.emplace_back().String); in printCompactDWARFExpr()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARCAsmPrinter.cpp | 56 raw_svector_ostream O(Str); in emitInstruction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Mangler.cpp | 76 raw_svector_ostream OS(OutName); in getNameWithPrefix() 189 raw_svector_ostream OS(OutName); in getNameWithPrefix()
|