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

/external/v8/src/
H A Dobjects.cc8217 Handle<FixedArray> old_array = local
8221 Factory::NewFixedArray(old_array->length() - 1);
8223 for (int i = 0; i < old_array->length(); i++) {
8224 if (old_array->get(i) == *break_point_object) {
8228 new_array->set(i - found_count, old_array->get(i));
8255 Handle<FixedArray> old_array = local
8259 Factory::NewFixedArray(old_array->length() + 1);
8260 for (int i = 0; i < old_array->length(); i++) {
8262 if (old_array->get(i) == *break_point_object) return;
8263 new_array->set(i, old_array
[all...]

Completed in 39 milliseconds