Searched refs:columnIndex (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/accessibility/
H A DAccessibilityTableColumn.h53 void setColumnIndex(int columnIndex) { m_columnIndex = columnIndex; } argument
54 int columnIndex() const { return m_columnIndex; } function in class:WebCore::AccessibilityTableColumn
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDOMStorageContentView.js192 var columnIndex = this._dataGrid.orderedColumns.indexOf(columnIdentifier);
193 var mayMoveToNextRow = moveDirection === "forward" && columnIndex == this._dataGrid.orderedColumns.length - 1;
194 var mayMoveToPreviousRow = moveDirection === "backward" && columnIndex == 0;
H A DDataGrid.js249 _startEditingNodeAtColumnIndex: function(node, columnIndex)
257 var element = this._editingNode._element.children[columnIndex];
293 var columnIndex = this.orderedColumns.indexOf(columnIdentifier);
303 if (columnIndex < this.orderedColumns.length - 1)
304 return {shouldSort: false, editingNode: currentEditingNode, columnIndex: columnIndex + 1};
308 return {shouldSort: true, editingNode: nextDataGridNode || currentEditingNode, columnIndex: 0};
312 if (columnIndex > 0)
313 return {shouldSort: false, editingNode: currentEditingNode, columnIndex: columnIndex
[all...]
/macosx-10.10/tcl-105/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeItem.c224 int columnIndex = 0, itemColumnIndex = 0, span = 1; local
238 spans[columnIndex].visible = TreeColumn_Visible(treeColumn);
240 if (spans[columnIndex].visible)
244 itemColumnIndex = columnIndex;
246 spans[columnIndex].itemColumn = column;
247 spans[columnIndex].itemColumnIndex = itemColumnIndex;
248 spans[columnIndex].spanWidth = 0;
249 spans[columnIndex].fixedWidth = TreeColumn_FixedWidth(treeColumn);
250 ++columnIndex;
257 columnIndex
801 int columnIndex = 0, state, cstate; local
3155 Item_CreateColumn( TreeCtrl *tree, TreeItem item, int columnIndex, int *isNew ) argument
3205 TreeItem_MoveColumn( TreeCtrl *tree, TreeItem item, int columnIndex, int beforeIndex ) argument
3526 int columnIndex; local
3807 int columnIndex = 0, spanner = 0, span = 1, simple = TRUE; local
3958 int columnIndex = TreeColumn_Index(firstColumn); local
5192 int columnIndex; local
5400 int columnIndex, cMask = 0; local
5534 int columnIndex; local
5561 int columnIndex; local
6776 int columnIndex; local
7555 int i, j, columnIndex; local
8122 int i, count = 0, changed = FALSE, columnIndex; local
[all...]
H A DtkTreeStyle.c3448 int columnIndex, layout; local
3457 columnIndex = 0;
3475 columnIndex++;
3685 int columnIndex, layout; local
3746 columnIndex = 0;
3757 columnIndex++;
3812 int columnIndex; local
3828 columnIndex = 0;
3862 columnIndex++;
4182 int columnIndex; local
4386 int columnIndex; member in struct:Iterate
4498 int columnIndex; local
4526 int columnIndex; local
6724 int i, columnIndex; local
[all...]
H A DtkTreeDisplay.c2698 int minX, maxX, columnIndex = 0, x = 0, i, width; local
2719 for (columnIndex = TreeColumn_Index(column);
2720 columnIndex < tree->columnCount; columnIndex++) {
2729 if (dItem->spans[columnIndex] != columnIndex)
2732 for (i = columnIndex + 1; i < tree->columnCount &&
2733 dItem->spans[i] == columnIndex; i++) {
2737 columnIndex = i - 1;
7224 int columnIndex, lef local
[all...]
H A DtkTreeCtrl.h620 MODULE_SCOPE TreeItemColumn TreeItem_FindColumn(TreeCtrl *tree, TreeItem item, int columnIndex);
624 MODULE_SCOPE void TreeItem_MoveColumn(TreeCtrl *tree, TreeItem item_, int columnIndex, int beforeIndex);
711 MODULE_SCOPE TreeColumn Tree_FindColumn(TreeCtrl *tree, int columnIndex);
H A DtkTreeColumn.c1757 int columnIndex /* 0-based index of the column to return. */
1763 if (column->index == columnIndex)
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderTable.cpp872 unsigned columnIndex = 0; local
879 m_effectiveColumnIndexMap.add(columnRenderer, colToEffCol(columnIndex));
880 columnIndex += columnRenderer->span();
913 unsigned columnIndex = effectiveIndexOfColumn(column); local
914 if (columnIndex >= numEffCols())
916 return m_columnPos[columnIndex] + m_hSpacing + borderLeft();
929 unsigned columnIndex = effectiveIndexOfColumn(*currentColumn); local
931 while (span && columnIndex < numberOfEffectiveColumns) {
932 width += m_columnPos[columnIndex + 1] - m_columnPos[columnIndex]
[all...]
H A DRenderMultiColumnSet.cpp149 unsigned columnIndex = columnIndexAtOffset(offset, AssumeNewColumns); local
150 return logicalTopInFlowThread() + columnIndex * computedColumnHeight();
/macosx-10.10/WebKit2-7600.1.25/UIProcess/ios/forms/
H A DWKFormSelectPicker.mm223 - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)rowIndex forComponent:(NSInteger)columnIndex reusingView:(UIView *)view
257 - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)columnIndex
276 - (void)pickerView:(UIPickerView *)pickerView row:(int)rowIndex column:(int)columnIndex checked:(BOOL)isChecked
367 - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)columnIndex
/macosx-10.10/tcl-105/tk/tk/generic/ttk/
H A DttkTreeview.c524 int columnIndex; local
536 if (Tcl_GetIntFromObj(NULL, columnIDObj, &columnIndex) == TCL_OK) {
537 if (columnIndex < 0 || columnIndex >= tv->tree.nColumns) {
547 return tv->tree.columns + columnIndex;
/macosx-10.10/WebCore-7600.1.25/accessibility/mac/
H A DWebAccessibilityObjectWrapperMac.mm2620 return [NSNumber numberWithInt:toAccessibilityTableColumn(m_object)->columnIndex()];
/macosx-10.10/Heimdal-398.1.2/lib/sqlite/
H A Dsqlite3.c92533 static int columnIndex(Table *pTab, const char *zCol){ function
[all...]

Completed in 702 milliseconds