| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | EndianStreamTest.cpp | 22 raw_svector_ostream OS(data); in TEST() 37 raw_svector_ostream OS(data); in TEST() 53 raw_svector_ostream OS(data); in TEST() 68 raw_svector_ostream OS(data); in TEST() 83 raw_svector_ostream OS(data); in TEST() 102 raw_svector_ostream OS(data); in TEST() 121 raw_svector_ostream OS(data); in TEST() 140 raw_svector_ostream OS(data); in TEST() 159 raw_svector_ostream OS(Data); in TEST() 174 raw_svector_ostream OS(Data); in TEST() [all …]
|
| H A D | formatted_raw_ostream_test.cpp | 21 raw_svector_ostream B(A); in TEST() 35 raw_svector_ostream B(A); in TEST() 76 raw_svector_ostream B(A); in TEST() 90 raw_svector_ostream B(A); in TEST() 130 raw_svector_ostream B(A); in TEST() 158 raw_svector_ostream B(A); in TEST()
|
| H A D | raw_pwrite_stream_test.cpp | 21 raw_svector_ostream Message(MessageStorage); \ 33 raw_svector_ostream OS(Buffer); in TEST()
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CIndexUSRs.cpp | 94 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCIvar() 104 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCMethod() 112 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCClass() 119 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCProtocol() 127 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCCategory() 135 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCProperty()
|
| H A D | BuildSystem.cpp | 78 llvm::raw_svector_ostream OS(Buf); in clang_VirtualFileOverlay_writeToBuffer() 134 llvm::raw_svector_ostream OS(Buf); in clang_ModuleMapDescriptor_writeToBuffer()
|
| /llvm-project-15.0.7/llvm/unittests/MC/ |
| H A D | StringTableBuilderTest.cpp | 36 raw_svector_ostream OS(Data); in TEST() 70 raw_svector_ostream OS(Data); in TEST() 97 raw_svector_ostream OS(Data); in TEST() 128 raw_svector_ostream OS(Data); in TEST() 163 raw_svector_ostream OS(Data); in TEST() 195 raw_svector_ostream OS(Data); in TEST() 231 raw_svector_ostream OS(Data); in TEST()
|
| /llvm-project-15.0.7/flang/unittests/Frontend/ |
| H A D | FrontendActionTest.cpp | 98 new llvm::raw_svector_ostream(outputFileBuffer)); in TEST_F() 129 new llvm::raw_svector_ostream(outputFileBuffer)); in TEST_F() 154 new llvm::raw_svector_ostream(outputDiagBuffer)); in TEST_F() 185 new llvm::raw_svector_ostream(outputFileBuffer)); in TEST_F() 220 new llvm::raw_svector_ostream(outputFileBuffer)); in TEST_F()
|
| /llvm-project-15.0.7/llvm/unittests/TextAPI/ |
| H A D | TextStubV3Tests.cpp | 291 raw_svector_ostream OS(Buffer); in TEST() 372 raw_svector_ostream OS(Buffer); in TEST() 395 raw_svector_ostream OS(Buffer); in TEST() 419 raw_svector_ostream OS(Buffer); in TEST() 442 raw_svector_ostream OS(Buffer); in TEST() 465 raw_svector_ostream OS(Buffer); in TEST() 489 raw_svector_ostream OS(Buffer); in TEST() 511 raw_svector_ostream OS(Buffer); in TEST() 539 raw_svector_ostream OS(Buffer); in TEST() 563 raw_svector_ostream OS(Buffer); in TEST() [all …]
|
| H A D | TextStubV4Tests.cpp | 387 raw_svector_ostream OS(Buffer); in TEST() 470 raw_svector_ostream OS(Buffer); in TEST() 499 raw_svector_ostream OS(Buffer); in TEST() 528 raw_svector_ostream OS(Buffer); in TEST() 553 raw_svector_ostream OS(Buffer); in TEST() 578 raw_svector_ostream OS(Buffer); in TEST() 602 raw_svector_ostream OS(Buffer); in TEST() 626 raw_svector_ostream OS(Buffer); in TEST() 650 raw_svector_ostream OS(Buffer); in TEST() 673 raw_svector_ostream OS(Buffer); in TEST() [all …]
|
| /llvm-project-15.0.7/llvm/unittests/DebugInfo/GSYM/ |
| H A D | GSYMTest.cpp | 182 raw_svector_ostream OutStrm(Str); in TEST() 212 raw_svector_ostream OutStrm(Str); in TestFunctionInfoEncodeError() 247 raw_svector_ostream OutStrm(Str); in TestFunctionInfoEncodeDecode() 324 raw_svector_ostream OutStrm(Str); in TestInlineInfoEncodeDecode() 355 raw_svector_ostream OutStrm(Str); in TestInlineInfoEncodeError() 499 raw_svector_ostream OutStrm(Str); in TEST() 561 raw_svector_ostream OutStrm(Str); in TestFileWriterHelper() 615 raw_svector_ostream OutStrm(Str); in TEST() 638 raw_svector_ostream OutStrm(Str); in TestAddressRangeEncodeDecodeHelper() 677 raw_svector_ostream OutStrm(Str); in TestLineTableHelper() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | raw_ostream.h | 662 class raw_svector_ostream : public raw_pwrite_stream { 678 explicit raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { in raw_svector_ostream() function 682 ~raw_svector_ostream() override = default; 709 class buffer_ostream : public raw_svector_ostream { 716 buffer_ostream(raw_ostream &OS) : raw_svector_ostream(Buffer), OS(OS) {} in buffer_ostream() 720 class buffer_unique_ostream : public raw_svector_ostream { 728 : raw_svector_ostream(Buffer), OS(std::move(OS)) { in buffer_unique_ostream()
|
| /llvm-project-15.0.7/bolt/include/bolt/Core/ |
| H A D | DebugData.h | 201 std::unique_ptr<raw_svector_ostream> RangesStream; 222 RangesStream = std::make_unique<raw_svector_ostream>(*RangesBuffer); in DebugRangeListsSectionWriter() 264 std::unique_ptr<raw_svector_ostream> CUBodyStream; 276 void writeARangesSection(raw_svector_ostream &RangesStream, 417 StrOffsetsStream = std::make_unique<raw_svector_ostream>(*StrOffsetsBuffer); in DebugStrOffsetsWriter() 440 std::unique_ptr<raw_svector_ostream> StrOffsetsStream; 470 std::unique_ptr<raw_svector_ostream> StrStream; 517 std::unique_ptr<raw_svector_ostream> LocStream; 552 LocBodyStream = std::make_unique<raw_svector_ostream>(*LocBodyBuffer); in DebugLoclistWriter() 599 std::unique_ptr<raw_svector_ostream> LocBodyStream; [all …]
|
| /llvm-project-15.0.7/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 | 190 llvm::raw_svector_ostream OS(SBuf); in CheckOpenVariant() 202 llvm::raw_svector_ostream OS(SBuf); in CheckOpenVariant() 257 llvm::raw_svector_ostream OS(SBuf); in CheckOpenVariant() 293 llvm::raw_svector_ostream os(S); in CheckPthreadOnce() 348 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() 795 llvm::raw_svector_ostream Out1(Buf1); in checkDeprecatedOrUnsafeBufferHandling() 796 llvm::raw_svector_ostream Out2(Buf2); in checkDeprecatedOrUnsafeBufferHandling() 877 llvm::raw_svector_ostream os1(buf1); in checkCall_rand() 881 llvm::raw_svector_ostream os2(buf2); in checkCall_rand() 1041 llvm::raw_svector_ostream os1(buf1); in checkUncheckedReturnValue() 1045 llvm::raw_svector_ostream os2(buf2); in checkUncheckedReturnValue()
|
| H A D | AnalyzerStatsChecker.cpp | 91 llvm::raw_svector_ostream output(buf); in checkEndAnalysis() 128 llvm::raw_svector_ostream outputI(bufI); in checkEndAnalysis()
|
| H A D | ReturnValueChecker.cpp | 105 llvm::raw_svector_ostream Out(Msg); in checkPostCall() 152 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()
|
| /llvm-project-15.0.7/bolt/lib/Core/ |
| H A D | DebugData.cpp | 108 uint64_t writeAddressRanges(raw_svector_ostream &Stream, in writeAddressRanges() 191 std::unique_ptr<raw_svector_ostream> HeaderStream = in getDWARF5Header() 192 std::make_unique<raw_svector_ostream>(*HeaderBuffer); in getDWARF5Header() 233 std::unique_ptr<raw_svector_ostream> CUArrayStream = in finalizeSection() 234 std::make_unique<raw_svector_ostream>(*CUArrayBuffer); in finalizeSection() 358 raw_svector_ostream AddressStream(Buffer); in finalize() 408 raw_svector_ostream AddressStream(Buffer); in finalize() 598 raw_svector_ostream &LocBodyStream) { in writeDWARF5LocList() 650 std::unique_ptr<raw_svector_ostream> LocArrayStream = in finalizeDWARF5() 651 std::make_unique<raw_svector_ostream>(*LocArrayBuffer); in finalizeDWARF5() [all …]
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | MachineFunctionPass.cpp | 81 raw_svector_ostream OS(BeforeStr); in runOnFunction() 116 raw_svector_ostream OS(AfterStr); in runOnFunction()
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/llvm/lib/Option/ |
| H A D | Arg.cpp | 73 raw_svector_ostream OS(Res); in getAsString() 104 raw_svector_ostream OS(Res); in render()
|
| /llvm-project-15.0.7/llvm/unittests/IR/ |
| H A D | TimePassesTest.cpp | 73 raw_svector_ostream ReportStream(TimePassesStr); in TEST() 128 raw_svector_ostream ReportStream(TimePassesStr); in TEST()
|
| /llvm-project-15.0.7/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()
|