HomeSort by relevance Sort by last modified time
    Searched refs:InsertAt (Results 1 - 25 of 38) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_coding/neteq/mock/
mock_audio_vector.h 40 MOCK_METHOD3(InsertAt,
  /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);
HexagonCommonGEP.cpp     [all...]
  /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,
  /external/v8/src/
zone.h 201 void InsertAt(int index, const T& element, Zone* zone) {
202 List<T, ZoneAllocationPolicy>::InsertAt(index, element,
list.h 102 void InsertAt(int index, const T& element,
list-inl.h 95 void List<T, P>::InsertAt(int index, const T& elm, P alloc) {
  /external/pdfium/fpdfsdk/src/
fpdfsave.cpp 189 pArray->InsertAt(iLast, new CPDF_String("datasets", FALSE));
190 pArray->InsertAt(iLast + 1, pData, pPDFDocument);
216 pArray->InsertAt(iLast, new CPDF_String("form", FALSE));
217 pArray->InsertAt(iLast + 1, pData, pPDFDocument);
fpdf_transformpage.cpp 137 pContentArray->InsertAt(0, pRef);
145 pContentArray->InsertAt(0, pRef);
306 pContentArray->InsertAt(0, pRef);
313 pContentArray->InsertAt(0, pRef);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
authif.h 92 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/pdfium/core/include/fxcrt/
fx_basic.h 303 FX_BOOL InsertAt(int nStartIndex, const CFX_BasicArray* pNewArray);
409 FX_BOOL InsertAt(int nIndex, TYPE newElement, int nCount = 1) {
423 FX_BOOL InsertAt(int nStartIndex, const CFX_BasicArray* pNewArray) {
424 return CFX_BasicArray::InsertAt(nStartIndex, pNewArray);
1167 m_DataLists.InsertAt(iFind, list);
  /external/pdfium/xfa/src/fee/src/fee/
fde_txtedtbuf.cpp 265 m_Chunks.InsertAt(cp.nChunkIndex, lpNewChunk);
292 m_Chunks.InsertAt(cp.nChunkIndex, lpChunk);
  /external/pdfium/core/src/fxcrt/
fx_basic_array.cpp 116 FX_BOOL CFX_BasicArray::InsertAt(int nStartIndex,
  /external/pdfium/core/src/fpdfdoc/
doc_annot.cpp 31 pAnnots->InsertAt(i, pAction);
doc_formfield.cpp 761 pOpt->InsertAt(index, pString);
1022 pArray->InsertAt(i, pNum);
  /external/v8/src/ast/
scopes.h 151 decls_.InsertAt(0, declaration, zone());
    [all...]
  /external/v8/src/parsing/
rewriter.cc 236 node->finally_block()->statements()->InsertAt(
parser.cc     [all...]
  /external/pdfium/core/src/fpdftext/
fpdf_text.cpp 186 m_BaseLines.InsertAt(i, pBaseLine);
537 m_TextList.InsertAt(i, pText);
  /external/pdfium/fpdfsdk/include/
fsdk_mgr.h 711 this->InsertAt(m + 1, temp);
727 this->InsertAt(m, temp);
  /external/pdfium/core/include/fpdfapi/
fpdf_objects.h 300 void InsertAt(FX_DWORD index,
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_objects.cpp 531 void CPDF_Array::InsertAt(FX_DWORD index,
538 m_Objects.InsertAt(index, pObj);
    [all...]

Completed in 576 milliseconds

1 2