HomeSort by relevance Sort by last modified time
    Searched defs:Writer (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/leveldatabase/src/db/
log_writer.h 19 class Writer {
21 // Create a writer that will append data to "*dest".
23 // "*dest" must remain live while this Writer is in use.
24 explicit Writer(WritableFile* dest);
25 ~Writer();
41 Writer(const Writer&);
42 void operator=(const Writer&);
log_writer.cc 15 Writer::Writer(WritableFile* dest)
24 Writer::~Writer() {
27 Status Writer::AddRecord(const Slice& slice) {
75 Status Writer::EmitPhysicalRecord(RecordType t, const char* ptr, size_t n) {
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSToolFile.py 5 """Visual Studio project reader/writer."""
11 class Writer(object):
12 """Visual Studio XML tool file writer."""
MSVSProject.py 5 """Visual Studio project reader/writer."""
51 class Writer(object):
52 """Visual Studio XML project writer."""
MSVSUserFile.py 5 """Visual Studio user preferences file writer."""
54 class Writer(object):
55 """Visual Studio XML user user file writer."""
ninja_syntax.py 18 class Writer(object):
common.py 332 class Writer:
392 return Writer()
  /external/llvm/include/llvm/Support/
EndianStream.h 26 template <endianness endian> struct Writer {
28 Writer(raw_ostream &OS) : OS(OS) {}
  /external/deqp/executor/
xeXMLWriter.cpp 21 * \brief XML Writer.
33 const Writer::EndElementType Writer::EndElement = Writer::EndElementType();
95 Writer::Writer (std::ostream& dst)
103 Writer::~Writer (void)
107 Writer& Writer::operator<< (const BeginElement& begin
    [all...]
xeXMLWriter.hpp 23 * \brief XML Writer.
51 class Writer
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& other)
    [all...]
  /external/chromium_org/extensions/browser/
computed_hashes.h 44 class Writer {
46 Writer();
47 ~Writer();
computed_hashes.cc 127 ComputedHashes::Writer::Writer() : file_list_(new base::ListValue) {
130 ComputedHashes::Writer::~Writer() {
133 void ComputedHashes::Writer::AddHashes(const base::FilePath& relative_path,
153 bool ComputedHashes::Writer::WriteToFile(const base::FilePath& path) {
  /external/chromium_org/tools/ipc_fuzzer/message_lib/
message_file_writer.cc 19 class Writer {
21 Writer(const base::FilePath& path);
22 ~Writer() {}
50 DISALLOW_COPY_AND_ASSIGN(Writer);
53 Writer::Writer(const base::FilePath& path) : path_(path), messages_(NULL) {
56 bool Writer::OpenFile() {
66 bool Writer::WriteBlob(const void *buffer, size_t size) {
78 bool Writer::CollectMessageTypes() {
90 bool Writer::WriteHeader()
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/utils/
codec.py 8 class Writer(object):
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskCache.java 16 public interface Writer {
21 * @param os The output stream the Writer should write to.
35 * Write to a key in the cache. {@link Writer} is used so that the cache implementation
39 * @param writer An interface that will write data given an OutputStream for the key
41 public void put(Key key, Writer writer);
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 56 InstrProfWriter Writer;
64 Writer.addFunctionCounts(I.Name, I.Hash, I.Counts))
69 Writer.write(Output);
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
in_generator.py 37 class Writer(object):
101 writer = self._writer_class(args)
102 writer.set_gperf_path(options.gperf)
103 writer.write_files(options.output_dir)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_dataflow.h 94 struct rc_instruction * Writer;
108 struct rc_instruction * writer,
116 struct rc_instruction * writer,
  /external/jsoncpp/include/json/
writer.h 21 class JSON_API Writer
24 virtual ~Writer();
35 class JSON_API FastWriter : public Writer
43 public: // overridden from Writer
71 class JSON_API StyledWriter: public Writer
77 public: // overridden from Writer
138 * \note There is no point in deriving from Writer, since write() should not return a value.
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow.h 94 struct rc_instruction * Writer;
108 struct rc_instruction * writer,
116 struct rc_instruction * writer,
  /external/chromium_org/content/browser/loader/
redirect_to_file_resource_handler.cc 58 class RedirectToFileResourceHandler::Writer {
60 Writer(RedirectToFileResourceHandler* handler,
78 base::Bind(&Writer::DidWriteToFile, base::Unretained(this)));
92 ~Writer() {
107 int result = file_stream_->Close(base::Bind(&Writer::DidClose,
126 DISALLOW_COPY_AND_ASSIGN(Writer);
144 // Orphan the writer to asynchronously close and release the temporary file.
252 writer_ = new Writer(this, file_stream.Pass(), deletable_file);
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_html_writer.cc 88 class Writer : public base::RefCountedThreadSafe<Writer> {
90 Writer(base::Value* bookmarks,
155 friend class base::RefCountedThreadSafe<Writer>;
168 ~Writer() {}
381 DISALLOW_COPY_AND_ASSIGN(Writer);
441 base::Bind(&Writer::DoWrite,
442 new Writer(codec.Encode(BookmarkModelFactory::GetForProfile(
  /external/chromium_org/mojo/system/
memory.h 238 // UserPointer<uint32_t>::Writer foos_writer(foos, num_foos);
247 typedef UserPointerWriter<Type> Writer;
313 // Implementation of |UserPointer<Type>::Writer|.
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
SourceResourceRunner.java 26 public class SourceResourceRunner<T, Z, R> implements Runnable, DiskCache.Writer, Prioritized {
123 diskCache.put(key.getOriginalKey(), new DiskCache.Writer() {
  /external/jsoncpp/src/lib_json/
json_writer.cpp 7 # include <json/writer.h>
184 // Class Writer
186 Writer::~Writer()
835 Json::StyledStreamWriter writer; local
836 writer.write(sout, root);

Completed in 1795 milliseconds

1 2