HomeSort by relevance Sort by last modified time
    Searched full:head (Results 376 - 400 of 9675) sorted by null

<<11121314151617181920>>

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodelookupprefix19.xhtml 4 <!ELEMENT html:html (html:head, html:body)>
6 <!ELEMENT html:head (html:title,script*)>
7 <!ATTLIST html:head xmlns CDATA #IMPLIED>
20 <html:head xmlns='http://www.w3.org/1999/xhtml'>
22 </html:head>
  /external/e2fsprogs/lib/blkid/
list.h 56 * @head: list head to add it after
58 * Insert a new entry after the specified head.
61 _INLINE_ void list_add(struct list_head *add, struct list_head *head)
63 __list_add(add, head, head->next);
69 * @head: list head to add it before
71 * Insert a new entry before the specified head.
74 _INLINE_ void list_add_tail(struct list_head *add, struct list_head *head)
    [all...]
  /external/openssh/openbsd-compat/
sys-tree.h 79 #define SPLAY_ROOT(head) (head)->sph_root
80 #define SPLAY_EMPTY(head) (SPLAY_ROOT(head) == NULL)
83 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
84 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
85 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
86 (head)->sph_root = tmp; \
89 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
90 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field);
    [all...]
  /external/skia/src/core/
SkDeque.cpp 14 struct SkDeque::Head {
15 Head* fNext;
16 Head* fPrev;
40 if (storageSize >= sizeof(Head) + elemSize) {
41 fFront = (Head*)storage;
50 Head* head = fFront; local
51 Head* initialHead = (Head*)fInitialStorage;
53 while (head) {
    [all...]
  /external/kernel-headers/original/linux/
list.h 55 * @head: list head to add it after
57 * Insert a new entry after the specified head.
60 static inline void list_add(struct list_head *new, struct list_head *head)
62 __list_add(new, head, head->next);
68 * @head: list head to add it before
70 * Insert a new entry before the specified head.
73 static inline void list_add_tail(struct list_head *new, struct list_head *head)
    [all...]
plist.h 34 * |HEAD |
102 * @head: struct plist_head variable name
104 #define PLIST_HEAD_INIT(head, _lock) \
106 .prio_list = LIST_HEAD_INIT((head).prio_list), \
107 .node_list = LIST_HEAD_INIT((head).node_list), \
126 * @head: &struct plist_head pointer
129 plist_head_init(struct plist_head *head, spinlock_t *lock)
131 INIT_LIST_HEAD(&head->prio_list);
132 INIT_LIST_HEAD(&head->node_list);
134 head->lock = lock
    [all...]
  /external/checkpolicy/
queue.c 21 q->head = q->tail = NULL;
40 if (q->head == NULL) {
41 q->head = q->tail = newnode;
64 if (q->head == NULL) {
65 q->head = q->tail = newnode;
67 newnode->next = q->head;
68 q->head = newnode;
82 if (q->head == NULL)
85 node = q->head;
86 q->head = q->head->next
    [all...]
  /hardware/qcom/media/mm-video/vidc/vdec/inc/
Map.h 46 node* head; member in class:Map
52 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
53 bool empty() const { return ( !head || !tail ); }
66 while(head)
68 node* temp(head);
69 head=head->next;
79 tmp = head;
94 tmp = head;
    [all...]
  /external/v8/tools/
profile_view.js 49 var head;
56 if (viewParent === head) {
62 var viewNode = createViewNode(node.label, totalWeight, selfWeight, head);
66 head = viewNode;
70 var view = this.createView(head);
78 * @param {ProfileView.Node} head View head node.
81 ViewBuilder.prototype.createView = function(head) {
82 return new ProfileView(head);
95 * @param {ProfileView.Node} head Profile view head
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
cloneNode-after-deleteRule-crash.html 3 <head>
6 </head>
13 q.getElementsByTagName('head')[0].cloneNode(true);
giant-stylesheet-crash.html 0 <head>
20 document.getElementsByTagName('head')[0].appendChild(styleElement);
22 </head>
user-stylesheet-crash.html 2 <head>
12 iframeDocument.head.appendChild(link);
27 </head>
css-fontface-rule-crash.html 2 <head>
14 document.head.appendChild(style);
16 document.head.removeChild(style);
35 </head>
css-keyframe-style-crash.html 2 <head>
24 document.head.appendChild(style);
26 document.head.removeChild(style);
38 </head>
removed-media-rule-deleted-parent-crash.html 2 <head>
14 document.head.appendChild(style);
19 document.head.removeChild(style);
39 </head>
removed-stylesheet-rule-deleted-parent-crash.html 2 <head>
14 document.head.appendChild(style);
19 document.head.removeChild(style);
39 </head>
  /external/bluetooth/hcidump/parser/
rfcomm.c 53 static void print_rfcomm_hdr(long_frame_head* head, uint8_t *ptr, int len)
55 address_field addr = head->addr;
56 uint8_t ctr = head->control;
57 uint16_t ilen = head->length.bits.len;
74 long_frame_head *head, mcc_long_frame_head *mcc_head)
77 print_rfcomm_hdr(head, ptr, len);
81 long_frame_head *head, mcc_long_frame_head *mcc_head)
84 print_rfcomm_hdr(head, ptr, len);
89 long_frame_head *head, mcc_long_frame_head *mcc_head)
92 print_rfcomm_hdr(head, ptr, len)
306 long_frame_head head; local
    [all...]
  /external/quake/quake/src/QW/server/
move.txt 12 head = submerged test
16 if (head == water)
28 if (head == water)
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLHeadElement01.html 3 <HEAD PROFILE="http://xw2k.sdct.itl.nist.gov/brady/dom/files/profile">
5 <TITLE>NIST DOM HTML Test - HEAD</TITLE>
6 <script type='text/javascript' src='selfhtml.js'></script><script charset='UTF-8' type='text/javascript' src='HTMLHeadElement01.js'></script><script type='text/javascript'>function loadComplete() { startTest(); }</script></HEAD>
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLHeadElement01.xhtml 6 <head profile="http://xw2k.sdct.itl.nist.gov/brady/dom/files/profile">
7 <title>NIST DOM HTML Test - HEAD</title>
8 <script type='text/javascript' src='selfxhtml.js'></script><script charset='UTF-8' type='text/javascript' src='HTMLHeadElement01.js'></script><script type='text/javascript'>function loadComplete() { startTest(); }</script></head>
HTMLElement01-expected.txt 3 Message idLink: assertEquals failed, actual , expected Test-HEAD.
  /external/webkit/LayoutTests/fast/encoding/
meta-in-body.html 2 <head>
3 </head>
22 This test checks that the charset sniffer scans at least 1024 bytes of data to find a meta tag, even if it is not in the head section.
no-charset-on-dynamic-script-load.html 2 <head>
5 </head>
19 document.getElementsByTagName("head").item(0).appendChild(oDIVResults);
  /external/chromium/net/base/
address_list.cc 40 struct addrinfo* head; member in struct:net::AddressList::Data
42 // Indicates which free function to use for |head|.
113 void AddressList::Adopt(struct addrinfo* head) {
114 data_ = new Data(head, true /*is_system_created*/);
117 void AddressList::Copy(const struct addrinfo* head, bool recursive) {
118 data_ = new Data(CreateCopyOfAddrinfo(head, recursive),
122 void AddressList::Append(const struct addrinfo* head) {
123 DCHECK(head);
126 new_head = CreateCopyOfAddrinfo(data_->head, true);
129 new_head = data_->head;
180 const struct addrinfo* AddressList::head() const { function in class:net::AddressList
    [all...]
  /external/llvm/test/TableGen/
ListManip.td 10 : Bli<!head(_bli).t>

Completed in 258 milliseconds

<<11121314151617181920>>