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

  /external/v8/src/
list-inl.h 28 void List<T, P>::AddAll(const List<T, P>& other, P alloc) {
29 AddAll(other.ToVector(), alloc);
34 void List<T, P>::AddAll(const Vector<T>& other, P alloc) {
bit-vector.h 106 void AddAll() { memset(data_, -1, sizeof(uintptr_t) * data_length_); }
zone.h 187 AddAll(other, zone);
195 void AddAll(const List<T, ZoneAllocationPolicy>& other, Zone* zone) {
196 List<T, ZoneAllocationPolicy>::AddAll(other, ZoneAllocationPolicy(zone));
198 void AddAll(const Vector<T>& other, Zone* zone) {
199 List<T, ZoneAllocationPolicy>::AddAll(other, ZoneAllocationPolicy(zone));

Completed in 61 milliseconds