Searched refs:rowIndex (Results 1 - 25 of 55) sorted by relevance

123

/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/TableModel/
H A DTableModel.py56 self, aTableView, aTableColumn, rowIndex):
58 return self.editedFields.get((aTableColumn, rowIndex),
59 "{%s, %d}" % (col, rowIndex))
62 self, aTableView, anObject, aTableColumn, rowIndex):
63 self.editedFields[(aTableColumn, rowIndex)] = anObject
66 def tableView_shouldSelectRow_(self, aTableView, rowIndex):
68 return rowIndex % 2
70 def tableView_shouldEditTableColumn_row_(self, aTableView, aTableColumn, rowIndex):
72 return (rowIndex % 2) and aTableColumn.identifier() == "col_2"
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/TableModel/
H A DTableModel.py56 self, aTableView, aTableColumn, rowIndex):
58 return self.editedFields.get((aTableColumn, rowIndex),
59 "{%s, %d}" % (col, rowIndex))
62 self, aTableView, anObject, aTableColumn, rowIndex):
63 self.editedFields[(aTableColumn, rowIndex)] = anObject
66 def tableView_shouldSelectRow_(self, aTableView, rowIndex):
68 return rowIndex % 2
70 def tableView_shouldEditTableColumn_row_(self, aTableView, aTableColumn, rowIndex):
72 return (rowIndex % 2) and aTableColumn.identifier() == "col_2"
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/TableModel/
H A DTableModel.py56 self, aTableView, aTableColumn, rowIndex):
58 return self.editedFields.get((aTableColumn, rowIndex),
59 "{%s, %d}" % (col, rowIndex))
62 self, aTableView, anObject, aTableColumn, rowIndex):
63 self.editedFields[(aTableColumn, rowIndex)] = anObject
66 def tableView_shouldSelectRow_(self, aTableView, rowIndex):
68 return rowIndex % 2
70 def tableView_shouldEditTableColumn_row_(self, aTableView, aTableColumn, rowIndex):
72 return (rowIndex % 2) and aTableColumn.identifier() == "col_2"
/macosx-10.10/WebCore-7600.1.25/accessibility/
H A DAccessibilityTableRow.h52 void setRowIndex(int rowIndex) { m_rowIndex = rowIndex; } argument
53 int rowIndex() const { return m_rowIndex; } function in class:WebCore::AccessibilityTableRow
H A DAccessibilityARIAGridRow.cpp71 int index = rowIndex();
102 int index = rowIndex();
H A DAccessibilityARIAGridCell.cpp79 rowRange.first = toAccessibilityTableRow(parent)->rowIndex();
/macosx-10.10/Security-57031.1.35/Security/Keychain/
H A DKDSecItems.h31 - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex;
H A DKDSecItems.m64 - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex
69 return self.items[rowIndex][(id)kSecAttrAccount];
72 return [KDSecItems nameOfItem:self.items[rowIndex]];
75 return [NSString stringWithFormat:@"*** c=%@ r%ld", [aTableColumn identifier], (long)rowIndex];
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dpropsvec.h101 * @return NULL if rowIndex out of range and for illegal arguments,
105 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex,
115 * The handler's rowIndex is the index of the row in the compacted
122 * where rowIndex is the length of the compacted array,
129 int32_t rowIndex, uint32_t *row, int32_t columns,
167 /* context=UPVecToUTrie2Context, creates the trie and stores the rowIndex values */
171 int32_t rowIndex, uint32_t *row, int32_t columns,
H A Dpropsvec.c291 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, argument
296 if(pv->isCompacted || rowIndex<0 || rowIndex>=pv->rows) {
301 row=pv->v+rowIndex*columns;
498 int32_t rowIndex, uint32_t *row, int32_t columns,
502 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, TRUE, pErrorCode);
506 toUTrie2->initialValue=rowIndex;
509 toUTrie2->errorValue=rowIndex;
512 toUTrie2->maxValue=rowIndex;
513 if(rowIndex>
496 upvec_compactToUTrie2Handler(void *context, UChar32 start, UChar32 end, int32_t rowIndex, uint32_t *row, int32_t columns, UErrorCode *pErrorCode) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLTableRowElement.h38 int rowIndex() const;
H A DHTMLTableRowElement.idl22 readonly attribute long rowIndex;
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderTableRow.h57 void setRowIndex(unsigned rowIndex) argument
59 if (UNLIKELY(rowIndex > maxRowIndex))
62 m_rowIndex = rowIndex;
66 unsigned rowIndex() const function in class:WebCore::final
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/QuartzComposer/Chart/
H A DAppController.py182 def tableView_objectValueForTableColumn_row_(self, aTableView, aTableColumn, rowIndex):
184 # storage at index "rowIndex"
185 return self._data[rowIndex][aTableColumn.identifier()]
188 self, aTableView, anObject, aTableColumn, rowIndex):
191 # storage at index "rowIndex"
192 self._data[rowIndex][aTableColumn.identifier()] = anObject
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/QuartzComposer/Chart/
H A DAppController.py182 def tableView_objectValueForTableColumn_row_(self, aTableView, aTableColumn, rowIndex):
184 # storage at index "rowIndex"
185 return self._data[rowIndex][aTableColumn.identifier()]
188 self, aTableView, anObject, aTableColumn, rowIndex):
191 # storage at index "rowIndex"
192 self._data[rowIndex][aTableColumn.identifier()] = anObject
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/QuartzComposer/Chart/
H A DAppController.py182 def tableView_objectValueForTableColumn_row_(self, aTableView, aTableColumn, rowIndex):
184 # storage at index "rowIndex"
185 return self._data[rowIndex][aTableColumn.identifier()]
188 self, aTableView, anObject, aTableColumn, rowIndex):
191 # storage at index "rowIndex"
192 self._data[rowIndex][aTableColumn.identifier()] = anObject
/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
225 const OptionItem& item = [_view assistedNodeSelectOptions][rowIndex];
230 CGRect frame = [table rectForRowAtIndexPath:[NSIndexPath indexPathForRow:rowIndex inSection:0]];
262 - (NSInteger)findItemIndexAt:(int)rowIndex
264 ASSERT(rowIndex >= 0 && (size_t)rowIndex < [_view assistedNodeSelectOptions].size());
266 for (int i = 0; i < rowIndex; ++i) {
276 - (void)pickerView:(UIPickerView *)pickerView row:(int)rowIndex column:(int)columnIndex checked:(BOOL)isChecked
278 if ((size_t)rowIndex >= [_view assistedNodeSelectOptions].size())
281 OptionItem& item = [_view assistedNodeSelectOptions][rowIndex];
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/png/
H A DPNGImageDecoder.h54 void rowAvailable(unsigned char* rowBuffer, unsigned rowIndex, int interlacePass);
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/PDFKit/PDFKitViewer/
H A DMyPDFDocument.py181 self, aTableView, theColumn, rowIndex):
184 return self._searchResults.objectAtIndex_(rowIndex).pages().objectAtIndex_(0).label()
188 self._searchResults.objectAtIndex_(rowIndex))
200 rowIndex = notification.object().selectedRow() variable in class:MyPDFDocument
201 if rowIndex >= 0:
203 self._searchResults.objectAtIndex_(rowIndex))
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/PDFKit/PDFKitViewer/
H A DMyPDFDocument.py181 self, aTableView, theColumn, rowIndex):
184 return self._searchResults.objectAtIndex_(rowIndex).pages().objectAtIndex_(0).label()
188 self._searchResults.objectAtIndex_(rowIndex))
200 rowIndex = notification.object().selectedRow() variable in class:MyPDFDocument
201 if rowIndex >= 0:
203 self._searchResults.objectAtIndex_(rowIndex))
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/PDFKit/PDFKitViewer/
H A DMyPDFDocument.py181 self, aTableView, theColumn, rowIndex):
184 return self._searchResults.objectAtIndex_(rowIndex).pages().objectAtIndex_(0).label()
188 self._searchResults.objectAtIndex_(rowIndex))
200 rowIndex = notification.object().selectedRow()
201 if rowIndex >= 0:
203 self._searchResults.objectAtIndex_(rowIndex))
/macosx-10.10/mDNSResponder-561.1.1/Clients/
H A DDNSServiceReg.m200 - (id)tableView:(NSTableView *)theTableView objectValueForTableColumn:(NSTableColumn *)theColumn row:(int)rowIndex
203 return [srvtypeKeys objectAtIndex:rowIndex];
206 return [srvnameKeys objectAtIndex:rowIndex];
209 return [srvportKeys objectAtIndex:rowIndex];
212 return [srvdomainKeys objectAtIndex:rowIndex];
215 return [srvtextKeys objectAtIndex:rowIndex];
/macosx-10.10/Chess-310.6/Sources/
H A DMBCGameInfo.h78 - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-PreferencePanes/Examples/EnvironmentPrefs/
H A DShellEnv.py166 def tableView_objectValueForTableColumn_row_(self, aView, aCol, rowIndex):
169 envname = self.keys[rowIndex]
177 aView, value, aCol,rowIndex):
184 envname = self.keys[rowIndex]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-PreferencePanes/Examples/EnvironmentPrefs/
H A DShellEnv.py166 def tableView_objectValueForTableColumn_row_(self, aView, aCol, rowIndex):
169 envname = self.keys[rowIndex]
177 aView, value, aCol,rowIndex):
184 envname = self.keys[rowIndex]

Completed in 371 milliseconds

123