/external/llvm/tools/llvm-readobj/ |
H A D | ObjDumper.cpp | 24 ObjDumper::ObjDumper(StreamWriter& Writer) argument 25 : W(Writer) {
|
/external/v8/tools/gyp/pylib/gyp/ |
H A D | MSVSToolFile.py | 11 class Writer(object): class in inherits:object
|
H A D | MSVSProject.py | 51 class Writer(object): class in inherits:object
|
H A D | MSVSUserFile.py | 54 class Writer(object): class in inherits:object
|
H A D | ninja_syntax.py | 18 class Writer(object): class in inherits:object
|
/external/llvm/include/llvm/Support/ |
H A D | EndianStream.h | 26 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 D | xeXMLWriter.cpp | 21 * \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 D | xeXMLWriter.hpp | 23 * \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 D | writer.cc | 14 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 D | writer.h | 11 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 D | writer.cc | 14 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 D | writer.h | 11 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 D | TestModuleFileExtension.h | 28 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 D | TestModuleFileExtension.cpp | 19 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 D | DiskCache.java | 14 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 D | InstrProfilingWriter.c | 13 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 D | OpenedSocket.java | 60 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 D | writer.py | 205 class Writer(object): class in inherits:object
|
H A D | vault.py | 28 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 D | PCHContainerOperations.h | 99 void registerWriter(std::unique_ptr<PCHContainerWriter> Writer) { argument 100 Writers[Writer->getFormat()] = std::move(Writer);
|
/external/jsoncpp/include/json/ |
H A D | writer.h | 28 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 D | SampleProfWriter.cpp | 193 /// \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 D | SampleProfTest.cpp | 32 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 D | radeon_dataflow.h | 94 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 D | test_writer.py | 36 from boto.glacier.writer import Writer, resume_file_upload namespace 98 self.writer = Writer(
|