Searched refs:cstr_ (Results 1 – 2 of 2) sorted by relevance
2632 Value::CZString::CZString(ArrayIndex aindex) : cstr_(0), index_(aindex) {} in CZString()2635 : cstr_(str) { in CZString()2642 : cstr_(other.storage_.policy_ != noDuplication && other.cstr_ != 0 in CZString()2643 ? duplicateStringValue(other.cstr_, other.storage_.length_) in CZString()2644 : other.cstr_) { in CZString()2645 storage_.policy_ = (other.cstr_ in CZString()2654 : cstr_(other.cstr_), index_(other.index_) { in CZString()2655 other.cstr_ = nullptr; in CZString()2660 if (cstr_ && storage_.policy_ == duplicate) in ~CZString()2661 releaseStringValue(const_cast<char*>(cstr_)); in ~CZString()[all …]
621 char const* cstr_; // actually, a prefixed string, unless policy is noDup variable