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

  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 103 void ReadString(ZeroCopyInputStream* input, const string& str);
197 void IoTest::ReadString(ZeroCopyInputStream* input, const string& str) {
221 ReadString(input, "Hello world!\n");
222 ReadString(input, "Some text. ");
223 ReadString(input, "Blah ");
224 ReadString(input, "blah.");
225 ReadString(input, "abcdefg");
227 ReadString(input, "foo");
228 ReadString(input, "bar");
253 ReadString(input, "Hello world!\nSome text. ")
    [all...]
coded_stream_unittest.cc 608 TEST_1D(CodedStreamTest, ReadString, kBlockSizes) {
616 EXPECT_TRUE(coded_input.ReadString(&str, strlen(kRawBytes)));
623 // Check to make sure ReadString doesn't crash on impossibly large strings.
632 EXPECT_FALSE(coded_input.ReadString(&str, 1 << 30));
642 EXPECT_FALSE(coded_input.ReadString(&str, 1 << 30));
649 EXPECT_FALSE(coded_input.ReadString(&str, 1 << 30));
669 EXPECT_TRUE(coded_input.ReadString(&str, strlen("<Before skipping>")));
672 EXPECT_TRUE(coded_input.ReadString(&str, strlen("<After skipping>")));
952 EXPECT_TRUE(coded_input.ReadString(&str, 16));
    [all...]
coded_stream.h 184 // Implementation Note: ReadString() grows the string gradually as it
189 bool ReadString(string* buffer, int size);
    [all...]
coded_stream.cc 216 bool CodedInputStream::ReadString(string* buffer, int size) {
  /external/chromium/base/
pickle_unittest.cc 32 EXPECT_TRUE(pickle.ReadString(&iter, &outstr));
96 EXPECT_TRUE(pickle.ReadString(&iter, &outstr));
106 EXPECT_TRUE(pickle.ReadString(&iter, &outstr));
116 EXPECT_FALSE(pickle.ReadString(&iter, &outstr));
pickle.h 75 bool ReadString(void** iter, std::string* result) const;
pickle.cc 212 bool Pickle::ReadString(void** iter, std::string* result) const {
histogram.cc 418 if (!pickle.ReadString(&iter, &histogram_name) ||
file_path.cc     [all...]
  /external/chromium/net/flip/
flip_frame_builder.h 61 bool ReadString(void** iter, std::string* result) const;
flip_frame_builder.cc 63 bool FlipFrameBuilder::ReadString(void** iter, std::string* result) const {
flip_framer.cc 418 if (!builder.ReadString(&iter, &name))
420 if (!builder.ReadString(&iter, &value))
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.cc 242 DO_(::google::protobuf::internal::WireFormatLite::ReadString(
260 DO_(::google::protobuf::internal::WireFormatLite::ReadString(
575 DO_(::google::protobuf::internal::WireFormatLite::ReadString(
592 DO_(::google::protobuf::internal::WireFormatLite::ReadString(
609 DO_(::google::protobuf::internal::WireFormatLite::ReadString(
896 DO_(::google::protobuf::internal::WireFormatLite::ReadString(
    [all...]
  /external/protobuf/src/google/protobuf/
wire_format_lite.cc 342 bool WireFormatLite::ReadString(io::CodedInputStream* input,
wire_format.cc 105 if (!input->ReadString(unknown_fields->AddLengthDelimited(number),
570 if (!WireFormatLite::ReadString(input, &value)) return false;
685 if (!input->ReadString(&temp, length)) return false;
    [all...]
descriptor.pb.cc     [all...]
descriptor_database.cc 357 return internal::WireFormatLite::ReadString(&input, output);
wire_format_lite.h 291 static bool ReadString(input, string* value);
extension_set.cc     [all...]
  /hardware/ril/mock-ril/src/generated/cpp/
ril.pb.cpp     [all...]
ctrl.pb.cpp 779 DO_(::google::protobuf::internal::WireFormatLite::ReadString(
    [all...]
  /external/chromium/net/http/
http_response_headers.cc 99 if (pickle.ReadString(iter, &raw_input))
    [all...]
  /external/v8/src/
parser.cc 889 static const char* ReadString(unsigned* start, int* chars);
953 const char* ParserRecorder::ReadString(unsigned* start, int* chars) {
987 return ParserRecorder::ReadString(start, NULL);
997 array[i] = ParserRecorder::ReadString(ReadAddress(pos), &count);
    [all...]

Completed in 636 milliseconds