Searched defs:tail (Results 1 - 25 of 58) sorted by relevance

123

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEInsertionList.h175 * The tail of the insertion list.
179 InsertionRecord *tail; member in class:LEInsertionList
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DHeadTail.java38 private Name tail; 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
47 this.tail = tail;
59 return this.tail;
H A DStringHeadTail.java36 private String tail; 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
45 this.tail = tail;
57 return this.tail;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDContainerPattern.java58 private DPattern tail; field in class:DContainerPattern
65 return tail;
95 if(tail==null) {
97 head = tail = child;
99 child.prev = tail;
100 tail.next = child;
102 tail = child;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/client/
H A DClientPipelineHook.java59 * @param tail
66 * The default implementation just returns <tt>tail</tt>, which means
70 public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) { argument
71 return tail;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DServerPipelineHook.java59 * @param tail
66 * The default implementation just returns <tt>tail</tt>, which means
70 public @NotNull Pipe createMonitoringPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) { argument
71 return tail;
85 * @param tail
92 * The default implementation just returns <tt>tail</tt>, which means
96 public @NotNull Pipe createSecurityPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) { argument
97 return tail;
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DChainEnd.java30 CurveLink tail; field in class:ChainEnd
36 this.tail = first;
79 enter.tail.setNext(exit.head);
80 enter.tail = exit.tail;
91 enter.tail.setNext(otherenter.head);
94 otherexit.tail.setNext(enter.head);
95 otherexit.tail = enter.tail;
102 tail
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DArrayQueue.java36 this.tail = 0;
52 this.tail = size;
61 queue[tail] = o;
62 int newtail = (tail + 1) % capacity;
65 tail = newtail;
72 if (head == tail)
92 int diff = tail - head;
101 private int tail; field in class:ArrayQueue
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventQueue.java64 private QueueElement tail = null; field in class:EventQueue
95 tail = newElt;
114 while (tail == null)
116 QueueElement elt = tail;
117 tail = elt.prev;
118 if (tail == null) {
121 tail.next = null;
H A DServiceLocator.java192 int tail = 0;
199 // find the head and tail of the list of records having the same
206 tail = 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
222 int tail) {
223 if (head == tail) {
227 // compute the running sum for records between head and tail
229 for (int i = head; i <= tail;
221 selectHostport(SrvRecord[] srvRecords, int head, int tail) argument
[all...]
/openjdk7/jdk/src/share/instrument/
H A DJarFacade.c43 jarAttribute* tail; member in struct:__anon544
91 context->tail->next = attribute;
93 context->tail = attribute;
/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.h42 CacheCellInfo *tail; member in struct:__anon796
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbServiceLocator.java203 int tail = 0;
210 // find the head and tail of the list of records having the same
217 tail = 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
233 int tail) {
234 if (head == tail) {
238 // compute the running sum for records between head and tail
240 for (int i = head; i <= tail;
232 selectHostport(SrvRecord[] srvRecords, int head, int tail) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DQueue.java43 QueueElement tail = null; field in class:Queue
57 tail = newElt;
91 while (tail == null) {
94 QueueElement elt = tail;
95 tail = elt.prev;
96 if (tail == null) {
99 tail.next = null;
110 return (tail == null);
135 " tail = "+(tail
[all...]
/openjdk7/langtools/test/tools/javac/generics/odersky/
H A DList.java33 public List<A> tail; field in class:List
35 /** Construct a list given its head and tail.
37 public List(A head, List<A> tail) { argument
38 this.tail = tail;
88 return tail == null;
94 return tail != null;
102 while (l.tail != null) {
103 l = l.tail;
122 else return this.prependList(xs.tail)
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DDataHead.java46 volatile Chunk head, tail; field in class:DataHead
71 if (tail != null) {
72 tail = tail.createNext(this, buf);
74 head = tail = new Chunk(new MemoryData(buf, part.msg.config));
102 head = tail = null;
123 while(tail == null) {
173 while(tail == null) {
174 if (!part.msg.makeProgress() && tail == 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
149 if (tail != null) {
150 tail = tail.createNext(buf, 0, len);
152 head = tail = new Chunk(buf, 0, len);
/openjdk7/jdk/src/share/classes/java/util/
H A DArrayDeque.java92 * thus avoiding head and tail wrapping around to equal each
101 * arbitrary number equal to tail if the deque is empty.
106 * The index at which the next element would be added to the tail
109 private transient int tail; field in class:ArrayDeque
145 * when head and tail have wrapped around to become equal.
148 assert head == tail;
160 tail = n;
171 if (head < tail) {
173 } else if (head > tail) {
176 System.arraycopy(elements, 0, a, headPortionLen, tail);
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentLinkedQueue.java50 * The <em>tail</em> of the queue is that element that has been on the
52 * are inserted at the tail of the queue, and the queue retrieval
123 * reached in O(1) time from tail, but tail is merely an
147 * Both head and tail are permitted to lag. In fact, failing to
151 * that is, we update head/tail when the current pointer appears
154 * Since head and tail are updated concurrently and independently,
155 * it is possible for tail to lag behind head (why not)?
170 * Both head and tail may or may not point to a Node with a
172 * be null. Upon creation, both head and tail refe
248 private transient volatile Node<E> tail; field in class:ConcurrentLinkedQueue
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.hpp295 HeapRegion* tail() { return _tail; } function in class:HeapRegionLinkedList
312 // It adds hr to the list as the new tail. The region should not be
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableSpace.cpp78 MemRegion head, tail; local
82 tail = MemRegion(mr.end(), mr.end());
107 tail = MemRegion(intersection.end(), intersection.end() + tail_size);
109 assert(mr.contains(head) && mr.contains(tail), "Sanity");
113 numa_setup_pages(tail, clear_space);
118 pretouch_pages(tail);
122 set_last_setup_region(MemRegion(head.start(), tail.end()));
H A DparGCAllocBuffer.hpp51 char tail[32]; member in class:ParGCAllocBuffer
/openjdk7/hotspot/src/share/vm/memory/
H A DfreeList.hpp33 // maintains a the structure of the list (head, tail, etc.) plus
94 // Reset the head, tail, hint, and count of a free list.
126 Chunk* tail() const { function in class:VALUE_OBJ_CLASS_SPEC
135 // Set the tail of the list and set the next field of non-null
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp73 // head and tail of enqueue operations list
81 static Win32AttachOperation* tail() { return _tail; } function in class:Win32AttachListener
82 static void set_tail(Win32AttachOperation* tail) { _tail = tail; } argument
208 // add to end (tail) of list
210 if (tail() == NULL) {
213 tail()->set_next(op);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DContainerElement.java68 private Content tail; field in class:ContainerElement
89 tail = startTag;
100 return tail==null;
240 * Appends this child object to the tail.
243 tail.setNext(document,child);
244 tail = child;
262 tail = null;
359 tail = child.endTag;

Completed in 96 milliseconds

123