Lines Matching refs:str_
125 // If str_ does not point to a heap string yet, this function makes it do
131 memcpy(s, str_, size_);
132 str_ = s;
140 delete[] str_;
144 str_ = nullptr;
150 if (str_ == nullptr) {
151 str_ = str;
152 } else if (on_heap_ || str_ + size_ != str) {
156 memcpy(s, str_, size_);
160 delete[] str_;
164 str_ = s;
172 return OneByteString(env->isolate(), str_, size_);
180 while (size_ > 0 && IsOWS(str_[size_ - 1])) {
187 const char* str_;