Home
last modified time | relevance | path

Searched refs:raw_svector_ostream (Results 1 – 25 of 281) sorted by relevance

12345678910>>...12

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A Draw_ostream.h674 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 DCXXSelfAssignmentChecker.cpp58 llvm::raw_svector_ostream Out(Msg); in checkBeginFunction()
68 llvm::raw_svector_ostream Out(Msg); in checkBeginFunction()
H A DUnixAPIChecker.cpp185 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 DAnalyzerStatsChecker.cpp92 llvm::raw_svector_ostream output(buf); in checkEndAnalysis()
126 llvm::raw_svector_ostream outputI(bufI); in checkEndAnalysis()
H A DCheckSecuritySyntaxOnly.cpp323 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 DReturnValueChecker.cpp106 llvm::raw_svector_ostream Out(Msg); in checkPostCall()
154 llvm::raw_svector_ostream Out(Msg); in checkEndFunction()
H A DObjCContainersASTChecker.cpp131 llvm::raw_svector_ostream OsName(BufName); in VisitCallExpr()
135 llvm::raw_svector_ostream Os(Buf); in VisitCallExpr()
H A DCallAndMessageChecker.cpp153 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 DIvarInvalidationChecker.cpp198 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 DStackAddrEscapeChecker.cpp162 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 DObjCAutoreleaseWriteChecker.cpp141 llvm::raw_svector_ostream BugName(BugNameBuf); in emitDiagnostics()
146 llvm::raw_svector_ostream BugMessage(BugMessageBuf); in emitDiagnostics()
H A DDynamicTypeChecker.cpp69 llvm::raw_svector_ostream OS(Buf); in reportTypeError()
107 llvm::raw_svector_ostream OS(Buf); in VisitNode()
H A DCXXDeleteChecker.cpp164 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 DMSP430MCInstLower.cpp54 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 DLanaiMCInstLower.cpp49 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 DArg.cpp71 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 DMachineFunctionPass.cpp87 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 DByteStreamer.h111 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 DDiagnosticRenderer.cpp446 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 DMangle.cpp279 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 DAPINotesWriter.cpp326 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 DNewPMDriver.cpp136 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 DDWARFExpression.cpp454 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 DARCAsmPrinter.cpp56 raw_svector_ostream O(Str); in emitInstruction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DMangler.cpp76 raw_svector_ostream OS(OutName); in getNameWithPrefix()
189 raw_svector_ostream OS(OutName); in getNameWithPrefix()

12345678910>>...12