Searched defs:nStartPos (Results 1 - 2 of 2) sorted by relevance

/external/pdfium/fpdfsdk/include/
H A Dfsdk_mgr.h549 void QuickSort(FX_UINT nStartPos, FX_UINT nStopPos, FX_BOOL bAscend, LP_COMPARE pCompare) argument
551 if (nStartPos >= nStopPos) return;
553 if ((nStopPos - nStartPos) == 1)
555 TYPE Value1 = this->GetAt(nStartPos);
561 this->SetAt(nStartPos, Value2);
567 FX_UINT m = (nStartPos + nStopPos) / 2;
568 FX_UINT i = nStartPos;
608 if (nStartPos < m) QuickSort(nStartPos, m, bAscend, pCompare);
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_int.cpp2308 int nStartPos = 0; local
2309 nStartPos = m_findNextStart;
2315 FX_WCHAR strInsert = m_strText.GetAt(nStartPos);
2317 nResultPos = nStartPos + 1;
2327 nResultPos = m_strText.Find(csWord, nStartPos);
2338 int PreResEndPos = nStartPos;
2342 if(nStartPos == nResultPos && !(_IsIgnoreSpaceCharacter(lastChar) || _IsIgnoreSpaceCharacter(curChar))) {
2366 nStartPos = endIndex + 1;
2370 nStartPos = m_resStart + m_csFindWhatArray[1].GetLength();
2372 nStartPos
[all...]

Completed in 108 milliseconds