Lines Matching refs:this_len
300 unsigned this_len = this->storage_.length_; in operator <() local
302 unsigned min_len = std::min<unsigned>(this_len, other_len); in operator <()
309 return (this_len < other_len); in operator <()
317 unsigned this_len = this->storage_.length_; in operator ==() local
319 if (this_len != other_len) in operator ==()
322 int comp = memcmp(this->cstr_, other.cstr_, this_len); in operator ==()
509 unsigned this_len; in operator <() local
513 decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, in operator <()
517 unsigned min_len = std::min<unsigned>(this_len, other_len); in operator <()
524 return (this_len < other_len); in operator <()
564 unsigned this_len; in operator ==() local
568 decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, in operator ==()
572 if (this_len != other_len) in operator ==()
575 int comp = memcmp(this_str, other_str, this_len); in operator ==()
595 unsigned this_len; in asCString() local
597 decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, in asCString()
608 unsigned this_len; in getCStringLength() local
610 decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, in getCStringLength()
612 return this_len; in getCStringLength()
635 unsigned this_len; in asString() local
637 decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, in asString()
639 return String(this_str, this_len); in asString()