audio_vector_unittest.cc | 189 int insert_position = 5; local 190 vec.InsertAt(new_array, kNewLength, insert_position); 192 // {0, 1, ..., |insert_position| - 1, 100, 101, ..., 100 + kNewLength - 1, 193 // |insert_position|, |insert_position| + 1, ..., kLength - 1}. 195 for (int i = 0; i < insert_position; ++i) { 203 for (size_t i = insert_position; i < array_length(); ++i) { 217 int insert_position = 5; local 218 vec.InsertZerosAt(kNewLength, insert_position); 220 vec_ref.InsertAt(new_array, kNewLength, insert_position); 238 int insert_position = 0; local 264 int insert_position = array_length(); local 293 int insert_position = array_length() + 10; \/\/ Too large. local 319 size_t insert_position = 2; local 349 int insert_position = array_length() - 2; local [all...] |