Searched refs:columnCount (Results 1 - 25 of 36) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityARIAGrid.cpp57 bool AccessibilityARIAGrid::addTableCellChild(AccessibilityObject* child, HashSet<AccessibilityObject*>& appendedRows, unsigned& columnCount) argument
68 if (rowCellCount > columnCount)
69 columnCount = rowCellCount;
85 void AccessibilityARIAGrid::addRowDescendant(AccessibilityObject* rowChild, HashSet<AccessibilityObject*>& appendedRows, unsigned& columnCount) argument
96 addRowDescendant(children[i].get(), appendedRows, columnCount);
98 addTableCellChild(rowChild, appendedRows, columnCount);
118 unsigned columnCount = 0; local
120 addRowDescendant(child.get(), appendedRows, columnCount);
123 for (unsigned i = 0; i < columnCount; ++i) {
H A DAccessibilityARIAGrid.h58 void addRowDescendant(AccessibilityObject*, HashSet<AccessibilityObject*>& appendedRows, unsigned& columnCount);
59 bool addTableCellChild(AccessibilityObject*, HashSet<AccessibilityObject*>& appendedRows, unsigned& columnCount);
H A DAccessibilityARIAGridCell.cpp85 unsigned columnCount = static_cast<AccessibilityTable*>(parent)->columnCount(); local
86 if (!columnCount)
93 rowRange.first = k / columnCount;
H A DAccessibilityTable.h60 unsigned columnCount();
H A DAccessibilityTable.cpp478 unsigned AccessibilityTable::columnCount() function in class:WebCore::AccessibilityTable
506 if (column >= columnCount() || row >= rowCount())
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DSQLStatementSync.cpp94 int columnCount = statement.columnCount(); local
97 for (int i = 0; i < columnCount; i++)
101 for (int i = 0; i < columnCount; i++)
H A DSQLStatementBackend.cpp165 int columnCount = statement.columnCount(); local
168 for (int i = 0; i < columnCount; i++)
172 for (int i = 0; i < columnCount; i++)
/macosx-10.9.5/WebCore-7537.78.1/platform/sql/
H A DSQLiteStatement.cpp273 int SQLiteStatement::columnCount() function in class:WebCore::SQLiteStatement
287 if (columnCount() <= col)
310 if (columnCount() <= col)
321 if (columnCount() <= col)
351 if (columnCount() <= col)
362 if (columnCount() <= col)
373 if (columnCount() <= col)
384 if (columnCount() <= col)
396 if (columnCount() <= col)
420 if (columnCount() <
[all...]
H A DSQLiteStatement.h74 int columnCount();
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderMultiColumnSet.cpp105 if (columnCount() <= computedColumnCount())
140 setComputedColumnWidthAndCount(parentBlock->columnWidth(), parentBlock->columnCount()); // FIXME: This will eventually vary if we are contained inside regions.
147 unsigned colCount = columnCount();
206 unsigned RenderMultiColumnSet::columnCount() const function in class:WebCore::RenderMultiColumnSet
250 return columnCount() - 1;
351 unsigned colCount = columnCount();
413 unsigned colCount = columnCount();
457 unsigned colCount = columnCount();
H A DRenderMultiColumnBlock.h43 unsigned columnCount() const { return m_columnCount; } function in class:WebCore::RenderMultiColumnBlock
H A DColumnInfo.h66 unsigned columnCount() const { return m_columnCount; } function in class:WebCore::ColumnInfo
H A DRenderMultiColumnSet.h129 unsigned columnCount() const;
H A DRenderMultiColumnBlock.cpp67 int colCount = max<int>(1, style()->columnCount());
H A DRenderTable.cpp865 unsigned columnCount = 0; local
869 unsigned startCol = columnCount;
871 unsigned endCol = columnCount + span - 1;
872 columnCount += span;
873 if (columnCount > col) {
H A DRenderBlock.cpp1770 if (columnCount(colInfo)) {
1771 LayoutRect lastRect = columnRectAt(colInfo, columnCount(colInfo) - 1);
3010 unsigned colCount = columnCount(colInfo);
3118 unsigned colCount = columnCount(colInfo);
5155 int colCount = m_colInfo->columnCount();
5506 int colCount = max<int>(1, style()->columnCount());
5606 unsigned RenderBlock::columnCount(ColumnInfo* colInfo) const function in class:WebCore::RenderBlock
5610 return colInfo->columnCount();
5683 if (columnCount(colInfo)) {
5699 if (!columnCount(colInf
[all...]
H A DRenderView.cpp982 LayoutRect backgroundRect(0, 0, columnInfo->desiredColumnWidth(), columnInfo->columnHeight() * columnInfo->columnCount());
/macosx-10.9.5/WebCore-7537.78.1/accessibility/atk/
H A DWebKitAccessibleInterfaceTable.cpp140 return static_cast<AccessibilityTable*>(accTable)->columnCount();
180 unsigned columnCount = allColumnHeaders.size(); local
181 for (unsigned k = 0; k < columnCount; ++k) {
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Ddtfmtsym.h454 * @param columnCount Output param to receive number of columns.
458 const UnicodeString** getZoneStrings(int32_t& rowCount, int32_t& columnCount) const;
469 * @param columnCount The number of columns (count of second index).
472 void setZoneStrings(const UnicodeString* const* strings, int32_t rowCount, int32_t columnCount);
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dtsdtfmsy.cpp368 int32_t rowCount = 0, columnCount = 0; local
369 const UnicodeString **strings = en.getZoneStrings(rowCount, columnCount);
370 fr.setZoneStrings(strings, rowCount, columnCount);
371 const UnicodeString **strings1 = fr.getZoneStrings(rowCount, columnCount);
373 for(int32_t j = 0; j < columnCount; j++) {
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeItem.c235 STATIC_ALLOC(spans, struct span, tree->columnCount);
269 if (columnIndex == tree->columnCount)
300 for (i = 0; i < tree->columnCount; i++) {
307 STATIC_FREE(spans, struct span, tree->columnCount);
3814 item->spans = (int *) ckalloc(sizeof(int) * tree->columnCount);
3815 item->spanAlloc = tree->columnCount;
3816 } else if (item->spanAlloc < tree->columnCount) {
3818 sizeof(int) * tree->columnCount);
3819 item->spanAlloc = tree->columnCount;
4035 int spanCount, spanIndex, columnCount local
5794 int columnCount; /* max number of columns to compare */ member in struct:SortData
[all...]
H A DtkTreeColumn.c2370 tree->columnCount++;
2409 tree->columnCount--;
2410 if (tree->columnCount == 0)
4166 int count = tree->columnCount;
5706 tree->columnCount = 0;
5745 tree->columnCount = 0;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/dbd/
H A Dapr_dbd_sqlite3.c59 int columnCount; member in struct:apr_dbd_row_t
125 row->columnCount = column_count;
246 if ((n < 0) || (n >= row->columnCount)) {
/macosx-10.9.5/apr-30/apr-util/apr-util/dbd/
H A Dapr_dbd_sqlite3.c59 int columnCount; member in struct:apr_dbd_row_t
126 row->columnCount = column_count;
248 if ((n < 0) || (n >= row->columnCount)) {
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Ddtfmtsym.cpp1065 DateFormatSymbols::getZoneStrings(int32_t& rowCount, int32_t& columnCount) const
1079 columnCount = fZoneStringsColCount;
1171 DateFormatSymbols::setZoneStrings(const UnicodeString* const *strings, int32_t rowCount, int32_t columnCount) argument
1179 fZoneStringsColCount = columnCount;

Completed in 388 milliseconds

12