Searched defs:Writer (Results 1 - 25 of 66) sorted by relevance

123

/external/llvm/tools/llvm-readobj/
H A DObjDumper.cpp23 ObjDumper::ObjDumper(ScopedPrinter &Writer) : W(Writer) {} argument
H A Dllvm-readobj.cpp325 ScopedPrinter &Writer,
331 return createCOFFDumper(Obj, Writer, Result);
333 return createELFDumper(Obj, Writer, Result);
335 return createMachODumper(Obj, Writer, Result);
342 ScopedPrinter Writer(outs());
344 if (std::error_code EC = createDumper(Obj, Writer, Dumper))
324 createDumper(const ObjectFile *Obj, ScopedPrinter &Writer, std::unique_ptr<ObjDumper> &Result) argument
/external/llvm/include/llvm/Support/
H A DEndianStream.h27 template <endianness endian> struct Writer { struct in namespace:llvm::support::endian
29 Writer(raw_ostream &OS) : OS(OS) {} function in struct:llvm::support::endian::Writer
42 inline void Writer<little>::write<float>(float Val) {
48 inline void Writer<little>::write<double>(double Val) {
54 inline void Writer<big>::write<float>(float Val) {
60 inline void Writer<big>::write<double>(double Val) {
/external/deqp/executor/
H A DxeXMLWriter.cpp21 * \brief XML Writer.
33 const Writer::EndElementType Writer::EndElement = Writer::EndElementType();
127 Writer::Writer (std::ostream& dst) function in class:xe::xml::Writer
135 Writer::~Writer (void)
139 Writer& Writer
[all...]
H A DxeXMLWriter.hpp23 * \brief XML Writer.
51 class Writer class in namespace:xe::xml
71 Writer (std::ostream& dst);
72 ~Writer (void);
74 Writer& operator<< (const BeginElement& begin);
75 Writer& operator<< (const Attribute& attribute);
76 Writer& operator<< (const EndElementType& end);
79 Writer& operator<< (const T& value); //!< Write data.
82 Writer (const Writer
[all...]
/external/clang/lib/Frontend/
H A DTestModuleFileExtension.h28 class Writer : public ModuleFileExtensionWriter { class in class:clang::TestModuleFileExtension
30 Writer(ModuleFileExtension *Ext) : ModuleFileExtensionWriter(Ext) { } function in class:clang::TestModuleFileExtension::Writer
31 ~Writer() override;
62 createExtensionWriter(ASTWriter &Writer) override;
H A DTestModuleFileExtension.cpp19 TestModuleFileExtension::Writer::~Writer() { }
21 void TestModuleFileExtension::Writer::writeExtensionContents(
100 return std::unique_ptr<ModuleFileExtensionWriter>(new Writer(this));
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DDiskCache.java14 interface Writer { interface in interface:DiskCache
19 * @param file The File the Writer should write to.
38 * Write to a key in the cache. {@link Writer} is used so that the cache implementation can perform actions after
44 void put(Key key, Writer writer);
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DNameMap.cpp148 Error NameMap::commit(codeview::StreamWriter &Writer) { argument
149 if (auto EC = Writer.writeInteger(0U)) // Number of bytes in table
152 if (auto EC = Writer.writeInteger(0U)) // Hash Size
155 if (auto EC = Writer.writeInteger(0U)) // Max Number of Strings
158 if (auto EC = Writer.writeInteger(0U)) // Num Present Words
161 if (auto EC = Writer.writeInteger(0U)) // Num Deleted Words
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/
H A DOpenedSocket.java60 return new OpenedSocket(new Reader(input), new Writer(output));
64 private final Writer writer;
67 Writer objectOutputStream) {
76 public Writer writer() {
107 public static final class Writer implements Closeable, Flushable { class in class:OpenedSocket
110 Writer(ObjectOutputStream output) { method in class:OpenedSocket.Writer
/external/clang/include/clang/Frontend/
H A DPCHContainerOperations.h99 void registerWriter(std::unique_ptr<PCHContainerWriter> Writer) { argument
100 Writers[Writer->getFormat()] = std::move(Writer);
/external/jsoncpp/include/json/
H A Dwriter.h28 class JSON_API Writer { class in namespace:Json
30 virtual ~Writer();
43 class JSON_API FastWriter : public Writer {
59 public: // overridden from Writer
94 class JSON_API StyledWriter : public Writer {
99 public: // overridden from Writer
164 * \note There is no point in deriving from Writer, since write() should not
/external/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp207 /// \param Writer The writer to instantiate according to the specified format.
230 /// \param Writer The writer to instantiate according to the specified format.
239 std::unique_ptr<SampleProfileWriter> Writer; local
242 Writer.reset(new SampleProfileWriterBinary(OS));
244 Writer.reset(new SampleProfileWriterText(OS));
253 return std::move(Writer);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow.h94 struct rc_instruction * Writer; member in struct:rc_reader_data
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MachObjectWriter.cpp1 //===-- AArch64MachObjectWriter.cpp - ARM Mach Object Writer --------------===//
36 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
145 MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout,
148 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
232 Writer->addRelocation(A_Base, Fragment->getParent(), MRE);
277 Value += (!A->getFragment() ? 0 : Writer->getSymbolAddress(*A, Layout)) -
278 (!A_Base || !A_Base->getFragment() ? 0 : Writer->getSymbolAddress(
280 Value -= (!B->getFragment() ? 0 : Writer->getSymbolAddress(*B, Layout)) -
281 (!B_Base || !B_Base->getFragment() ? 0 : Writer->getSymbolAddress(
289 Writer
144 recordRelocation( MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]
/external/llvm/unittests/ProfileData/
H A DSampleProfTest.cpp48 std::unique_ptr<SampleProfileWriter> Writer; member in struct:__anon13799::SampleProfTest
52 : Data(), OS(new raw_string_ostream(Data)), Writer(), Reader() {}
57 Writer = std::move(WriterOrErr.get());
92 EC = Writer->write(Profiles);
95 Writer->getOutputStream().flush();
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp1 //===-- ARMMachObjectWriter.cpp - ARM Mach Object Writer ------------------===//
27 void RecordARMScatteredRelocation(MachObjectWriter *Writer,
35 void RecordARMMovwMovtRelocation(MachObjectWriter *Writer,
48 void RecordRelocation(MachObjectWriter *Writer,
122 RecordARMMovwMovtRelocation(MachObjectWriter *Writer, argument
130 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
141 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout);
144 Writer->getSectionAddress(A_SD->getFragment()->getParent());
156 Value2 = Writer->getSymbolAddress(B_SD, Layout);
157 FixedValue -= Writer
219 RecordARMScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) argument
280 RecordRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]
/external/compiler-rt/lib/profile/
H A DInstrProfilingWriter.c204 static int writeValueProfData(WriterCallback Writer, void *WriterCtx, argument
214 BufferIO = lprofCreateBufferIO(Writer, WriterCtx);
228 COMPILER_RT_VISIBILITY int lprofWriteData(WriterCallback Writer, argument
238 return lprofWriteDataImpl(Writer, WriterCtx, DataBegin, DataEnd,
244 lprofWriteDataImpl(WriterCallback Writer, void *WriterCtx, argument
276 if (Writer(IOVec, sizeof(IOVec) / sizeof(*IOVec), &WriterCtx))
279 return writeValueProfData(Writer, WriterCtx, VPDataReader, DataBegin,
/external/jsoncpp/src/lib_json/
H A Djson_writer.cpp173 // Class Writer
175 Writer::~Writer() {}
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp1 //===-- ARMMachObjectWriter.cpp - ARM Mach Object Writer ------------------===//
29 void RecordARMScatteredRelocation(MachObjectWriter *Writer,
38 void RecordARMScatteredHalfRelocation(MachObjectWriter *Writer,
45 bool requiresExternRelocation(MachObjectWriter *Writer,
54 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
139 RecordARMScatteredHalfRelocation(MachObjectWriter *Writer, argument
147 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
160 uint32_t Value = Writer->getSymbolAddress(*A, Layout);
162 uint64_t SecAddr = Writer->getSectionAddress(A->getFragment()->getParent());
177 Value2 = Writer
243 RecordARMScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Type, unsigned Log2Size, uint64_t &FixedValue) argument
310 requiresExternRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCFragment &Fragment, unsigned RelocType, const MCSymbol &S, uint64_t FixedValue) argument
348 recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMachObjectWriter.cpp1 //===-- PPCMachObjectWriter.cpp - PPC Mach-O Writer -----------------------===//
27 bool recordScatteredRelocation(MachObjectWriter *Writer,
34 void RecordPPCRelocation(MachObjectWriter *Writer, const MCAssembler &Asm,
43 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
47 if (Writer->is64Bit()) {
50 RecordPPCRelocation(Writer, Asm, Layout, Fragment, Fixup, Target,
192 MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout,
198 const unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, FK);
213 uint32_t Value = Writer->getSymbolAddress(*A, Layout);
214 uint64_t SecAddr = Writer
191 recordScatteredRelocation( MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) argument
301 RecordPPCRelocation( MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp1 //===-- X86MachObjectWriter.cpp - X86 Mach-O Writer -----------------------===//
28 bool recordScatteredRelocation(MachObjectWriter *Writer,
36 void recordTLVPRelocation(MachObjectWriter *Writer,
44 void RecordX86Relocation(MachObjectWriter *Writer,
51 void RecordX86_64Relocation(MachObjectWriter *Writer, MCAssembler &Asm,
60 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
64 if (Writer->is64Bit())
65 RecordX86_64Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
68 RecordX86Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
103 MachObjectWriter *Writer, MCAssemble
102 RecordX86_64Relocation( MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
365 recordScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) argument
465 recordTLVPRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
507 RecordX86Relocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DHpack.java369 static final class Writer { class in class:Hpack
372 Writer(Buffer out) { method in class:Hpack.Writer
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/MCTargetDesc/
H A DPPCAsmBackend.cpp54 void RecordRelocation(MachObjectWriter *Writer, argument
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp1 //===-- X86MachObjectWriter.cpp - X86 Mach-O Writer -----------------------===//
26 void RecordScatteredRelocation(MachObjectWriter *Writer,
34 void RecordTLVPRelocation(MachObjectWriter *Writer,
42 void RecordX86Relocation(MachObjectWriter *Writer,
49 void RecordX86_64Relocation(MachObjectWriter *Writer,
62 void RecordRelocation(MachObjectWriter *Writer, argument
66 if (Writer->is64Bit())
67 RecordX86_64Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
70 RecordX86Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
99 void X86MachObjectWriter::RecordX86_64Relocation(MachObjectWriter *Writer, argument
338 RecordScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) argument
404 RecordTLVPRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
451 RecordX86Relocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]

Completed in 838 milliseconds

123