| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | raw_ostream.h | 656 class raw_svector_ostream : public raw_pwrite_stream { 672 explicit raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { in raw_svector_ostream() function 676 ~raw_svector_ostream() override = default; 703 class buffer_ostream : public raw_svector_ostream { 710 buffer_ostream(raw_ostream &OS) : raw_svector_ostream(Buffer), OS(OS) {} in buffer_ostream() 714 class buffer_unique_ostream : public raw_svector_ostream { 722 : raw_svector_ostream(Buffer), OS(std::move(OS)) {} in buffer_unique_ostream()
|
| /freebsd-13.1/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 | 193 llvm::raw_svector_ostream OS(SBuf); in CheckOpenVariant() 205 llvm::raw_svector_ostream OS(SBuf); in CheckOpenVariant() 259 llvm::raw_svector_ostream OS(SBuf); in CheckOpenVariant() 295 llvm::raw_svector_ostream os(S); in CheckPthreadOnce() 350 llvm::raw_svector_ostream os(S); in ReportZeroByteAllocation()
|
| H A D | CheckSecuritySyntaxOnly.cpp | 325 llvm::raw_svector_ostream os(sbuf); in checkLoopConditionForFloat() 653 llvm::raw_svector_ostream out(buf); in checkCall_mkstemp() 796 llvm::raw_svector_ostream Out1(Buf1); in checkDeprecatedOrUnsafeBufferHandling() 797 llvm::raw_svector_ostream Out2(Buf2); in checkDeprecatedOrUnsafeBufferHandling() 878 llvm::raw_svector_ostream os1(buf1); in checkCall_rand() 882 llvm::raw_svector_ostream os2(buf2); in checkCall_rand() 1042 llvm::raw_svector_ostream os1(buf1); in checkUncheckedReturnValue() 1046 llvm::raw_svector_ostream os2(buf2); in checkUncheckedReturnValue()
|
| H A D | ReturnValueChecker.cpp | 104 llvm::raw_svector_ostream Out(Msg); in checkPostCall() 151 llvm::raw_svector_ostream Out(Msg); in checkEndFunction()
|
| H A D | AnalyzerStatsChecker.cpp | 91 llvm::raw_svector_ostream output(buf); in checkEndAnalysis() 129 llvm::raw_svector_ostream outputI(bufI); in checkEndAnalysis()
|
| H A D | StackAddrEscapeChecker.cpp | 164 llvm::raw_svector_ostream os(buf); in EmitStackError() 203 llvm::raw_svector_ostream Out(Buf); in checkAsyncExecutedBlockCaptures() 227 llvm::raw_svector_ostream Out(Buf); in checkReturnedBlockCaptures() 349 llvm::raw_svector_ostream Out(Buf); 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 | 154 llvm::raw_svector_ostream &Os) { in describeUninitializedArgumentInCall() 205 llvm::raw_svector_ostream Os(Buf); in uninitRefOrPointer() 304 llvm::raw_svector_ostream Os(Buf); in PreVisitProcessArg() 333 llvm::raw_svector_ostream os(Str); in PreVisitProcessArg() 428 llvm::raw_svector_ostream os(Str); in checkParameterCount() 645 llvm::raw_svector_ostream os(buf); in emitNilReceiverBug()
|
| H A D | IvarInvalidationChecker.cpp | 198 static void printIvar(llvm::raw_svector_ostream &os, 331 llvm::raw_svector_ostream os(PropNameWithUnderscore); in findPropertyBackingIvar() 344 void IvarInvalidationCheckerImpl::printIvar(llvm::raw_svector_ostream &os, in printIvar() 533 llvm::raw_svector_ostream os(sbuf); in reportNoInvalidationMethod() 556 llvm::raw_svector_ostream os(sbuf); in reportIvarNeedsInvalidation()
|
| H A D | ObjCAutoreleaseWriteChecker.cpp | 139 llvm::raw_svector_ostream BugName(BugNameBuf); in emitDiagnostics() 144 llvm::raw_svector_ostream BugMessage(BugMessageBuf); in emitDiagnostics()
|
| H A D | DynamicTypeChecker.cpp | 75 llvm::raw_svector_ostream OS(Buf); in reportTypeError() 113 llvm::raw_svector_ostream OS(Buf); in VisitNode()
|
| H A D | CStringSyntaxChecker.cpp | 228 llvm::raw_svector_ostream os(S); in VisitCallExpr() 253 llvm::raw_svector_ostream os(S); in VisitCallExpr()
|
| /freebsd-13.1/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-13.1/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-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | ByteStreamer.h | 97 raw_svector_ostream OSE(Buffer); in emitSLEB128() 110 raw_svector_ostream OSE(Buffer); in emitULEB128()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Option/ |
| H A D | Arg.cpp | 73 raw_svector_ostream OS(Res); in getAsString() 104 raw_svector_ostream OS(Res); in render()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | DiagnosticRenderer.cpp | 447 llvm::raw_svector_ostream Message(MessageStorage); in emitSingleMacroExpansion() 585 llvm::raw_svector_ostream Message(MessageStorage); in emitMacroExpansions() 603 llvm::raw_svector_ostream Message(MessageStorage); in emitIncludeLocation() 614 llvm::raw_svector_ostream Message(MessageStorage); in emitImportLocation() 628 llvm::raw_svector_ostream Message(MessageStorage); in emitBuildingModuleLocation()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | Mangle.cpp | 271 llvm::raw_svector_ostream Out(Buffer); in mangleCtorBlock() 280 llvm::raw_svector_ostream Out(Buffer); in mangleDtorBlock() 290 llvm::raw_svector_ostream Stream(Buffer); in mangleBlock() 381 llvm::raw_svector_ostream OS(Name); in mangleObjCMethodNameAsSourceName() 400 llvm::raw_svector_ostream FrontendBufOS(FrontendBuf); in writeName()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFExpression.cpp | 425 raw_svector_ostream S(Stack.emplace_back(PrintedExpr::Value).String); in printCompactDWARFExpr() 437 raw_svector_ostream S(Stack.emplace_back().String); in printCompactDWARFExpr() 450 raw_svector_ostream S(Stack.emplace_back().String); in printCompactDWARFExpr() 474 raw_svector_ostream S(Stack.emplace_back(PrintedExpr::Value).String); in printCompactDWARFExpr() 485 raw_svector_ostream S(Stack.emplace_back().String); in printCompactDWARFExpr()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Mangler.cpp | 76 raw_svector_ostream OS(OutName); in getNameWithPrefix() 183 raw_svector_ostream OS(OutName); in getNameWithPrefix()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporterVisitors.cpp | 716 llvm::raw_svector_ostream os(sbuf); in maybeEmitNote() 784 llvm::raw_svector_ostream &os) { in prettyPrintFirstElement() 990 llvm::raw_svector_ostream Out(Msg); in visitNodeInitial() 1531 llvm::raw_svector_ostream os(sbuf); in VisitNode() 1620 llvm::raw_svector_ostream os(sbuf); in VisitNode() 1988 llvm::raw_svector_ostream OS(Buffer); in handle() 2456 llvm::raw_svector_ostream OS(Buf); in VisitNode() 2798 llvm::raw_svector_ostream Out(buf); in VisitTrueTest() 2880 llvm::raw_svector_ostream Out(buf); in VisitConditionVariable() 2909 llvm::raw_svector_ostream Out(Buf); in VisitTrueTest() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/ |
| H A D | CodeEmitter.h | 41 raw_svector_ostream VecOS;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARCAsmPrinter.cpp | 53 raw_svector_ostream O(Str); in emitInstruction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | CFGuardLongjmp.cpp | 111 raw_svector_ostream(SymbolName) << "$cfgsj_" << MF.getName() << SetjmpNum++; in runOnMachineFunction()
|