HomeSort by relevance Sort by last modified time
    Searched defs:ScopedVector (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/memory/
scoped_vector.h 17 // ScopedVector wraps a vector deleting the elements from its
23 class ScopedVector {
39 ScopedVector() {}
40 ~ScopedVector() { clear(); }
41 ScopedVector(ScopedVector&& other) { swap(other); }
43 ScopedVector& operator=(ScopedVector&& rhs) {
81 void swap(ScopedVector<T>& other) { v_.swap(other.v_); }
106 // Lets the ScopedVector take ownership of |x|
    [all...]
  /external/webrtc/webrtc/system_wrappers/include/
scoped_vector.h 24 // ScopedVector wraps a vector deleting the elements from its
27 class ScopedVector {
43 ScopedVector() {}
44 ~ScopedVector() { clear(); }
47 ScopedVector(ScopedVector&& other) { *this = std::move(other); }
48 ScopedVector& operator=(ScopedVector&& other) {
56 ScopedVector(const ScopedVector& other) = delete
    [all...]

Completed in 178 milliseconds