Searched defs:colWidth (Results 1 - 3 of 3) sorted by relevance

/external/webkit/WebCore/rendering/
H A DRenderFrameSet.cpp550 int colWidth = -1; local
554 colWidth = l.value();
556 if (colWidth && rowHeight) {
H A DRenderBlock.cpp3627 int colWidth = max(1, static_cast<int>(style()->columnWidth())); local
3641 if (colWidth < availWidth) {
3642 desiredColumnCount = (availWidth + colGap) / (colWidth + colGap);
3649 if (colCount * colWidth + (colCount - 1) * colGap <= availWidth) {
3651 desiredColumnWidth = colWidth;
3652 } else if (colWidth < availWidth) {
3653 desiredColumnCount = (availWidth + colGap) / (colWidth + colGap);
/external/sqlite/dist/
H A Dshell.c1252 int colWidth[100]; member in struct:previous_mode_data
1270 int colWidth[100]; /* Requested width of each column when in column mode*/ member in struct:callback_data
1539 if( i<ArraySize(p->colWidth) ){
1540 w = p->colWidth[i];
2361 data.colWidth[0] = 3;
2362 data.colWidth[1] = 15;
2363 data.colWidth[2] = 58;
2441 memcpy(p->explainPrev.colWidth,p->colWidth,sizeof(p->colWidth));
[all...]

Completed in 173 milliseconds