Searched defs:AddAll (Results 1 - 3 of 3) sorted by relevance
/external/v8/src/ | ||
H A D | bit-vector.h | 106 void AddAll() { memset(data_, -1, sizeof(uintptr_t) * data_length_); } function in class:v8::internal::BitVector |
H A D | list-inl.h | 28 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 |
H A D | zone.h | 191 AddAll(other, zone); 199 void AddAll(const List<T, ZoneAllocationPolicy>& other, Zone* zone) { function in class:v8::internal::final 200 List<T, ZoneAllocationPolicy>::AddAll(other, ZoneAllocationPolicy(zone)); 202 void AddAll(const Vector<T>& other, Zone* zone) { function in class:v8::internal::final 203 List<T, ZoneAllocationPolicy>::AddAll(other, ZoneAllocationPolicy(zone)); |
Completed in 228 milliseconds