Lines Matching full:other
12 * in the documentation and/or other materials provided with the
52 // It is also possible to assign from other types of random access
76 WebVector(const WebVector<T>& other)
78 initializeFrom(other.m_ptr, other.m_size);
82 WebVector(const C& other)
84 initializeFrom(other.size() ? &other[0] : 0, other.size());
87 WebVector& operator=(const WebVector& other)
89 if (this != &other)
90 assign(other);
95 WebVector<T>& operator=(const C& other)
97 if (this != reinterpret_cast<const WebVector<T>*>(&other))
98 assign(other);
103 void assign(const C& other)
105 assign(other.size() ? &other[0] : 0, other.size());
124 void swap(WebVector<T>& other)
126 std::swap(m_ptr, other.m_ptr);
127 std::swap(m_size, other.m_size);