Home
last modified time | relevance | path

Searched refs:pIter (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/xfa/src/fee/src/fx_wordbreak/
Dfx_wordbreak_impl.cpp54 CFX_CharIter* pIter = new CFX_CharIter(m_wsText); in Clone() local
55 pIter->m_nIndex = m_nIndex; in Clone()
56 return pIter; in Clone()
72 void CFX_WordBreak::Attach(IFX_CharIter* pIter) { in Attach() argument
73 FXSYS_assert(pIter); in Attach()
74 m_pCurIter = pIter; in Attach()
80 IFX_CharIter* pIter = bPrev ? m_pPreIter->Clone() : m_pCurIter->Clone(); in Next() local
81 if (pIter->IsEOF(!bPrev)) { in Next()
84 pIter->Next(bPrev); in Next()
85 if (!FindNextBreakPos(pIter, bPrev, TRUE)) { in Next()
[all …]
Dfx_wordbreak_impl.h49 virtual void Attach(IFX_CharIter* pIter);
60 FX_BOOL FindNextBreakPos(IFX_CharIter* pIter,
/external/pdfium/xfa/src/fee/src/fee/
Dfde_txtedtparag.cpp39 IFX_CharIter* pIter = in LoadParag() local
41 pIter->SetAt(m_nCharStart); in LoadParag()
50 FX_WCHAR wAppend = pIter->GetChar(); in LoadParag()
53 if (pIter->GetAt() + 1 == nEndIndex && in LoadParag()
67 if ((pIter->GetAt() + 1 == nEndIndex) && in LoadParag()
70 pIter->Next(TRUE); in LoadParag()
72 } while (pIter->Next(FALSE) && (pIter->GetAt() < nEndIndex)); in LoadParag()
73 pIter->Release(); in LoadParag()
104 IFX_CharIter* pIter = new CFDE_TxtEdtBufIter((CFDE_TxtEdtBuf*)pTxtBuf); in CalcLines() local
108 pIter->SetAt(m_nCharStart); in CalcLines()
[all …]
Dfde_txtedtengine.cpp851 CFDE_TxtEdtBufIter* pIter = in SetFormatBlock() local
853 pIter->SetAt(0); in SetFormatBlock()
855 wc = pIter->GetChar(); in SetFormatBlock()
866 nBlockPos = pIter->GetAt(); in SetFormatBlock()
871 } while (pIter->Next()); in SetFormatBlock()
872 pIter->Release(); in SetFormatBlock()
1410 IFX_CharIter* pIter = new CFDE_TxtEdtBufIter((CFDE_TxtEdtBuf*)m_pTxtBuf); in RebuildParagraphs() local
1411 pIter->SetAt(0); in RebuildParagraphs()
1413 wChar = pIter->GetChar(); in RebuildParagraphs()
1414 nIndex = pIter->GetAt(); in RebuildParagraphs()
[all …]
Dfde_txtedtpage.cpp369 IFX_WordBreak* pIter = FX_WordBreak_Create(); in SelectWord() local
370 pIter->Attach(new CFDE_TxtEdtBufIter((CFDE_TxtEdtBuf*)pBuf)); in SelectWord()
371 pIter->SetAt(nIndex); in SelectWord()
372 nCount = pIter->GetWordLength(); in SelectWord()
373 int32_t nRet = pIter->GetWordPos(); in SelectWord()
374 pIter->Release(); in SelectWord()
440 IFX_CharIter* pIter = m_pIter->Clone(); in LoadPage() local
441 pIter->SetAt(nPageStart); in LoadPage()
448 FX_WCHAR wAppend = pIter->GetChar(); in LoadPage()
451 if (pIter->GetAt() == nPageEnd && dwBreakStatus < FX_TXTBREAK_LineBreak) { in LoadPage()
[all …]
Dfde_txtedtbuf.cpp137 CFDE_TxtEdtBufIter* pIter = new CFDE_TxtEdtBufIter(m_pBuf); in Clone() local
138 pIter->m_nCurChunk = m_nCurChunk; in Clone()
139 pIter->m_nCurIndex = m_nCurIndex; in Clone()
140 pIter->m_nIndex = m_nIndex; in Clone()
141 pIter->m_Alias = m_Alias; in Clone()
142 return pIter; in Clone()
/external/sqlite/dist/
Dsqlite3.c52023 WalIterator *pIter = 0; /* Wal iterator context */
52038 rc = walIteratorInit(pWal, &pIter);
52042 assert( pIter );
52104 while( rc==SQLITE_OK && 0==walIteratorNext(pIter, &iDbpage, &iFrame) ){
52184 walIteratorFree(pIter);
54770 BtLock *pIter;
54797 for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){
54807 assert( pIter->eLock==READ_LOCK || pIter->eLock==WRITE_LOCK );
54808 assert( eLock==READ_LOCK || pIter->pBtree==p || pIter->eLock==READ_LOCK);
54809 if( pIter->pBtree!=p && pIter->iTable==iTab && pIter->eLock!=eLock ){
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c52005 WalIterator *pIter = 0; /* Wal iterator context */
52020 rc = walIteratorInit(pWal, &pIter);
52024 assert( pIter );
52086 while( rc==SQLITE_OK && 0==walIteratorNext(pIter, &iDbpage, &iFrame) ){
52166 walIteratorFree(pIter);
54752 BtLock *pIter;
54779 for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){
54789 assert( pIter->eLock==READ_LOCK || pIter->eLock==WRITE_LOCK );
54790 assert( eLock==READ_LOCK || pIter->pBtree==p || pIter->eLock==READ_LOCK);
54791 if( pIter->pBtree!=p && pIter->iTable==iTab && pIter->eLock!=eLock ){
[all …]
/external/pdfium/xfa/src/fee/include/
Dfx_wordbreak.h15 virtual void Attach(IFX_CharIter* pIter) = 0;