HomeSort by relevance Sort by last modified time
    Searched refs:WriteRaw (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
printer.cc 67 WriteRaw(text + pos, i - pos + 1);
70 // Setting this true will cause the next WriteRaw() to insert an indent
78 WriteRaw(text + pos, i - pos);
92 WriteRaw(&variable_delimiter_, 1);
99 WriteRaw(iter->second.data(), iter->second.size());
110 WriteRaw(text + pos, size - pos);
159 WriteRaw(data.data(), data.size());
164 WriteRaw(data, strlen(data));
167 void Printer::WriteRaw(const char* data, int size) {
174 WriteRaw(indent_.data(), indent_.size())
    [all...]
printer.h 111 void WriteRaw(const char* data, int size);
printer_unittest.cc 86 TEST(Printer, WriteRaw) {
95 printer.WriteRaw("Hello World!", 12);
98 printer.WriteRaw("\n", 1);
coded_stream.cc 593 void CodedOutputStream::WriteRaw(const void* data, int size) {
623 WriteRaw(bytes, sizeof(value));
638 WriteRaw(bytes, sizeof(value));
682 // compose the bytes first then use WriteRaw().
690 WriteRaw(bytes, size);
782 // compose the bytes first then use WriteRaw().
790 WriteRaw(bytes, size);
zero_copy_stream_unittest.cc 304 coded_output->WriteRaw(strA, strlen(strA));
312 coded_output->WriteRaw(strB, strlen(strB));
611 coded_output->WriteRaw(strA, outlen);
622 coded_output->WriteRaw(strB, outlen);
coded_stream.h 60 // coded_output->WriteRaw(text, strlen(text));
602 // coded_output->WriteRaw(text, strlen(text));
640 void WriteRaw(const void* buffer, int size);
641 // Like WriteRaw() but writing directly to the target array.
648 // Equivalent to WriteRaw(str.data(), str.size()).
    [all...]
coded_stream_unittest.cc 625 TEST_1D(CodedStreamTest, WriteRaw, kBlockSizes) {
631 coded_output.WriteRaw(kRawBytes, sizeof(kRawBytes));
    [all...]
  /external/protobuf/src/google/protobuf/io/
printer.cc 68 WriteRaw(text + pos, i - pos + 1);
71 // Setting this true will cause the next WriteRaw() to insert an indent
79 WriteRaw(text + pos, i - pos);
93 WriteRaw(&variable_delimiter_, 1);
100 WriteRaw(iter->second.data(), iter->second.size());
111 WriteRaw(text + pos, size - pos);
149 WriteRaw(data.data(), data.size());
154 WriteRaw(data, strlen(data));
157 void Printer::WriteRaw(const char* data, int size) {
164 WriteRaw(indent_.data(), indent_.size())
    [all...]
printer.h 107 void WriteRaw(const char* data, int size);
printer_unittest.cc 86 TEST(Printer, WriteRaw) {
95 printer.WriteRaw("Hello World!", 12);
98 printer.WriteRaw("\n", 1);
coded_stream.cc 566 void CodedOutputStream::WriteRaw(const void* data, int size) {
596 WriteRaw(bytes, sizeof(value));
611 WriteRaw(bytes, sizeof(value));
655 // compose the bytes first then use WriteRaw().
663 WriteRaw(bytes, size);
755 // compose the bytes first then use WriteRaw().
763 WriteRaw(bytes, size);
coded_stream.h 60 // coded_output->WriteRaw(text, strlen(text));
574 // coded_output->WriteRaw(text, strlen(text));
612 void WriteRaw(const void* buffer, int size);
613 // Like WriteRaw() but writing directly to the target array.
620 // Equivalent to WriteRaw(str.data(), str.size()).
    [all...]
coded_stream_unittest.cc 592 TEST_1D(CodedStreamTest, WriteRaw, kBlockSizes) {
598 coded_output.WriteRaw(kRawBytes, sizeof(kRawBytes));
    [all...]
  /external/chromium_org/third_party/ots/include/
ots-memory-stream.h 21 virtual bool WriteRaw(const void *data, size_t length) {
63 bool WriteRaw(const void *data, size_t length) {
78 return WriteRaw(data, length);
opentype-sanitiser.h 47 virtual bool WriteRaw(const void *data, size_t length) = 0;
85 return WriteRaw(data, orig_length);
  /external/chromium_org/third_party/ots/test/
file-stream.h 22 bool WriteRaw(const void *data, size_t length) {
layout_common_table_test.cc 241 virtual bool WriteRaw(const void *data, size_t length) {
245 return ots::MemoryStream::WriteRaw(data, length);
  /external/chromium_org/webkit/browser/appcache/
appcache_response.cc 120 void AppCacheResponseIO::WriteRaw(int index, int offset,
325 WriteRaw(kResponseInfoIndex, 0, buffer_.get(), write_amount_);
348 WriteRaw(
appcache_response.h 114 void WriteRaw(int index, int offset, net::IOBuffer* buf, int buf_len);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
zip_writer.cc 132 out->WriteRaw(p, 2);
  /external/protobuf/src/google/protobuf/compiler/
zip_writer.cc 102 out->WriteRaw(p, 2);

Completed in 1274 milliseconds