HomeSort by relevance Sort by last modified time
    Searched refs:tHead (Results 1 - 25 of 32) sorted by null

1 2

  /hardware/ti/wlan/wl1271/utils/
queue.c 53 TQueNodeHdr tHead; /* The queue first node */
153 pQue->tHead.pNext = pQue->tHead.pPrev = &pQue->tHead;
253 AddToHead (pQueNodeHdr, &pQue->tHead);
302 hItem = (TI_HANDLE)((TI_UINT8*)pQue->tHead.pPrev - pQue->uNodeHeaderOffset);
304 DelFromTail (pQue->tHead.pPrev); /* remove node from the queue */
355 AddToTail (pQueNodeHdr, &pQue->tHead);
422 pQue->uNodeHeaderOffset, pQue->tHead.pNext, pQue->tHead.pPrev))
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTableElement.idl 25 attribute HTMLTableSectionElement tHead setter raises(DOMException);
HTMLTableElement.h 45 HTMLTableSectionElement* tHead() const;
HTMLTableRowElement.cpp 67 // Rows from the first <thead> are numbered before all <tbody> rows.
69 // Rows from other <thead> and <tfoot> elements don't get row indices at all.
73 if (HTMLTableSectionElement* head = static_cast<HTMLTableElement*>(table)->tHead()) {
103 // We get here for rows that are in <thead> or <tfoot> sections other than the main header and footer.
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableElement03.js 78 The tHead attribute returns the tables THEAD.
80 Retrieve the align attribute of the THEAD element from the second
104 vsection = testNode.tHead;
HTMLTableElement04.js 78 The tHead attribute returns the tables THEAD or null if it does not
81 Retrieve the THEAD element from within the first TABLE element.
104 vsection = testNode.tHead;
HTMLTableElement19.js 81 Create a new THEAD element on the first TABLE element. The first
83 After creation of the THEAD element the value is once again
108 vsection1 = testNode.tHead;
112 vsection2 = testNode.tHead;
HTMLTableElement21.js 80 The deleteTHead() method will delete the THEAD Element from the
81 second TABLE element. First make sure that the THEAD element exists
82 and then count the number of rows. After the THEAD element is
114 vsection1 = testNode.tHead;
123 vsection2 = testNode.tHead;
HTMLTableElement28.js 81 with an index of 0. Currently the zero indexed row is in the THEAD
82 section of the TABLE. The number of rows in the THEAD section before
84 of rows in the THEAD section is two.
110 vsection1 = testNode.tHead;
118 vsection2 = testNode.tHead;
table03.js 102 vsection = testNode.tHead;
table04.js 102 vsection = testNode.tHead;
table09.js 102 vsection = testNode.tHead;
table12.js 102 vsection = testNode.tHead;
table15.js 103 vsection = testNode.tHead;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableElement03.js 78 The tHead attribute returns the tables THEAD.
80 Retrieve the align attribute of the THEAD element from the second
104 vsection = testNode.tHead;
HTMLTableElement04.js 78 The tHead attribute returns the tables THEAD or null if it does not
81 Retrieve the THEAD element from within the first TABLE element.
104 vsection = testNode.tHead;
HTMLTableElement19.js 81 Create a new THEAD element on the first TABLE element. The first
83 After creation of the THEAD element the value is once again
108 vsection1 = testNode.tHead;
112 vsection2 = testNode.tHead;
HTMLTableElement21.js 80 The deleteTHead() method will delete the THEAD Element from the
81 second TABLE element. First make sure that the THEAD element exists
82 and then count the number of rows. After the THEAD element is
114 vsection1 = testNode.tHead;
123 vsection2 = testNode.tHead;
HTMLTableElement28.js 81 with an index of 0. Currently the zero indexed row is in the THEAD
82 section of the TABLE. The number of rows in the THEAD section before
84 of rows in the THEAD section is two.
110 vsection1 = testNode.tHead;
118 vsection2 = testNode.tHead;
table03.js 102 vsection = testNode.tHead;
table04.js 102 vsection = testNode.tHead;
table09.js 102 vsection = testNode.tHead;
  /external/clang/tools/scan-build/
sorttable.js 43 if (table.getElementsByTagName('thead').length == 0) {
44 // table doesn't have a tHead. Since it should have, create one and
46 the = document.createElement('thead');
50 // Safari doesn't support table.tHead, sigh
51 if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0];
53 if (table.tHead.rows.length != 1) return; // can't cope with two header rows
78 headrow = table.tHead.rows[0].cells;
  /frameworks/base/tools/preload/
sorttable.js 43 if (table.getElementsByTagName('thead').length == 0) {
44 // table doesn't have a tHead. Since it should have, create one and
46 the = document.createElement('thead');
50 // Safari doesn't support table.tHead, sigh
51 if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0];
53 if (table.tHead.rows.length != 1) return; // can't cope with two header rows
78 headrow = table.tHead.rows[0].cells;
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/
sorttable.js 51 if (table.getElementsByTagName('thead').length == 0) {
52 // table doesn't have a tHead. Since it should have, create one and
54 the = document.createElement('thead');
58 // Safari doesn't support table.tHead, sigh
59 if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0];
61 if (table.tHead.rows.length != 1) return; // can't cope with two header rows
86 headrow = table.tHead.rows[0].cells;

Completed in 3685 milliseconds

1 2