/external/llvm/unittests/Support/ |
D | EndianStreamTest.cpp | 23 raw_svector_ostream OS(data); in TEST() 38 raw_svector_ostream OS(data); in TEST() 54 raw_svector_ostream OS(data); in TEST() 69 raw_svector_ostream OS(data); in TEST() 84 raw_svector_ostream OS(data); in TEST() 103 raw_svector_ostream OS(data); in TEST() 122 raw_svector_ostream OS(data); in TEST() 141 raw_svector_ostream OS(data); in TEST()
|
D | formatted_raw_ostream_test.cpp | 22 raw_svector_ostream B(A); in TEST()
|
D | raw_pwrite_stream_test.cpp | 21 raw_svector_ostream OS(Buffer); in TEST()
|
/external/clang/tools/libclang/ |
D | CIndexUSRs.cpp | 97 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCIvar() 107 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCMethod() 115 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCClass() 122 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCProtocol() 130 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCCategory() 138 llvm::raw_svector_ostream OS(Buf); in clang_constructUSR_ObjCProperty()
|
D | BuildSystem.cpp | 77 llvm::raw_svector_ostream OS(Buf); in clang_VirtualFileOverlay_writeToBuffer() 133 llvm::raw_svector_ostream OS(Buf); in clang_ModuleMapDescriptor_writeToBuffer()
|
/external/llvm/include/llvm/Support/ |
D | raw_ostream.h | 477 class raw_svector_ostream : public raw_pwrite_stream { 493 explicit raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { in raw_svector_ostream() function 496 ~raw_svector_ostream() override {} in ~raw_svector_ostream() 519 class buffer_ostream : public raw_svector_ostream { 524 buffer_ostream(raw_ostream &OS) : raw_svector_ostream(Buffer), OS(OS) {} in buffer_ostream()
|
/external/clang/lib/AST/ |
D | Mangle.cpp | 207 llvm::raw_svector_ostream Out(Buffer); in mangleCtorBlock() 216 llvm::raw_svector_ostream Out(Buffer); in mangleDtorBlock() 226 llvm::raw_svector_ostream Stream(Buffer); in mangleBlock() 260 llvm::raw_svector_ostream OS(Name); in mangleObjCMethodName()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | ByteStreamer.h | 96 raw_svector_ostream OSE(Buffer); in EmitSLEB128() 102 raw_svector_ostream OSE(Buffer); in EmitULEB128()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | AnalyzerStatsChecker.cpp | 92 llvm::raw_svector_ostream output(buf); in checkEndAnalysis() 128 llvm::raw_svector_ostream outputI(bufI); in checkEndAnalysis()
|
D | CheckSecuritySyntaxOnly.cpp | 281 llvm::raw_svector_ostream os(sbuf); in checkLoopConditionForFloat() 483 llvm::raw_svector_ostream out(buf); in checkCall_mkstemp() 611 llvm::raw_svector_ostream os1(buf1); in checkCall_rand() 615 llvm::raw_svector_ostream os2(buf2); in checkCall_rand() 727 llvm::raw_svector_ostream os1(buf1); in checkUncheckedReturnValue() 731 llvm::raw_svector_ostream os2(buf2); in checkUncheckedReturnValue()
|
D | ObjCContainersASTChecker.cpp | 133 llvm::raw_svector_ostream OsName(BufName); in VisitCallExpr() 137 llvm::raw_svector_ostream Os(Buf); in VisitCallExpr()
|
D | IvarInvalidationChecker.cpp | 202 static void printIvar(llvm::raw_svector_ostream &os, 336 llvm::raw_svector_ostream os(PropNameWithUnderscore); in findPropertyBackingIvar() 349 void IvarInvalidationCheckerImpl::printIvar(llvm::raw_svector_ostream &os, in printIvar() 536 llvm::raw_svector_ostream os(sbuf); in reportNoInvalidationMethod() 559 llvm::raw_svector_ostream os(sbuf); in reportIvarNeedsInvalidation()
|
D | DynamicTypeChecker.cpp | 78 llvm::raw_svector_ostream OS(Buf); in reportTypeError() 122 llvm::raw_svector_ostream OS(Buf); in VisitNode()
|
D | StackAddrEscapeChecker.cpp | 108 llvm::raw_svector_ostream os(buf); in EmitStackError() 237 llvm::raw_svector_ostream os(buf); in checkEndFunction()
|
/external/llvm/lib/Target/MSP430/ |
D | MSP430MCInstLower.cpp | 55 raw_svector_ostream(Name) << DL.getPrivateGlobalPrefix() << "JTI" in GetJumpTableSymbol() 72 raw_svector_ostream(Name) << DL.getPrivateGlobalPrefix() << "CPI" in GetConstantPoolIndexSymbol()
|
/external/llvm/lib/Option/ |
D | Arg.cpp | 68 llvm::raw_svector_ostream OS(Res); in getAsString() 99 llvm::raw_svector_ostream OS(Res); in render()
|
/external/llvm/lib/IR/ |
D | Mangler.cpp | 72 raw_svector_ostream OS(OutName); in getNameWithPrefix() 172 raw_svector_ostream OS(OutName); in getNameWithPrefix()
|
/external/llvm/unittests/DebugInfo/DWARF/ |
D | DWARFFormValueTest.cpp | 67 raw_svector_ostream OS(RawData); in createULEBFormValue() 78 raw_svector_ostream OS(RawData); in createSLEBFormValue()
|
/external/clang/lib/Frontend/ |
D | DiagnosticRenderer.cpp | 476 llvm::raw_svector_ostream Message(MessageStorage); in emitSingleMacroExpansion() 613 llvm::raw_svector_ostream Message(MessageStorage); in emitMacroExpansions() 632 llvm::raw_svector_ostream Message(MessageStorage); in emitIncludeLocation() 644 llvm::raw_svector_ostream Message(MessageStorage); in emitImportLocation() 660 llvm::raw_svector_ostream Message(MessageStorage); in emitBuildingModuleLocation()
|
/external/llvm/unittests/MC/ |
D | YAMLTest.cpp | 34 llvm::raw_svector_ostream OS(Buf); in TEST()
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | CompileUtils.h | 36 raw_svector_ostream ObjStream(ObjBufferSV); in operator()
|
/external/llvm/lib/MC/ |
D | WinCOFFStreamer.cpp | 50 raw_svector_ostream VecOS(Code); in EmitInstToData() 231 raw_svector_ostream OS(Directive); in EmitCommonSymbol()
|
/external/llvm/include/llvm/TableGen/ |
D | StringToOffsetTable.h | 46 raw_svector_ostream(Str).write_escaped(AggregateString); in EmitString()
|
/external/llvm/lib/LTO/ |
D | LTOModule.cpp | 349 raw_svector_ostream OS(Buffer); in addDefinedDataSymbol() 410 raw_svector_ostream OS(Buffer); in addDefinedFunctionSymbol() 550 raw_svector_ostream OS(name); in addPotentialUndefinedSymbol() 587 raw_svector_ostream OS(Buffer); in parseSymbols()
|
/external/clang/lib/Basic/ |
D | Diagnostic.cpp | 486 llvm::raw_svector_ostream Out(OutStr); in HandleOrdinalModifier() 791 llvm::raw_svector_ostream(OutStr) << Val; in FormatDiagnostic() 809 llvm::raw_svector_ostream(OutStr) << Val; in FormatDiagnostic() 818 llvm::raw_svector_ostream Out(OutStr); in FormatDiagnostic() 847 llvm::raw_svector_ostream(OutStr) << '\'' << II->getName() << '\''; in FormatDiagnostic()
|