HomeSort by relevance Sort by last modified time
    Searched refs:PushFront (Results 1 - 17 of 17) sorted by null

  /external/webrtc/src/system_wrappers/source/
list_no_stl.h 51 int PushFront(const void* ptr);
52 int PushFront(const unsigned int item_id);
69 void PushFront(ListNoStlItem* item);
list_stl.h 47 int PushFront(const void* ptr);
48 int PushFront(const unsigned int item_id);
list_unittest.cc 47 virtual int PushFront(const unsigned int item_id) = 0;
126 virtual int PushFront(const unsigned int item_id) {
127 return list_.PushFront(item_id);
195 virtual int PushFront(const unsigned int item_id) {
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));
list_no_stl.cc 95 int ListWrapper::PushFront(const unsigned int item_id)
103 int ListWrapper::PushFront(const void* ptr)
list_stl.cc 85 int ListWrapper::PushFront(const unsigned int item_id)
92 int ListWrapper::PushFront(const void* ptr)
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
mock_audio_vector.h 26 MOCK_METHOD1(PushFront,
28 MOCK_METHOD2(PushFront,
  /external/webrtc/src/system_wrappers/interface/
list_wrapper.h 51 int PushFront(const void* ptr);
56 int PushFront(const unsigned int item_id);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_vector.h 50 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.
audio_vector.cc 34 void AudioVector::PushFront(const AudioVector& prepend_this) {
42 void AudioVector::PushFront(const int16_t* prepend_this, size_t length) {
audio_vector_unittest.cc 112 // 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/
list.cc 89 // 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/
string-weight.h 144 void PushFront(L l) {
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/
string-weight.h 136 void PushFront(L l) {
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/
pump.py 449 def PushFront(a_list, elem):
560 PushFront(tokens, head)
  /external/protobuf/gtest/src/
gtest-internal-inl.h 283 void PushFront(const E& element) { Insert(element, 0); }
    [all...]
gtest.cc     [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc 578 // 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(3)
    [all...]

Completed in 656 milliseconds