HomeSort by relevance Sort by last modified time
    Searched full:record_start_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 196 record_start_(-1),
247 if (record_target_ != NULL && record_start_ < buffer_size_) {
248 record_target_->append(buffer_ + record_start_, buffer_size_ - record_start_);
249 record_start_ = 0;
272 record_start_ = buffer_pos_;
280 if (buffer_pos_ != record_start_) {
281 record_target_->append(buffer_ + record_start_, buffer_pos_ - record_start_);
284 record_start_ = -1
    [all...]
tokenizer.h 253 // E.g. StartToken() calls RecordTo(&current_.text). record_start_ is the
256 int record_start_; member in class:google::protobuf::io::Tokenizer

Completed in 55 milliseconds