Searched refs:array_ (Results 1 – 1 of 1) sorted by relevance
155 explicit scoped_array(C* p = NULL) : array_(p) { } in array_() function161 delete[] array_; in ~scoped_array()168 if (p != array_) {170 delete[] array_;171 array_ = p;179 assert(array_ != NULL);180 return array_[i];186 return array_; in get()192 bool operator==(C* p) const { return array_ == p; }193 bool operator!=(C* p) const { return array_ != p; }[all …]