/external/guava/guava/src/com/google/common/collect/ |
D | ArrayTable.java | 224 public V at(int rowIndex, int columnIndex) { in at() argument 225 return array[rowIndex][columnIndex]; in at() 243 public V set(int rowIndex, int columnIndex, @Nullable V value) { in set() argument 244 V oldValue = array[rowIndex][columnIndex]; in set() 245 array[rowIndex][columnIndex] = value; in set() 332 Integer rowIndex = rowKeyToIndex.get(rowKey); in get() local 334 return getIndexed(rowIndex, columnIndex); in get() 337 private V getIndexed(Integer rowIndex, Integer columnIndex) { in getIndexed() argument 338 return (rowIndex == null || columnIndex == null) in getIndexed() 339 ? null : array[rowIndex][columnIndex]; in getIndexed() [all …]
|
D | RegularImmutableTable.java | 304 int rowIndex = rowKeyToIndex.get(rowKey); 306 V existingValue = values[rowIndex][columnIndex]; 309 values[rowIndex][columnIndex] = cell.getValue(); 378 Integer rowIndex = rowKeyToIndex.get(rowKey); 380 return ((rowIndex == null) || (columnIndex == null)) ? null 381 : values[rowIndex][columnIndex]; 386 Integer rowIndex = rowKeyToIndex.get(rowKey); 387 if (rowIndex == null) { 391 V[] row = values[rowIndex];
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTableSection.cpp | 210 unsigned insertionRow = row->rowIndex(); in addCell() 281 const unsigned rowIndex = cell->rowIndex(); in populateSpanningRowsHeightFromCell() local 288 unsigned actualRow = row + rowIndex; in populateSpanningRowsHeightFromCell() 298 …spanningRowsHeight.spanningCellHeightIgnoringBorderSpacing += borderSpacingForRow(rowIndex + rowSp… in populateSpanningRowsHeightFromCell() 307 const unsigned rowIndex = cell->rowIndex(); in distributeExtraRowSpanHeightToPercentRows() local 314 for (unsigned row = rowIndex; row < (rowIndex + rowSpan); row++) { in distributeExtraRowSpanHeightToPercentRows() 317 …int toAdd = (tableHeight * m_grid[row].logicalHeight.percent() / 100) - rowsHeight[row - rowIndex]; in distributeExtraRowSpanHeightToPercentRows() 337 const unsigned rowIndex = cell->rowIndex(); in distributeExtraRowSpanHeightToAutoRows() local 343 for (unsigned row = rowIndex; row < (rowIndex + rowSpan); row++) { in distributeExtraRowSpanHeightToAutoRows() 345 …accumulatedPositionIncrease += (extraRowSpanningHeight * rowsHeight[row - rowIndex]) / totalAutoRo… in distributeExtraRowSpanHeightToAutoRows() [all …]
|
D | RenderTableRow.h | 57 void setRowIndex(unsigned rowIndex) in setRowIndex() argument 59 if (UNLIKELY(rowIndex > maxRowIndex)) in setRowIndex() 62 m_rowIndex = rowIndex; in setRowIndex() 66 unsigned rowIndex() const in rowIndex() function
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | RenderTableRowTest.cpp | 86 static const unsigned rowIndex = 10; in TEST_F() local 87 m_row->setRowIndex(rowIndex); in TEST_F() 88 EXPECT_EQ(rowIndex, m_row->rowIndex()); in TEST_F() 94 EXPECT_EQ(maxRowIndex, m_row->rowIndex()); in TEST_F()
|
/external/doclava/res/assets/templates/ |
D | diff.cs | 71 if (tr.rowIndex + 1 < table.rows.length) { 72 var tbody = table.rows[tr.rowIndex + 1].parentNode; 79 if (tr.rowIndex + 1 < table.rows.length 80 && $(table.rows[tr.rowIndex + 1]).hasClass("class-entry")) { 81 var tbody = table.rows[tr.rowIndex + 1].parentNode; 98 var i = tr.rowIndex + 1; 106 var i = tr.rowIndex + 1;
|
/external/chromium/chrome/browser/resources/options/ |
D | password_manager.js | 120 PasswordManager.removeSavedPassword = function(rowIndex) { argument 121 chrome.send('removeSavedPassword', [String(rowIndex)]); 128 PasswordManager.removePasswordException = function(rowIndex) { argument 129 chrome.send('removePasswordException', [String(rowIndex)]);
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
D | AXTableRow.h | 50 void setRowIndex(int rowIndex) { m_rowIndex = rowIndex; } in setRowIndex() argument 51 int rowIndex() const { return m_rowIndex; } in rowIndex() function
|
D | AXTable.cpp | 348 for (unsigned rowIndex = 0; rowIndex < numRows; ++rowIndex) { in addChildren() local 350 RenderTableRow* renderRow = tableSection->rowRendererAt(rowIndex); in addChildren() 479 unsigned rowIndex = rowIndexCounter - 1; in cellForColumnAndRow() local 480 AccessibilityChildrenVector children = m_rows[rowIndex]->children(); in cellForColumnAndRow()
|
D | AXARIAGridRow.cpp | 71 int index = rowIndex(); in disclosedRows() 102 int index = rowIndex(); in disclosedByRow()
|
/external/chromium_org/third_party/WebKit/PerformanceTests/resources/ |
D | jquery.tablesorter.min.js | 3 …rowIndex,cellIndex){var l=parsers.length,node=false,nodeValue=false,keepLooking=true;while(nodeVal… argument 4 …rowIndex])=="undefined"){matrix[rowIndex]=[];}for(var k=0;k<matrix[rowIndex].length+1;k++){if(type…
|
/external/chromium_org/chrome/browser/resources/options/ |
D | password_manager.js | 217 PasswordManager.removeSavedPassword = function(rowIndex) { argument 218 chrome.send('removeSavedPassword', [String(rowIndex)]); 225 PasswordManager.removePasswordException = function(rowIndex) { argument 226 chrome.send('removePasswordException', [String(rowIndex)]);
|
/external/chromium_org/third_party/icu/source/common/ |
D | propsvec.c | 290 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, in upvec_getRow() argument 295 if(pv->isCompacted || rowIndex<0 || rowIndex>=pv->rows) { in upvec_getRow() 300 row=pv->v+rowIndex*columns; in upvec_getRow() 496 int32_t rowIndex, uint32_t *row, int32_t columns, in upvec_compactToUTrie2Handler() argument 500 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, TRUE, pErrorCode); in upvec_compactToUTrie2Handler() 504 toUTrie2->initialValue=rowIndex; in upvec_compactToUTrie2Handler() 507 toUTrie2->errorValue=rowIndex; in upvec_compactToUTrie2Handler() 510 toUTrie2->maxValue=rowIndex; in upvec_compactToUTrie2Handler() 511 if(rowIndex>0xffff) { in upvec_compactToUTrie2Handler()
|
D | propsvec.h | 105 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, 129 int32_t rowIndex, uint32_t *row, int32_t columns, 171 int32_t rowIndex, uint32_t *row, int32_t columns,
|
/external/icu4c/common/ |
D | propsvec.c | 291 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, in upvec_getRow() argument 296 if(pv->isCompacted || rowIndex<0 || rowIndex>=pv->rows) { in upvec_getRow() 301 row=pv->v+rowIndex*columns; in upvec_getRow() 498 int32_t rowIndex, uint32_t *row, int32_t columns, in upvec_compactToUTrie2Handler() argument 502 utrie2_setRange32(toUTrie2->trie, start, end, (uint32_t)rowIndex, TRUE, pErrorCode); in upvec_compactToUTrie2Handler() 506 toUTrie2->initialValue=rowIndex; in upvec_compactToUTrie2Handler() 509 toUTrie2->errorValue=rowIndex; in upvec_compactToUTrie2Handler() 512 toUTrie2->maxValue=rowIndex; in upvec_compactToUTrie2Handler() 513 if(rowIndex>0xffff) { in upvec_compactToUTrie2Handler()
|
D | propsvec.h | 105 upvec_getRow(const UPropsVectors *pv, int32_t rowIndex, 129 int32_t rowIndex, uint32_t *row, int32_t columns, 171 int32_t rowIndex, uint32_t *row, int32_t columns,
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/ |
D | options.js | 340 function getSelectedResults(arr, rowIndex, colIndex) { argument 343 return arr[rowIndex].startLoadResults; 345 return arr[rowIndex].commitLoadResults; 347 return arr[rowIndex].docLoadResults; 349 return arr[rowIndex].paintResults; 351 return arr[rowIndex].totalResults; 353 return arr[rowIndex].requests; 355 return arr[rowIndex].connects; 357 return arr[rowIndex].KbytesRead; 359 return arr[rowIndex].KbytesWritten; [all …]
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/ |
D | KitKatBrowserAccessibilityManager.java | 49 int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) { in setAccessibilityNodeInfoCollectionItemInfo() argument 51 rowIndex, rowSpan, columnIndex, columnSpan, heading)); in setAccessibilityNodeInfoCollectionItemInfo() 82 int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) { in setAccessibilityEventCollectionItemInfo() argument
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | PopupListBox.cpp | 394 void PopupListBox::paintRow(GraphicsContext* gc, const IntRect& rect, int rowIndex) in paintRow() argument 398 IntRect rowRect = getRowBounds(rowIndex); in paintRow() 402 PopupMenuStyle style = m_popupClient->itemStyle(rowIndex); in paintRow() 406 if (rowIndex == m_selectedIndex) { in paintRow() 437 if (m_popupClient->itemIsSeparator(rowIndex)) { in paintRow() 454 Font itemFont = getRowFont(rowIndex); in paintRow() 467 String itemText = m_popupClient->itemText(rowIndex); in paintRow() 468 String itemLabel = m_popupClient->itemLabel(rowIndex); in paintRow() 469 String itemIcon = m_popupClient->itemIcon(rowIndex); in paintRow() 520 itemFont = m_popupClient->itemStyle(rowIndex).font(); in paintRow() [all …]
|
/external/chromium_org/ui/app_list/cocoa/ |
D | apps_search_results_controller.mm | 41 - (NSMenu*)contextMenuForRow:(NSInteger)rowIndex; 235 - (NSMenu*)contextMenuForRow:(NSInteger)rowIndex { 237 if (rowIndex < 0) 240 [tableView_ selectRowIndexes:[NSIndexSet indexSetWithIndex:rowIndex] 242 return bridge_->MenuForItem(rowIndex); 251 row:(NSInteger)rowIndex { 254 if (rowIndex == 0 && [tableView_ selectedRow] == -1) { 261 initWithSearchResult:[self searchResults]->GetItemAt(rowIndex)]); 268 row:(NSInteger)rowIndex { 269 if (rowIndex == [tableView selectedRow]) [all …]
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | hung_renderer_controller.mm | 108 row:(NSInteger)rowIndex { 114 row:(NSInteger)rowIndex { 115 NSCell* cell = [tableColumn dataCellForRow:rowIndex]; 120 [buttonCell setTitle:[hungTitles_ objectAtIndex:rowIndex]]; 121 [buttonCell setImage:[hungFavicons_ objectAtIndex:rowIndex]];
|
/external/chromium_org/chrome/browser/resources/history/ |
D | other_devices.js | 430 var rowIndex = -1; 442 rowIndex++; 443 if (rowIndex < this.rowHeights_.length) 444 maxNumTabs = this.rowHeights_[rowIndex]; 449 currentRowElement.appendChild(device.getDOMNode(maxNumTabs, rowIndex));
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/ |
D | PNGImageDecoder.cpp | 91 static void PNGAPI rowAvailable(png_structp png, png_bytep rowBuffer, png_uint_32 rowIndex, int int… in rowAvailable() argument 93 …static_cast<PNGImageDecoder*>(png_get_progressive_ptr(png))->rowAvailable(rowBuffer, rowIndex, int… in rowAvailable() 395 void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, unsigned rowIndex, int) in rowAvailable() argument 451 int y = rowIndex; in rowAvailable() 479 row = interlaceBuffer + (rowIndex * colorChannels * size().width()); in rowAvailable()
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
D | table_printer.js | 104 getCell_: function(rowIndex, columnIndex) { argument 105 if (rowIndex >= this.rows_.length) 107 var row = this.rows_[rowIndex];
|
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/ |
D | omnibox_popup_matrix.mm | 19 - (void)highlightRowAt:(NSInteger)rowIndex; 163 - (void)highlightRowAt:(NSInteger)rowIndex { 164 // highlightCell will be nil if rowIndex is out of range, so no cell will be 166 NSCell* highlightCell = [self cellAtRow:rowIndex column:0];
|