HomeSort by relevance Sort by last modified time
    Searched refs:lastCell (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableRow.cpp 114 last = lastCell();
116 RenderTableCell* lastCell = toRenderTableCell(last);
117 if (beforeChild == lastCell)
118 beforeChild = lastCell->firstChild();
119 lastCell->addChild(child, beforeChild);
204 for (RenderTableCell* cell = lastCell(); cell; cell = cell->previousCell()) {
RenderTableRow.h 40 RenderTableCell* lastCell() const;
RenderTableCell.h 313 inline RenderTableCell* RenderTableRow::lastCell() const
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 531 final Cell lastCell = pattern.get(pattern.size() - 1);
532 int dRow = cell.row - lastCell.row;
533 int dColumn = cell.column - lastCell.column;
535 int fillInRow = lastCell.row;
536 int fillInColumn = lastCell.column;
539 fillInRow = lastCell.row + ((dRow > 0) ? 1 : -1);
543 fillInColumn = lastCell.column + ((dColumn > 0) ? 1 : -1);
772 final Cell lastCell = pattern.get(patternSize - 1);
773 float lastCellCenterX = getCenterXForColumn(lastCell.column);
774 float lastCellCenterY = getCenterYForRow(lastCell.row)
    [all...]

Completed in 611 milliseconds