Lines Matching refs:count_
39 explicit SetStringCountVisitor(int32_t count) : count_(count) { in SetStringCountVisitor()
46 string->SetCount(count_); in operator()
51 const int32_t count_;
59 : count_(count), src_array_(src_array), offset_(offset), high_byte_(high_byte) { in SetStringCountAndBytesVisitor()
66 string->SetCount(count_); in operator()
68 int32_t length = String::GetLengthFromCount(count_); in operator()
84 const int32_t count_;
95 count_(count), src_array_(src_array), offset_(offset) { in SetStringCountAndValueVisitorFromCharArray()
102 string->SetCount(count_); in operator()
104 const int32_t length = String::GetLengthFromCount(count_); in operator()
105 if (kUseStringCompression && String::IsCompressed(count_)) { in operator()
115 const int32_t count_;
126 count_(count), src_string_(src_string), offset_(offset) { in SetStringCountAndValueVisitorFromString()
133 string->SetCount(count_); in operator()
134 const int32_t length = String::GetLengthFromCount(count_); in operator()
135 bool compressible = kUseStringCompression && String::IsCompressed(count_); in operator()
152 const int32_t count_;