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

  /external/chromium_org/base/memory/
scoped_vector.h 15 // ScopedVector wraps a vector deleting the elements from its
18 class ScopedVector {
19 MOVE_ONLY_TYPE_FOR_CPP_03(ScopedVector, RValue)
36 ScopedVector() {}
37 ~ScopedVector() { clear(); }
38 ScopedVector(RValue other) { swap(*other.object); }
40 ScopedVector& operator=(RValue rhs) {
77 void swap(ScopedVector<T>& other) { v_.swap(other.v_); }
102 // Lets the ScopedVector take ownership of |x|.
107 // Lets the ScopedVector take ownership of elements in [first,last)
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
scoped_vector.h 25 // ScopedVector wraps a vector deleting the elements from its
28 class ScopedVector {
29 WEBRTC_MOVE_ONLY_TYPE_FOR_CPP_03(ScopedVector, RValue)
46 ScopedVector() {}
47 ~ScopedVector() { clear(); }
48 ScopedVector(RValue other) { swap(*other.object); }
50 ScopedVector& operator=(RValue rhs) {
87 void swap(ScopedVector<T>& other) { v_.swap(other.v_); }
112 // Lets the ScopedVector take ownership of |x|.
117 // Lets the ScopedVector take ownership of elements in [first,last)
    [all...]

Completed in 221 milliseconds