Searched defs:head (Results 1 - 25 of 92) sorted by relevance

1234

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEInsertionList.h168 * The head of the insertion list.
172 InsertionRecord *head; member in class:LEInsertionList
/openjdk7/jdk/test/java/lang/ref/SoftReference/
H A DBash.java41 public static TestReference head; field in class:Bash.TestReference
46 next = head;
47 head = this;
64 for (TestReference r = TestReference.head; r != null; r = r.next) {
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DHeadTail.java37 private Name head; field in class:HeadTail
40 public HeadTail(Name head, Name tail) { argument
41 this(head, tail, 0);
44 public HeadTail(Name head, Name tail, int status) { argument
46 this.head = head;
55 return this.head;
H A DStringHeadTail.java35 private String head; field in class:StringHeadTail
38 public StringHeadTail(String head, String tail) { argument
39 this(head, tail, 0);
42 public StringHeadTail(String head, String tail, int status) { argument
44 this.head = head;
53 return this.head;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDContainerPattern.java57 private DPattern head; field in class:DContainerPattern
61 return head;
77 DPattern next = head;
97 head = tail = child;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DUtil.java67 private static void buildSubstitutables( XSType head, XSType _this, Set substitutables ) { argument
68 if(!isSubstitutable(head,_this))
69 return; // no derived type of _this can substitute head.
74 buildSubstitutables( head, child[i], substitutables );
/openjdk7/jdk/src/share/native/sun/java2d/
H A DShaderList.h59 ShaderInfo *head; member in struct:__anon810
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DChainEnd.java29 CurveLink head; field in class:ChainEnd
35 this.head = first;
42 return head;
54 * Returns head of a complete chain to be added to subcurves
79 enter.tail.setNext(exit.head);
83 return enter.head;
90 if (enter.head.getYTop() < otherenter.head.getYTop()) {
91 enter.tail.setNext(otherenter.head);
92 otherenter.head
[all...]
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DReferenceQueue.java54 private volatile Reference<? extends T> head = null; field in class:ReferenceQueue
62 r.next = (head == null) ? r : head;
63 head = r;
75 if (head != null) {
76 Reference<? extends T> r = head;
77 head = (r.next == r) ? null : r.next;
98 if (head == null)
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DArrayQueue.java35 this.head = 0;
51 this.head = 0;
63 if (newtail == head)
71 throw new IllegalArgumentException("Can only remove head of queue");
72 if (head == tail)
74 T removed = queue[head];
75 queue[head] = null;
76 head = (head + 1) % capacity;
86 int index = (head
100 private int head; field in class:ArrayQueue
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventQueue.java63 private QueueElement head = null; field in class:EventQueue
93 if (head == null) {
94 head = newElt;
97 newElt.next = head;
98 head.prev = newElt;
99 head = newElt;
119 head = null;
H A DServiceLocator.java191 int head = 0;
199 // find the head and tail of the list of records having the same
201 head = i;
209 sublistLength = (tail - head) + 1;
211 hostports[k++] = selectHostport(srvRecords, head, tail);
218 * Randomly select a service record in the range [head, tail] and return
221 private static String selectHostport(SrvRecord[] srvRecords, int head, argument
223 if (head == tail) {
224 return srvRecords[head].hostport;
227 // compute the running sum for records between head an
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DAdapter.java89 public final PipeHead head; field in class:Adapter.Toolkit
93 this.head = endpoint.createPipeHead();
/openjdk7/jdk/src/share/instrument/
H A DJarFacade.c42 jarAttribute* head; member in struct:__anon544
88 if (context->head == NULL) {
89 context->head = attribute;
113 return context.head;
115 freeAttributes(context.head);
125 freeAttributes(jarAttribute* head) { argument
126 while (head != NULL) {
127 jarAttribute* next = (jarAttribute*)head->next;
128 free(head->name);
129 free(head
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/
H A DXSModel.java153 * @param head The substitution group head.
159 public XSObjectList getSubstitutionGroup(XSElementDeclaration head); argument
/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.cpp193 int MemTrackWorker::count_recorder(const MemRecorder* head) { argument
195 while(head != NULL) {
197 head = head->next();
205 MemRecorder* head = _gen[index].peek(); local
206 if (head != NULL) {
207 count += count_recorder(head);
H A DmemTrackWorker.hpp61 void add_recorders(MemRecorder* head) { argument
62 if (head != NULL) {
64 _recorder_list = head;
68 tmp->set_next(head);
84 int _head, _tail; // head and tail pointers to above circular buffer
105 NOT_PRODUCT(static int count_recorder(const MemRecorder* head);)
/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.h41 CacheCellInfo *head; member in struct:__anon796
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbServiceLocator.java202 int head = 0;
210 // find the head and tail of the list of records having the same
212 head = i;
220 sublistLength = (tail - head) + 1;
222 hostports[k++] = selectHostport(srvRecords, head, tail);
229 * Randomly select a service record in the range [head, tail] and return
232 private static String selectHostport(SrvRecord[] srvRecords, int head, argument
234 if (head == tail) {
235 return srvRecords[head].hostport;
238 // compute the running sum for records between head an
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DQueue.java42 QueueElement head = null; field in class:Queue
55 if (head == null) {
56 head = newElt;
60 newElt.next = head;
61 head.prev = newElt;
62 head = newElt;
97 head = null;
133 System.err.println("["+length+" elt(s); head = "+
134 (head == null ? "null" : (head
[all...]
/openjdk7/jdk/src/share/sample/nio/server/
H A DReply.java78 Reply(Code rc, Content c, Request.Action head) { argument
81 headersOnly = (head == Request.Action.HEAD);
/openjdk7/langtools/test/tools/javac/generics/odersky/
H A DList.java28 public A head; field in class:List
35 /** Construct a list given its head and tail.
37 public List(A head, List<A> tail) { argument
39 this.head = head;
122 else return this.prependList(xs.tail).prepend(xs.head);
130 rev = new List<A>(l.head, rev);
155 vec[i] = l.head;
169 buf.append(((Object)head).toString());
172 buf.append(((Object)l.head)
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaAssertions.cpp66 OptionList** head = &_classes; local
71 head = &_packages;
85 head == &_classes ? "class" : "package",
92 *head = new OptionList(name_copy, enable, *head);
/openjdk7/hotspot/src/share/vm/opto/
H A DloopUnswitch.cpp66 LoopNode* head = _head->as_Loop(); local
67 if (head->unswitch_count() + 1 > head->unswitch_max()) {
78 LoopNode *head = loop->_head->as_Loop(); local
80 Node* n = head->in(LoopNode::LoopBackControl);
81 while (n != head) {
110 LoopNode *head = loop->_head->as_Loop(); local
117 tty->print("Unswitch %d ", head->unswitch_count()+1);
123 if (head->is_CountedLoop() && !head
218 LoopNode* head = loop->_head->as_Loop(); local
[all...]
/openjdk7/jdk/src/share/back/
H A DclassTrack.c80 KlassNode **head = &table[slot]; local
86 for (nodePtr = head; node = *nodePtr, node != NULL; nodePtr = &(node->next)) {
214 KlassNode **head = &table[slot]; local
220 for (node = *head; node != NULL; node = node->next) {
244 node->next = *head;
245 *head = node;

Completed in 1239 milliseconds

1234