Home
last modified time | relevance | path

Searched refs:cellCount (Results 1 – 2 of 2) sorted by relevance

/external/clang/www/analyzer/scripts/
Dexpandcollapse.js41 var cellCount=0, newGroupCreated = false;
59 var idxStr = "_" + groupCount + "_" + cellCount;
111 CellsInfo[groupCount][cellCount] = { 'height' : originalHeight,
113 cellCount += 1;
/external/pdfium/core/src/reflow/
Dlayoutprocessor_reflow.cpp227 int cellCount = tableColCount * rowCount; in ProcessTable() local
228 RF_TableCell** pVirtualTable = FX_Alloc(RF_TableCell*, cellCount); in ProcessTable()
229 FXSYS_memset32(pVirtualTable, 0, sizeof(RF_TableCell*) * cellCount); in ProcessTable()
241 while(pos < cellCount && pVirtualTable[pos] != NULL) { in ProcessTable()
257 if(pos + nn >= cellCount) { in ProcessTable()
265 for(pos = i * tableColCount; pVirtualTable[pos] != pCell && pos < cellCount; pos++) { in ProcessTable()