Searched refs:other_list (Results 1 - 2 of 2) sorted by relevance

/external/v8/test/cctest/
H A Dtest-list.cc81 List<int, ZeroingAllocationPolicy> other_list(4);
83 // Add no elements to list since other_list is empty.
84 list.AddAll(other_list);
90 // Add three elements to other_list.
91 other_list.Add(0);
92 other_list.Add(1);
93 other_list.Add(2);
95 // Copy the three elements from other_list to list.
96 list.AddAll(other_list);
/external/chromium/base/
H A Dvalues.cc828 const ListValue* other_list = local
831 for (lhs_it = begin(), rhs_it = other_list->begin();
832 lhs_it != end() && rhs_it != other_list->end();
837 if (lhs_it != end() || rhs_it != other_list->end())

Completed in 42 milliseconds