/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/ |
mock_audio_vector.h | 40 MOCK_METHOD3(InsertAt,
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
audio_vector.h | 76 virtual void InsertAt(const int16_t* insert_this, size_t length, 79 // Like InsertAt, but inserts |length| zero elements at |position|. 84 // is the same as for InsertAt(). If |length| and |position| are selected
|
audio_vector_unittest.cc | 179 // Test the InsertAt method with an insert position in the middle of the vector. 180 TEST_F(AudioVectorTest, InsertAt) { 190 vec.InsertAt(new_array, kNewLength, insert_position); 210 // vector. Use the InsertAt method as reference. 220 vec_ref.InsertAt(new_array, kNewLength, insert_position); 228 // Test the InsertAt method with an insert position at the start of the vector. 239 vec.InsertAt(new_array, kNewLength, insert_position); 254 // Test the InsertAt method with an insert position at the end of the vector. 265 vec.InsertAt(new_array, kNewLength, insert_position); 279 // Test the InsertAt method with an insert position beyond the end of th [all...] |
audio_vector.cc | 43 // Same operation as InsertAt beginning. 44 InsertAt(prepend_this, length, 0); 80 void AudioVector::InsertAt(const int16_t* insert_this,
|
/external/chromium_org/v8/src/ |
zone.h | 207 INLINE(void InsertAt(int index, const T& element, Zone* zone)) { 208 List<T, ZoneAllocationPolicy>::InsertAt(index, element,
|
list.h | 98 void InsertAt(int index, const T& element,
|
list-inl.h | 92 void List<T, P>::InsertAt(int index, const T& elm, P alloc) {
|
lithium-allocator.cc | [all...] |
hydrogen.cc | 371 dominated_blocks_.InsertAt(index, block, zone()); [all...] |
/external/chromium_org/third_party/android_crazy_linker/src/src/ |
crazy_linker_util.h | 156 void PushBack(T item) { InsertAt(static_cast<int>(count_), item); } 176 void InsertAt(int index, T item); 206 void Vector<T>::InsertAt(int index, T item) {
|
crazy_linker_util_unittest.cpp | 136 TEST(Vector, InsertAt) { 144 v.InsertAt(k, -1000);
|
/art/compiler/utils/ |
growable_array.h | 123 void InsertAt(size_t index, T elem) {
|
/external/chromium_org/win8/metro_driver/ |
file_picker.cc | 64 STDMETHOD(InsertAt)(unsigned index, HSTRING item) {
|
file_picker_ash.cc | 61 STDMETHOD(InsertAt)(unsigned index, HSTRING item) {
|
/art/compiler/optimizing/ |
register_allocator.cc | 546 unhandled_.InsertAt(insert_at, interval); [all...] |
/external/chromium_org/v8/src/compiler/ |
register-allocator.cc | [all...] |