Lines Matching refs:scoped_array
188 class scoped_array {
197 explicit scoped_array(C* p = NULL) : array_(p) { } in array_()
201 ~scoped_array() { in ~scoped_array()
238 void swap(scoped_array& p2) { in swap()
259 template <class C2> bool operator==(scoped_array<C2> const& p2) const;
260 template <class C2> bool operator!=(scoped_array<C2> const& p2) const;
263 scoped_array(const scoped_array&);
264 void operator=(const scoped_array&);
269 void swap(scoped_array<C>& p1, scoped_array<C>& p2) { in swap()
274 bool operator==(C* p1, const scoped_array<C>& p2) {
279 bool operator!=(C* p1, const scoped_array<C>& p2) {