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

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
H A Dmock_audio_vector.h26 MOCK_METHOD1(PushFront,
28 MOCK_METHOD2(PushFront,
/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.h47 int PushFront(const void* ptr);
48 int PushFront(const unsigned int item_id);
H A Dlist_no_stl.h51 int PushFront(const void* ptr);
52 int PushFront(const unsigned int item_id);
69 void PushFront(ListNoStlItem* item);
H A Dlist_unittest.cc47 virtual int PushFront(const unsigned int item_id) = 0;
126 virtual int PushFront(const unsigned int item_id) { function in class:ListWrapperStatic
127 return list_.PushFront(item_id);
195 virtual int PushFront(const unsigned int item_id) { function in class:ListWrapperDynamic
201 const int return_value = list_.PushFront(
366 // Reverse the reversed list using PushFront and Next.
369 list_to_un_reverse->PushFront(list_to_reverse->GetUnsignedItem(item));
H A Dlist_no_stl.cc95 int ListWrapper::PushFront(const unsigned int item_id) function in class:webrtc::ListWrapper
103 int ListWrapper::PushFront(const void* ptr) function in class:webrtc::ListWrapper
H A Dlist_stl.cc85 int ListWrapper::PushFront(const unsigned int item_id) function in class:webrtc::ListWrapper
92 int ListWrapper::PushFront(const void* ptr) function in class:webrtc::ListWrapper
/external/webrtc/src/system_wrappers/interface/
H A Dlist_wrapper.h51 int PushFront(const void* ptr);
56 int PushFront(const unsigned int item_id);
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daudio_vector.h50 virtual void PushFront(const AudioVector& prepend_this);
54 virtual void PushFront(const int16_t* prepend_this, size_t length);
56 // Same as PushFront but will append to the end of this object.
59 // Same as PushFront but will append to the end of this object.
H A Daudio_vector.cc34 void AudioVector::PushFront(const AudioVector& prepend_this) { function in class:webrtc::AudioVector
42 void AudioVector::PushFront(const int16_t* prepend_this, size_t length) { function in class:webrtc::AudioVector
H A Daudio_vector_unittest.cc112 // Test the PushFront method.
113 TEST_F(AudioVectorTest, PushFront) {
115 vec.PushFront(array_, array_length());
122 // Test the PushFront method with another AudioVector as input argument.
134 vec2.PushFront(vec1);
/external/webrtc/src/system_wrappers/test/list/
H A Dlist.cc89 // Test PushFront 2
90 FailTest(test_list.PushFront(element_array[1]) != 0);
91 // Test PushFront 1
92 FailTest(test_list.PushFront((void*)&element_array[0]) != 0);
/external/openfst/src/include/fst/
H A Dstring-weight.h144 void PushFront(L l) { function in class:fst::StringWeight
270 rw.PushFront(iter.Value());
428 sum.PushFront(iter1.Value());
504 div.PushFront(iter.Value());
534 div.PushFront(iter.Value());
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dstring-weight.h136 void PushFront(L l) { function in class:fst::StringWeight
262 rw.PushFront(iter.Value());
410 sum.PushFront(iter1.Value());
474 div.PushFront(iter.Value());
499 div.PushFront(iter.Value());
/external/chromium_org/testing/gtest/scripts/
H A Dpump.py449 def PushFront(a_list, elem): function
560 PushFront(tokens, head)
/external/protobuf/gtest/src/
H A Dgtest-internal-inl.h283 void PushFront(const E& element) { Insert(element, 0); } function in class:testing::internal::Vector
H A Dgtest.cc3516 impl_->environments_in_reverse_order()->PushFront(env);
3717 impl_->gtest_trace_stack()->PushFront(trace);
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc578 // Tests Vector::PushFront().
579 TEST(VectorTest, PushFront) {
583 // Calls PushFront() on an empty Vector.
584 a.PushFront(1);
588 // Calls PushFront() on a singleton Vector.
589 a.PushFront(2);
594 // Calls PushFront() on a Vector with more than one elements.
595 a.PushFront(3);
615 a.PushFront(2);
616 a.PushFront(
[all...]

Completed in 1657 milliseconds