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

  /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...]
  /system/wlan/ti/wilink_6_1/utils/
queue.c 53 TQueNodeHdr tHead; /* The queue first node */
153 pQue->tHead.pNext = pQue->tHead.pPrev = &pQue->tHead;
250 AddToHead (pQueNodeHdr, &pQue->tHead);
297 hItem = (TI_HANDLE)((TI_UINT8*)pQue->tHead.pPrev - pQue->uNodeHeaderOffset);
299 DelFromTail (pQue->tHead.pPrev); /* remove node from the queue */
342 AddToTail (pQueNodeHdr, &pQue->tHead);
409 pQue->uNodeHeaderOffset, pQue->tHead.pNext, pQue->tHead.pPrev))
    [all...]
  /external/webkit/WebCore/html/
HTMLTableElement.idl 28 attribute HTMLTableSectionElement tHead
HTMLTableElement.h 48 HTMLTableSectionElement* tHead() const;
HTMLTableRowElement.cpp 79 // Rows from the first <thead> are numbered before all <tbody> rows.
81 // Rows from other <thead> and <tfoot> elements don't get row indices at all.
85 if (HTMLTableSectionElement* head = static_cast<HTMLTableElement*>(table)->tHead()) {
115 // We get here for rows that are in <thead> or <tfoot> sections other than the main header and footer.
HTMLTableElement.cpp 82 HTMLTableSectionElement* HTMLTableElement::tHead() const
126 if (HTMLTableSectionElement* existingHead = tHead())
137 removeChild(tHead(), ec);
  /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/webkit/WebCore/accessibility/
AccessibilityTable.cpp 98 // if there is a caption element, summary, THEAD, or TFOOT section, it's most certainly a data table
100 if (!tableElement->summary().isEmpty() || tableElement->tHead() || tableElement->tFoot() || tableElement->caption())
  /external/webkit/WebCore/bindings/objc/
PublicDOMInterfaces.h     [all...]

Completed in 4223 milliseconds