Searched defs:nCount (Results 1 - 25 of 33) sorted by relevance

12

/external/pdfium/core/src/fpdftext/
H A Dunicodenormalization.cpp54 FX_STRSIZE nCount = 0; local
58 nCount += FX_Unicode_GetNormalization(wch, pDst + nCount);
60 nCount += FX_Unicode_GetNormalization(wch, pDst);
63 return nCount;
H A Dfpdf_text.cpp295 FX_STRSIZE nCount = FX_Unicode_GetNormalization(wChar, pDst); local
296 if (nCount < 1 ) {
300 pDst = new FX_WCHAR[nCount];
302 for (int nIndex = 0; nIndex < nCount; nIndex++) {
/external/pdfium/fpdfsdk/src/
H A Dfpdfeditimg.cpp21 DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_LoadJpegFile(FPDF_PAGE* pages, int nCount,FPDF_PAGEOBJECT image_object, FPDF_FILEACCESS* fileAccess) argument
30 for (int index=0;index<nCount;index++)
57 DLLEXPORT FPDF_BOOL STDCALL FPDFImageObj_SetBitmap(FPDF_PAGE* pages,int nCount,FPDF_PAGEOBJECT image_object,FPDF_BITMAP bitmap) argument
65 for (int index=0;index<nCount;index++)
H A Dfpdf_ext.cpp137 FX_DWORD nCount = pElement->CountChildren(); local
138 for(i=0; i<(int)nCount; i++)
185 int nCount = pArray->GetCount(); local
186 for(int i=0; i<nCount; i++)
H A Dfpdfppo.cpp347 FPDF_BOOL ParserPageRangeString(CFX_ByteString rangstring, CFX_WordArray* pageArray,int nCount) argument
376 if(lPageNum <= 0 || lPageNum > nCount)
394 // int nEndPageNum = (nEnd == 0)?nCount:atol(cbMidRange.Mid(nMid,nEnd));
397 if(nStartPageNum < 0 ||nStartPageNum >nEndPageNum|| nEndPageNum > nCount)
420 int nCount = pSrcDoc->GetPageCount(); local
423 if(ParserPageRangeString(pagerange,&pageArray,nCount) == FALSE)
428 for(int i=1; i<=nCount; i++)
H A Dfsdk_annothandler.cpp774 int nCount=this->m_pIteratorAnnotList.GetSize(); local
776 for(int i=0;i<nCount;i++){
790 int nCount=this->m_pIteratorAnnotList.GetSize(); local
792 for(int i=0;i<nCount;i++){
805 int nCount=m_pIteratorAnnotList.GetSize(); local
806 if(nCount<=0) index=-1;
813 index=( index <nCount-1) ? (index+1) :0;
816 index=( index <nCount-1) ? (index+1) :-1;
828 int nCount=m_pIteratorAnnotList.GetSize(); local
829 if(nCount<
919 int nCount =pAnnotList->GetSize(); local
[all...]
H A Dfsdk_baseannot.cpp964 int nCount = pEntry->GetCount(); local
965 if (nCount == 1)
973 else if (nCount == 3)
983 else if (nCount == 4)
H A Dfsdk_mgr.cpp345 int nCount = m_pDoc->GetPageCount(); local
346 for(int i=0; i<nCount; i++)
555 FX_BOOL CPDFSDK_Document::DeletePages(int nStart, int nCount) argument
557 if ( nStart < 0 || nStart >= GetPageCount() || nCount <= 0 )
563 for ( int i = nCount-1; i >= 0; i-- )
659 int nCount = m_pAnnotList->Count(); local
660 for(int i = 0 ; i<nCount; i++)
674 int nCount = m_pAnnotList->Count(); local
675 for(int i = 0 ; i<nCount; i++)
798 int nCount local
809 int nCount = m_fxAnnotArray.GetSize(); local
969 int nCount = m_pAnnotList->Count(); local
[all...]
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_Utils.cpp19 CFX_ByteString CPWL_Utils::GetAppStreamFromArray(const CPWL_PathData* pPathData, FX_INT32 nCount) argument
23 for (FX_INT32 i=0; i<nCount; i++)
48 void CPWL_Utils::GetPathDataFromArray(CFX_PathData& path, const CPWL_PathData* pPathData, FX_INT32 nCount) argument
50 path.SetPointCount(nCount);
52 for (FX_INT32 i=0; i<nCount; i++)
1434 const CPDF_Point* pPts, FX_INT32 nCount, const FX_COLORREF& color)
1437 path.SetPointCount(nCount);
1440 for (FX_INT32 i=1; i<nCount; i++)
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3basetreeadaptor.c164 int nCount; local
177 nCount = adaptor->getChildCount(adaptor, t);
179 if (nCount == 0)
190 for (i = 0; i<nCount; i++)
244 int nCount; local
256 nCount = adaptor->getChildCount(adaptor, t);
258 if (nCount == 0)
269 for (i=0; i<nCount; i++)
H A Dantlr3commontreenodestream.c477 ANTLR3_UINT32 nCount; local
493 nCount = t->getChildCount(t);
495 if (nilNode == ANTLR3_FALSE && nCount>0)
504 for (c = 0; c < nCount; c++)
512 if (nilNode == ANTLR3_FALSE && nCount > 0)
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_cache.cpp45 int nCount = m_ImageCaches.GetCount(); local
46 CACHEINFO* pCACHEINFO = (CACHEINFO*)FX_Alloc(FX_BYTE, (sizeof (CACHEINFO)) * nCount);
55 FXSYS_qsort(pCACHEINFO, nCount, sizeof (CACHEINFO), compare);
58 for (i = 0; i < nCount; i ++) {
61 m_nTimeCount = nCount;
64 while(nCount > 15) {
66 nCount--;
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_array.cpp94 FX_LPBYTE CFX_BasicArray::InsertSpaceAt(int nIndex, int nCount) argument
96 if (nIndex < 0 || nCount <= 0) {
100 if (!SetSize(nIndex + nCount, -1)) {
105 if (!SetSize(m_nSize + nCount, -1)) {
108 FXSYS_memmove32(m_pData + (nIndex + nCount)*m_nUnitSize, m_pData + nIndex * m_nUnitSize,
110 FXSYS_memset32(m_pData + nIndex * m_nUnitSize, 0, nCount * m_nUnitSize);
114 FX_BOOL CFX_BasicArray::RemoveAt(int nIndex, int nCount) argument
116 if (nIndex < 0 || nCount <= 0 || m_nSize < nIndex + nCount) {
119 int nMoveCount = m_nSize - (nIndex + nCount);
[all...]
H A Dextension.h45 FX_DWORD nCount = -- m_dwCount; local
46 if (!nCount) {
168 FX_DWORD nCount = -- m_dwCount; local
169 if (nCount) {
H A Dfx_basic_bstring.cpp386 FX_STRSIZE CFX_ByteString::Delete(FX_STRSIZE nIndex, FX_STRSIZE nCount) argument
395 if (nCount > 0 && nIndex < nOldLength) {
396 FX_STRSIZE mLength = nIndex + nCount;
405 m_pData->m_nDataLength = nOldLength - nCount;
452 CFX_ByteString CFX_ByteString::Mid(FX_STRSIZE nFirst, FX_STRSIZE nCount) const
457 if (nCount < 0) {
458 nCount = 0;
460 if (nFirst + nCount > m_pData->m_nDataLength) {
461 nCount = m_pData->m_nDataLength - nFirst;
464 nCount
871 FX_STRSIZE nCount = (FX_STRSIZE)(pstrSource - pstrDest); local
885 FX_STRSIZE nCount = 0; local
[all...]
H A Dfx_basic_wstring.cpp437 CFX_WideString CFX_WideString::Left(FX_STRSIZE nCount) const
442 if (nCount < 0) {
443 nCount = 0;
445 if (nCount >= m_pData->m_nDataLength) {
449 AllocCopy(dest, nCount, 0, 0);
456 CFX_WideString CFX_WideString::Mid(FX_STRSIZE nFirst, FX_STRSIZE nCount) const
464 if (nCount < 0) {
465 nCount = 0;
467 if (nFirst + nCount > m_pData->m_nDataLength) {
468 nCount
668 FX_STRSIZE nCount = 0; local
740 Delete(FX_STRSIZE nIndex, FX_STRSIZE nCount) argument
778 FX_STRSIZE nCount = (FX_STRSIZE)(pstrSource - pstrDest); local
[all...]
/external/pdfium/core/src/reflow/
H A Dreflowedtextpage.cpp123 void CRF_TextPage::GetRectArray(int start, int nCount, CFX_RectArray& rectArray) const argument
125 int indexlen = start + nCount;
283 int CRF_TextPage::CountRects(int start, int nCount) argument
286 GetRectArray(start, nCount, m_rectArray);
369 CFX_WideString CRF_TextPage::GetPageText(int start, int nCount ) const
371 if(nCount == -1) {
372 nCount = CountChars();
374 } else if(nCount < 1) {
379 int i, index = start + nCount;
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_GlobalData.cpp478 FX_DWORD nCount = 0; local
495 nCount++;
505 sFile.AppendBlock(&nCount, sizeof(FX_DWORD));
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_syscall.c89 int nCount; /* Fail after this many more calls */ member in struct:TestSyscallGlobal
162 gSyscall.nCount--;
163 if( gSyscall.nCount==0 || (gSyscall.nFail && gSyscall.bPersist) ){
504 int nCount = 0; local
513 if( Tcl_GetIntFromObj(interp, objv[2], &nCount)
521 gSyscall.nCount = nCount;
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_doc.cpp154 FX_DWORD nCount; local
161 nCount = ptData->m_nCount;
162 if (bRelease || nCount < 2) {
174 nCount = fontData->m_nCount;
175 if (bRelease || nCount < 2) {
187 nCount = imageData->m_nCount;
188 if (bRelease || nCount < 2) {
201 nCount = csData->m_nCount;
202 if (bRelease || nCount < 2) {
214 nCount
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_basic.cpp142 int nCount = pNames->GetCount() / 2; local
143 if (nIndex >= nCurIndex + nCount) {
144 nCurIndex += nCount;
183 int nCount = 0; local
189 nCount += CountNames(pKid, nLevel + 1);
191 return nCount;
H A Ddoc_form.cpp297 int nCount = m_pFieldTree->m_Root.CountFields(); local
298 for (int i = 0; i < nCount; i++) {
781 int nCount = m_pFieldTree->m_Root.CountFields(); local
782 for (int i = 0; i < nCount; i ++) {
795 int nCount = m_pFieldTree->m_Root.CountFields(); local
796 for (int i = 0; i < nCount; i++) {
1176 int nCount = m_pFieldTree->m_Root.CountFields(); local
1177 for (int i = 0; i < nCount; i++) {
1207 int nCount = m_pFieldTree->m_Root.CountFields(); local
1208 for (int i = 0; i < nCount;
1230 int nCount = m_pFieldTree->m_Root.CountFields(); local
1384 int nCount = m_pFieldTree->m_Root.CountFields(); local
1414 int nCount = m_pFieldTree->m_Root.CountFields(); local
1445 int nCount = m_pFieldTree->m_Root.CountFields(); local
[all...]
/external/svox/pico/lib/
H A Dpicosig2.c66 picoos_int32 nCount; local
293 for (nCount = 0; nCount < CEPST_BUFF_SIZE; nCount++) {
299 sig_inObj->int_vec41[nCount] = d32;
302 for (nCount = 0; nCount < PHASE_BUFF_SIZE; nCount++) {
308 sig_inObj->int_vec42[nCount] = d32;
332 picoos_int32 nCount; local
[all...]
H A Dpicosa.c798 picoos_uint32 nCount; local
812 for (nCount = 0; nCount < inLen; ) {
813 if (!picobase_get_next_utf8char(sInChar, inLen, &nCount, cstr)) {
819 if (nCount == pos) {
841 picoos_uint8 nCount; local
873 /* set start nCount to position of start of last utfchar */
876 /* nCount is (start position + 1) of utf8 char */
879 nCount = utfpos + 1;
886 while (nCount >
[all...]
/external/pdfium/core/include/fxcrt/
H A Dfx_basic.h388 FX_LPBYTE InsertSpaceAt(int nIndex, int nCount);
390 FX_BOOL RemoveAt(int nIndex, int nCount);
513 TYPE* InsertSpaceAt(int nIndex, int nCount) argument
515 return (TYPE*)CFX_BasicArray::InsertSpaceAt(nIndex, nCount);
534 FX_BOOL InsertAt(int nIndex, TYPE newElement, int nCount = 1)
536 if (!InsertSpaceAt(nIndex, nCount)) {
539 while (nCount--) {
545 FX_BOOL RemoveAt(int nIndex, int nCount = 1)
547 return CFX_BasicArray::RemoveAt(nIndex, nCount);
601 FX_INT32 Append(const CFX_ObjectArray& src, FX_INT32 nStart = 0, FX_INT32 nCount
1225 FX_DWORD nCount = m_DataList.GetSize(); local
1519 Append(FX_INT32 nStart, FX_INT32 nCount) argument
1611 Add(FX_INT32 nStart, FX_INT32 nCount) argument
[all...]

Completed in 2492 milliseconds

12