HomeSort by relevance Sort by last modified time
    Searched full:insertat (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_vector.h 68 virtual void InsertAt(const int16_t* insert_this, size_t length,
71 // Like InsertAt, but inserts |length| zero elements at |position|.
76 // 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 58 // Same operation as InsertAt beginning.
59 InsertAt(prepend_this, length, 0);
95 void AudioVector::InsertAt(const int16_t* insert_this,
  /frameworks/base/libs/hwui/thread/
WorkQueue.h 126 auto insertAt = std::find_if(
129 needsWakeup = std::begin(mWorkQueue) == insertAt;
130 mWorkQueue.emplace(insertAt, std::move(item));
  /external/webrtc/webrtc/modules/audio_coding/neteq/mock/
mock_audio_vector.h 40 MOCK_METHOD3(InsertAt,
  /system/core/libutils/include/utils/
Vector.h 154 inline ssize_t insertAt(size_t index, size_t numItems = 1);
156 ssize_t insertAt(const TYPE& prototype_item, size_t index, size_t numItems = 1);
208 inline void push_back(const TYPE& item) { insertAt(item, size(), 1); }
209 inline void push_front(const TYPE& item) { insertAt(item, 0, 1); }
337 ssize_t Vector<TYPE>::insertAt(const TYPE& item, size_t index, size_t numItems) {
338 return VectorImpl::insertAt(&item, index, numItems);
357 ssize_t Vector<TYPE>::insertAt(size_t index, size_t numItems) {
358 return VectorImpl::insertAt(index, numItems);
VectorImpl.h 76 ssize_t insertAt(size_t where, size_t numItems = 1);
77 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
172 ssize_t insertAt(size_t where, size_t numItems = 1);
173 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
  /external/pdfium/core/fpdfapi/parser/
cpdf_array.h 56 CPDF_Object* InsertAt(size_t index, std::unique_ptr<CPDF_Object> pObj);
92 InsertAt(index, pdfium::MakeUnique<T>(std::forward<Args>(args)...)));
98 return static_cast<T*>(InsertAt(
cpdf_array_unittest.cpp 56 TEST(cpdf_array, InsertAt) {
125 arr->InsertAt(i, std::move(arr_elem));
  /external/llvm/lib/Target/Hexagon/
HexagonStoreWidening.cpp 491 MachineBasicBlock::iterator InsertAt = MBB->end();
507 InsertAt = I;
512 assert((InsertAt != MBB->end()) && "Cannot locate any store from the group");
516 // InsertAt points at the first instruction that will be removed. We need
520 if (InsertAt != MBB->begin())
521 --InsertAt;
529 ++InsertAt;
531 InsertAt = MBB->begin();
534 MBB->insert(InsertAt, I);
  /system/core/libutils/
misc.cpp 59 gSyspropList->insertAt(info, i);
VectorImpl.cpp 142 ssize_t VectorImpl::insertAt(size_t index, size_t numItems)
144 return insertAt(0, index, numItems);
147 ssize_t VectorImpl::insertAt(const void* item, size_t index, size_t numItems)
241 insertAt(item, size());
251 return insertAt(item, size());
361 result = insertAt(mCount, size - mCount);
627 index = VectorImpl::insertAt(item, order, 1);
  /frameworks/base/core/tests/coretests/src/android/text/
PackedIntVectorTest.java 61 p.insertAt(at, null);
63 p.insertAt(at, ins);
  /frameworks/native/opengl/libagl/
Tokenizer.cpp 94 mRanges.insertAt(new_run, i+1);
159 return mRanges.insertAt(run_t(token,1), index);
  /frameworks/base/core/java/android/app/
TaskStackBuilder.java 165 final int insertAt = mIntents.size();
174 final Intent parent = parentActivity == null && insertAt == 0
177 mIntents.add(insertAt, parent);
  /frameworks/base/core/java/android/text/
PackedObjectVector.java 66 insertAt(int row, E[] values)
DynamicLayout.java 468 mInts.insertAt(0, start);
471 mInts.insertAt(1, start);
473 mObjects.insertAt(0, dirs);
684 mInts.insertAt(startline + i, ints);
685 mObjects.insertAt(startline + i, objects);
    [all...]
  /frameworks/native/cmds/dumpsys/
dumpsys.cpp 289 args.insertAt(String16(PriorityDumper::PROTO_ARG), 0);
297 args.insertAt(String16("-a"), 0);
305 args.insertAt(String16(PriorityDumper::PRIORITY_ARG), 0);
306 args.insertAt(priorityType, 1);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
authif.h 182 DWORD (WINAPI *InsertAt) (struct _RADIUS_ATTRIBUTE_ARRAY *_This, DWORD dwIndex, const RADIUS_ATTRIBUTE *pAttr);
dxtmpl.h 106 void InsertAt(int nIndex,ARG_TYPE newElement,int nCount = 1);
108 void InsertAt(int nStartIndex,CDXArray *pNewArray);
251 void CDXArray<TYPE,ARG_TYPE>::InsertAt(int nIndex,ARG_TYPE newElement,int nCount) {
281 void CDXArray<TYPE,ARG_TYPE>::InsertAt(int nStartIndex,CDXArray *pNewArray) {
286 InsertAt(nStartIndex,pNewArray->GetAt(0),pNewArray->GetSize());
  /external/v8/src/zone/
zone.h 186 void InsertAt(int index, const T& element, Zone* zone) {
187 List<T, ZoneAllocationPolicy>::InsertAt(index, element,
  /prebuilts/go/darwin-x86/src/cmd/fix/
fix.go 625 insertAt := impIndex + 1
626 if insertAt == 0 {
627 insertAt = len(impDecl.Specs)
630 copy(impDecl.Specs[insertAt+1:], impDecl.Specs[insertAt:])
631 impDecl.Specs[insertAt] = newImport
632 if insertAt > 0 {
635 prev := impDecl.Specs[insertAt-1]
  /prebuilts/go/linux-x86/src/cmd/fix/
fix.go 625 insertAt := impIndex + 1
626 if insertAt == 0 {
627 insertAt = len(impDecl.Specs)
630 copy(impDecl.Specs[insertAt+1:], impDecl.Specs[insertAt:])
631 impDecl.Specs[insertAt] = newImport
632 if insertAt > 0 {
635 prev := impDecl.Specs[insertAt-1]
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLSharedGroup.cpp 207 // AKA m_shaders.push_back(), but that has an ambiguous call to insertAt()
208 // due to the default parameters. This is the desired insertAt() overload.
209 m_shaders.insertAt(shader, m_shaders.size(), 1);
  /external/javassist/src/main/javassist/
CtBehavior.java     [all...]

Completed in 877 milliseconds

1 2 3 4 5 6