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

123

/external/llvm/tools/llvm-readobj/
H A DObjDumper.cpp24 ObjDumper::ObjDumper(StreamWriter& Writer) argument
25 : W(Writer) {
/external/v8/tools/gyp/pylib/gyp/
H A DMSVSToolFile.py11 class Writer(object): class in inherits:object
H A DMSVSProject.py51 class Writer(object): class in inherits:object
H A DMSVSUserFile.py54 class Writer(object): class in inherits:object
H A Dninja_syntax.py18 class Writer(object): class in inherits:object
/external/llvm/include/llvm/Support/
H A DEndianStream.h26 template <endianness endian> struct Writer { struct in namespace:llvm::support::endian
28 Writer(raw_ostream &OS) : OS(OS) {} function in struct:llvm::support::endian::Writer
37 inline void Writer<little>::write<float>(float Val) {
43 inline void Writer<little>::write<double>(double Val) {
49 inline void Writer<big>::write<float>(float Val) {
55 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/marisa-trie/lib/marisa/
H A Dwriter.cc14 Writer::Writer() function in class:marisa::Writer
17 Writer::Writer(std::FILE *file) function in class:marisa::Writer
20 Writer::Writer(int fd) function in class:marisa::Writer
23 Writer::Writer(std::ostream *stream) function in class:marisa::Writer
26 Writer::~Writer() {
[all...]
H A Dwriter.h11 class Writer { class in namespace:marisa
13 Writer();
14 explicit Writer(std::FILE *file);
15 explicit Writer(int fd);
16 explicit Writer(std::ostream *stream);
17 ~Writer();
42 void swap(Writer *rhs);
53 Writer(const Writer &);
54 Writer
[all...]
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dwriter.cc14 Writer::Writer() function in class:marisa_alpha::Writer
17 Writer::Writer(std::FILE *file) function in class:marisa_alpha::Writer
20 Writer::Writer(int fd) function in class:marisa_alpha::Writer
23 Writer::Writer(std::ostream *stream) function in class:marisa_alpha::Writer
26 Writer::~Writer() {
[all...]
H A Dwriter.h11 class Writer { class in namespace:marisa_alpha
13 Writer();
14 explicit Writer(std::FILE *file);
15 explicit Writer(int fd);
16 explicit Writer(std::ostream *stream);
17 ~Writer();
43 void swap(Writer *rhs);
54 Writer(const Writer &);
55 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(
102 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/compiler-rt/lib/profile/
H A DInstrProfilingWriter.c13 COMPILER_RT_VISIBILITY int llvmWriteProfData(WriterCallback Writer, argument
24 return llvmWriteProfDataImpl(Writer, WriterCtx, DataBegin, DataEnd,
30 WriterCallback Writer, void *WriterCtx,
62 if (Writer(IOVec, sizeof(IOVec) / sizeof(*IOVec), &WriterCtx))
66 if (Writer(IOVec2, sizeof(IOVec2) / sizeof(*IOVec2), &WriterCtx))
29 llvmWriteProfDataImpl( WriterCallback Writer, void *WriterCtx, const __llvm_profile_data *DataBegin, const __llvm_profile_data *DataEnd, const uint64_t *CountersBegin, const uint64_t *CountersEnd, const uint8_t *ValueDataBegin, const uint64_t ValueDataSize, const char *NamesBegin, const char *NamesEnd) argument
/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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
H A Dwriter.py205 class Writer(object): class in inherits:object
H A Dvault.py28 resume_file_upload, Writer namespace
127 :rtype: :class:`boto.glacier.writer.Writer`
128 :return: A Writer object that to which the archive data
134 return Writer(self, response['UploadId'], part_size=part_size)
/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.cpp193 /// \param Writer The writer to instantiate according to the specified format.
216 /// \param Writer The writer to instantiate according to the specified format.
225 std::unique_ptr<SampleProfileWriter> Writer; local
228 Writer.reset(new SampleProfileWriterBinary(OS));
230 Writer.reset(new SampleProfileWriterText(OS));
239 return std::move(Writer);
/external/llvm/unittests/ProfileData/
H A DSampleProfTest.cpp32 std::unique_ptr<SampleProfileWriter> Writer; member in struct:__anon13206::SampleProfTest
36 : Data(), OS(new raw_string_ostream(Data)), Writer(), Reader() {}
41 Writer = std::move(WriterOrErr.get());
70 EC = Writer->write(Profiles);
73 Writer->getOutputStream().flush();
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow.h94 struct rc_instruction * Writer; member in struct:rc_reader_data
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/glacier/
H A Dtest_writer.py36 from boto.glacier.writer import Writer, resume_file_upload namespace
98 self.writer = Writer(

Completed in 484 milliseconds

123