HomeSort by relevance Sort by last modified time
    Searched full:cells (Results 1 - 25 of 410) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atm_idt77105.h 20 __u32 tx_cells; /* cells transmitted */
21 __u32 rx_cells; /* cells received */
atm_zatm.h 44 #define ZATM_OAM_POOL 0 /* free buffer pool for OAM cells */
45 #define ZATM_AAL0_POOL 1 /* free buffer pool for AAL0 cells */
  /external/webkit/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/
cells.js 1 description('Test behavior of the HTMLTableRowElement cells attribute in cases where there is unusual nesting.');
10 return row.cells.length;
20 return row.cells.length;
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.h 57 Vector<RenderTableCell*, 1> cells; member in struct:WebCore::RenderTableSection::CellStruct
65 return hasCells() ? cells[cells.size() - 1] : 0;
70 return hasCells() ? cells[cells.size() - 1] : 0;
73 bool hasCells() const { return cells.size() > 0; }
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
table_list.js 41 var cells = this.querySelectorAll('.table-row-cell');
42 if (cells.length % cm.size != 0) {
46 var rowsCount = cells.length / cm.size;
50 cells[row * cm.size + i].style.width = cm.getWidth(i) + '%';
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_menu.mm 13 // cells have a BookmarkNode as their represented object. This object
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableRowElement05.js 78 The cells attribute specifies the collection of cells in this row.
81 the cells length attribute.
104 cellsnodeList = testNode.cells;
HTMLTableRowElement20.js 79 If index is -1 or equal to the number of cells, the new cell is
84 the cells length attribute which should be set to six.
89 and also the numbers of cells should now be seven.
116 cellsnodeList = testNode.cells;
129 cellsnodeList = testNode.cells;
HTMLTableRowElement11.js 82 the cells length attribute which should be set to six.
86 cell and make sure it is null and also the numbers of cells
114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
HTMLTableRowElement12.js 82 the cells length attribute which should be set to six.
86 and also the numbers of cells should now be seven.
113 cellsnodeList = testNode.cells;
126 cellsnodeList = testNode.cells;
HTMLTableRowElement13.js 82 the cells length attribute which should be set to six.
86 the number of cells which should now be five.
112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
HTMLTableRowElement14.js 82 the cells length attribute which should be set to six.
86 the number of cells which should now be five.
112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
HTMLTableRowElement21.js 83 the cells length attribute which should be set to six.
88 and also the numbers of cells should now be five.
114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableRowElement05.js 78 The cells attribute specifies the collection of cells in this row.
81 the cells length attribute.
104 cellsnodeList = testNode.cells;
HTMLTableRowElement20.js 79 If index is -1 or equal to the number of cells, the new cell is
84 the cells length attribute which should be set to six.
89 and also the numbers of cells should now be seven.
116 cellsnodeList = testNode.cells;
129 cellsnodeList = testNode.cells;
HTMLTableRowElement11.js 82 the cells length attribute which should be set to six.
86 cell and make sure it is null and also the numbers of cells
114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
HTMLTableRowElement12.js 82 the cells length attribute which should be set to six.
86 and also the numbers of cells should now be seven.
113 cellsnodeList = testNode.cells;
126 cellsnodeList = testNode.cells;
HTMLTableRowElement13.js 82 the cells length attribute which should be set to six.
86 the number of cells which should now be five.
112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
HTMLTableRowElement14.js 82 the cells length attribute which should be set to six.
86 the number of cells which should now be five.
112 cellsnodeList = testNode.cells;
125 cellsnodeList = testNode.cells;
HTMLTableRowElement21.js 83 the cells length attribute which should be set to six.
88 and also the numbers of cells should now be five.
114 cellsnodeList = testNode.cells;
127 cellsnodeList = testNode.cells;
  /external/webkit/LayoutTests/fast/dom/HTMLTableRowElement/
cells.html 10 <script src="script-tests/cells.js"></script>
cells-expected.txt 1 Test behavior of the HTMLTableRowElement cells attribute in cases where there is unusual nesting.
  /external/markdown/markdown/extensions/
tables.py 59 """ Given a row of text, build table cells. """
64 cells = self._split_row(row, border)
65 # We use align here rather than cells to ensure every row
70 c.text = cells[i].strip()
77 """ split a row of text into list of cells. """
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
CellSpan.java 25 * Exercise table layout with cells spanning.
FixedWidth.java 25 * Exercise table layout with cells having a fixed width and height.

Completed in 685 milliseconds

1 2 3 4 5 6 7 8 91011>>