Searched defs:AddAll (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dbit-vector.h106 void AddAll() { memset(data_, -1, sizeof(uintptr_t) * data_length_); } function in class:v8::internal::BitVector
H A Dlist-inl.h28 void List<T, P>::AddAll(const List<T, P>& other, P alloc) { function in class:v8::internal::List
29 AddAll(other.ToVector(), alloc);
34 void List<T, P>::AddAll(const Vector<T>& other, P alloc) { function in class:v8::internal::List
/external/v8/src/zone/
H A Dzone.h176 AddAll(other, zone);
184 void AddAll(const List<T, ZoneAllocationPolicy>& other, Zone* zone) { function in class:v8::internal::final
185 List<T, ZoneAllocationPolicy>::AddAll(other, ZoneAllocationPolicy(zone));
187 void AddAll(const Vector<T>& other, Zone* zone) { function in class:v8::internal::final
188 List<T, ZoneAllocationPolicy>::AddAll(other, ZoneAllocationPolicy(zone));

Completed in 173 milliseconds