Searched refs:head (Results 1 - 25 of 217) sorted by relevance

123456789

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DStandalonePipeAssembler.java46 Pipe head = context.createTransportPipe();
47 head = context.createSecurityPipe(head);
52 head = context.createDumpPipe("client", System.out, head);
54 head = context.createWsaPipe(head);
55 head = context.createClientMUPipe(head);
56 return context.createHandlerPipe(head);
[all...]
H A DStandaloneTubeAssembler.java45 Tube head = context.createTransportTube();
46 head = context.createSecurityTube(head);
50 head = context.createDumpTube("client", System.out, head);
52 head = context.createWsaTube(head);
53 head = context.createClientMUTube(head);
54 head
[all...]
/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/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/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/native/sun/font/layout/
H A DLEInsertionList.cpp51 : head(NULL), tail(NULL), growAmount(0), append(rightToLeft)
53 tail = (InsertionRecord *) &head;
63 while (head != NULL) {
64 InsertionRecord *record = head;
66 head = head->next;
70 tail = (InsertionRecord *) &head;
103 insertion->next = head;
104 head = insertion;
112 for (InsertionRecord *rec = head; re
[all...]
/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/jdk/test/java/util/LinkedList/
H A DAddAll.java34 List head = Collections.nCopies(7, "deadly sin");
36 List l1 = new ArrayList(head);
37 List l2 = new LinkedList(head);
/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/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/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/hotspot/src/share/vm/memory/
H A DfreeList.cpp38 // of space in the heap. The head and tail are maintained so that
40 // at the tail of the list and removed from the head of the list to
88 assert(head() == NULL || head()->prev() == NULL, "list invariant");
90 Chunk* fc = head();
103 assert(head() == NULL || head()->prev() == NULL, "list invariant");
115 fl->set_head(head()); n--;
116 Chunk* tl = head();
143 assert(head() !
[all...]
/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/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/hotspot/test/compiler/6843752/
H A DTest.java44 Item head = list;
45 if (head == null) {
50 item.next = head;
51 item.prev = head.prev;
52 head.prev.next = item;
53 head.prev = item;
58 Item head = list;
64 if (head == item) {
/openjdk7/jdk/src/share/native/sun/java2d/
H A DShaderList.c57 info->next = programList->head;
63 // insert it at the head of the list
64 programList->head = info;
100 ShaderInfo *info = programList->head;
111 if (info != programList->head) {
113 info->next = programList->head;
114 programList->head = info;
131 ShaderInfo *info = programList->head;
142 programList->head = NULL;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DReadAllStream.java145 private Chunk head, tail; field in class:ReadAllStream.MemoryStream
152 head = tail = new Chunk(buf, 0, len);
193 return (head.buf[curOff++] & 0xff);
201 sz = Math.min(sz, head.len-(curOff-head.off));
202 System.arraycopy(head.buf,curOff,b,off,sz);
209 if (head == null) {
212 if (curOff == head.off+head.len) {
213 head
[all...]
/openjdk7/hotspot/src/share/vm/services/
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/classes/java/util/
H A DArrayDeque.java92 * thus avoiding head and tail wrapping around to equal each
99 * The index of the element at the head of the deque (which is the
103 private transient int head; field in class:ArrayDeque
145 * when head and tail have wrapped around to become equal.
148 assert head == tail;
149 int p = head;
159 head = 0;
171 if (head < tail) {
172 System.arraycopy(elements, head, a, 0, size());
173 } else if (head > tai
[all...]
/openjdk7/langtools/test/tools/javac/unit/util/list/
H A DFromArray.java43 if (s != ss.head)
44 throw new AssertionError("s != ss.head (" + s + ", " + ss.head + ")");
/openjdk7/jdk/src/share/classes/java/awt/
H A DMediaTracker.java180 * The head of the list of <code>Images</code> that is being
187 MediaEntry head; field in class:MediaTracker
225 head = MediaEntry.insert(head,
311 MediaEntry cur = head;
331 MediaEntry cur = head;
351 MediaEntry cur = head;
363 cur = head;
467 MediaEntry cur = head;
529 MediaEntry cur = head;
827 insert(MediaEntry head, MediaEntry me) argument
[all...]
/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/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DFinalizerInfo.java62 * is the number of objects in the queue, and 'head' is the head of the
83 OopField headField = (OopField) k.findField("head", "Ljava/lang/ref/Reference;");
84 Oop head = headField.getValue(queue);
89 * If 'head' is non-NULL then it is the head of a list of References.
90 * We iterate over the list (end of list is when head.next == head)
92 if (head != null) {
93 k = (InstanceKlass) head
[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;

Completed in 1412 milliseconds

123456789