Searched refs:cell2 (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/content/browser/accessibility/ |
D | cross_platform_accessibility_browsertest.cc | 286 const ui::AXNode* cell2 = row->ChildAtIndex(1); in IN_PROC_BROWSER_TEST_F() local 287 EXPECT_EQ(ui::AX_ROLE_CELL, cell2->data().role); in IN_PROC_BROWSER_TEST_F() 306 EXPECT_EQ(cell2->id(), column2_indirect_child_ids[0]); in IN_PROC_BROWSER_TEST_F() 442 const ui::AXNode* cell2 = table->ChildAtIndex(0)->ChildAtIndex(1); in IN_PROC_BROWSER_TEST_F() local 453 EXPECT_EQ(cell2->id(), table_cell_ids[2]); in IN_PROC_BROWSER_TEST_F() 466 EXPECT_EQ(2, GetIntAttr(cell2, in IN_PROC_BROWSER_TEST_F() 468 EXPECT_EQ(1, GetIntAttr(cell2, in IN_PROC_BROWSER_TEST_F()
|
/external/chromium_org/ui/base/cocoa/controls/ |
D | hyperlink_button_cell_unittest.mm | 124 base::scoped_nsobject<HyperlinkButtonCell> cell2([cell1 copy]); 125 EXPECT_NSEQ([cell1 textColor], [cell2 textColor]); 127 [cell2 setTextColor:[NSColor greenColor]];
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTableSection.cpp | 462 …tic bool cellIsFullyIncludedInOtherCell(const RenderTableCell* cell1, const RenderTableCell* cell2) in cellIsFullyIncludedInOtherCell() argument 464 …return (cell1->rowIndex() >= cell2->rowIndex() && (cell1->rowIndex() + cell1->rowSpan()) <= (cell2… in cellIsFullyIncludedInOtherCell() 468 …reRowSpanCellsInHeightDistributionOrder(const RenderTableCell* cell1, const RenderTableCell* cell2) in compareRowSpanCellsInHeightDistributionOrder() argument 472 if (cell1->rowIndex() == cell2->rowIndex() && cell1->rowSpan() == cell2->rowSpan()) in compareRowSpanCellsInHeightDistributionOrder() 473 return (cell1->logicalHeightForRowSizing() > cell2->logicalHeightForRowSizing()); in compareRowSpanCellsInHeightDistributionOrder() 477 if (cellIsFullyIncludedInOtherCell(cell1, cell2)) in compareRowSpanCellsInHeightDistributionOrder() 481 if (!cellIsFullyIncludedInOtherCell(cell2, cell1)) in compareRowSpanCellsInHeightDistributionOrder() 482 return (cell1->rowIndex() < cell2->rowIndex()); in compareRowSpanCellsInHeightDistributionOrder()
|
/external/guava/guava/src/com/google/common/collect/ |
D | RegularImmutableTable.java | 104 @Override public int compare(Cell<R, C, V> cell1, Cell<R, C, V> cell2) { in forCells() 106 : rowComparator.compare(cell1.getRowKey(), cell2.getRowKey()); in forCells() 112 cell1.getColumnKey(), cell2.getColumnKey()); in forCells()
|