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

  /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/protobuf/src/google/protobuf/compiler/
zip_writer.cc 102 out->WriteRaw(p, 2);

Completed in 269 milliseconds