Searched refs:tail (Results 26 - 50 of 158) sorted by relevance

1234567

/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/sun/tools/java/
H A DEnvironment.java106 Identifier tail = nm.getFlatName();
108 while (tail.isQualified()) {
109 tail = tail.getTail();
110 Identifier head = tail.getHead();
111 //System.out.println("CLASS: " + c + " HEAD: " + head + " TAIL: " + tail);
346 Identifier tail = nm.getFlatName();
348 while (tail.isQualified()) {
349 tail = tail
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DidealGraphPrinter.cpp171 tail(TOP_ELEMENT);
229 void IdealGraphPrinter::tail(const char *name) { function in class:IdealGraphPrinter
230 _xml->tail(name);
249 tail(PROPERTY_ELEMENT);
271 tail(BYTECODES_ELEMENT);
280 tail(INLINE_ELEMENT);
282 tail(METHOD_ELEMENT);
334 tail(PROPERTIES_ELEMENT);
353 tail(GROUP_ELEMENT);
625 tail(PROPERTIES_ELEMEN
[all...]
/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()));
/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.c79 gcinfo->tail = NULL;
128 x = cache->tail->x + cache->cellWidth;
129 y = cache->tail->y;
165 // update existing tail cell
166 cache->tail->next = cellinfo;
170 cache->tail = cellinfo;
216 // tail pointers
218 cache->tail->next = current;
219 cache->tail = current;
H A DAccelGlyphCache.h42 CacheCellInfo *tail; member in struct:__anon796
/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/test/sun/management/jmxremote/bootstrap/
H A DLocalManagementTest.sh55 port=`tail -1 ${outputfile}`
H A DCustomLauncherTest.sh141 port=`tail -1 ${outputfile}`
/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DDuplicateAttributeVerifier.java83 final Entry tail = _poolTail;
90 _poolCurrent = tail.poolNext;
/openjdk7/jdk/test/com/sun/jdi/
H A DProcessAttachTest.sh81 pid=`ps -l -p ${startpid} | tail -1 | awk '{print $4;}'`
97 out=`tail -1 ${OUTPUTFILE}`
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dzip.h54 bytes& head, bytes& tail);
82 bool deflate_bytes(bytes& head, bytes& tail);
H A Dzip.cpp51 inline bool jar::deflate_bytes(bytes& head, bytes& tail) { argument
264 bytes& head, bytes& tail) {
265 int len = (int)(head.len + tail.len);
271 if (tail.len != 0)
272 crc = get_crc32(crc, (uchar *)tail.ptr, (uint)tail.len);
277 if (deflate_bytes(head, tail) == false) {
291 write_data(tail);
358 bool jar::deflate_bytes(bytes& head, bytes& tail) { argument
359 int len = (int)(head.len + tail
262 addJarEntry(const char* fname, bool deflate_hint, int modtime, bytes& head, bytes& tail) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java194 parms = parms.tail;
195 args = args.tail;
243 l.nonEmpty(); l = l.tail)
254 for (List<Type> iter = opens; iter.nonEmpty(); iter = iter.tail) {
532 for (List<Type> l = ts; l.nonEmpty(); l = l.tail)
543 while (ts.tail != null && ss.tail != null
546 ts = ts.tail;
547 ss = ss.tail;
549 return ts.tail
[all...]
/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;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DNamingContextImpl.java633 // Compute tail
634 NameComponent[] tail = new NameComponent[n.length - 1];
635 System.arraycopy(n,1,tail,0,n.length-1);
643 context.rebind(tail,obj);
645 context.bind(tail,obj);
655 context.rebind_context(tail,objContext);
657 context.bind_context(tail,objContext);
726 NameComponent[] tail = new NameComponent[n.length -1];
727 System.arraycopy(n,1,tail,0,n.length-1);
735 return doResolve(((NamingContextDataStore)servant), tail) ;
[all...]
/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/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DDriver.java413 byte[] tail = new byte[1000];
416 long skiplen = Math.max(0, filelen - tail.length);
419 in.read(tail);
420 for (int i = tail.length-4; i >= 0; i--) {
421 if (tail[i+0] == 'P' && tail[i+1] == 'K' &&
422 tail[i+2] == 5 && tail[i+3] == 6) {
425 if (i < tail.length)
426 return new String(tail,
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DAtomicContext.java84 * tail: the rest of the unused name.
572 String tail = ht.getTail();
577 head + ", " + tail + "}");
591 cont.setContinue(headCtx, head, this, (tail == null ? "" : tail));
593 cont.appendRemainingComponent(tail);
595 e.appendRemainingComponent(tail);
620 String tail = ht.getTail();
628 if (!isEmpty(tail)) {
633 cont.setContinue(headCtx, head, this, tail);
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DAbstractQueuedLongSynchronizer.java97 * tail. To dequeue, you just set the head field.
100 * head | | <---- | | <---- | | tail
105 * operation on "tail", so there is a simple atomic point of
126 * updated "tail" when a node's successor appears to be null.
141 * is constructed and head and tail pointers are set upon first
232 * to be null, we can scan prev's from the tail to
305 private transient volatile Node tail; field in class:AbstractQueuedLongSynchronizer
362 Node t = tail;
365 tail = head;
385 Node pred = tail;
[all...]
H A DAbstractQueuedSynchronizer.java320 * tail. To dequeue, you just set the head field.
323 * head | | <---- | | <---- | | tail
328 * operation on "tail", so there is a simple atomic point of
349 * updated "tail" when a node's successor appears to be null.
364 * is constructed and head and tail pointers are set upon first
455 * to be null, we can scan prev's from the tail to
528 private transient volatile Node tail; field in class:AbstractQueuedSynchronizer
585 Node t = tail;
588 tail = head;
608 Node pred = tail;
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.cpp113 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
172 // Removing chunk at tail of list
213 assert(retTL->tail() == NULL || retTL->tail()->next() == NULL,
222 assert(tail() != NULL, "The tree list is embedded in the first chunk");
226 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
228 Chunk* fc = tail();
232 assert(!tail() || siz
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DClassTreeTool.java223 String tail = className.substring(pos + 1);
225 child.addClass(tail, refTy);
261 String tail = className.substring(pos + 1);
263 child.removeClass(tail);
/openjdk7/jdk/test/sun/tools/common/
H A DApplicationSetup.sh57 out=`tail -1 "$appOutput"`

Completed in 81 milliseconds

1234567