Searched refs:tail (Results 1 - 25 of 184) sorted by relevance

12345678

/openjdk10/jdk/src/java.naming/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;
/openjdk10/jaxws/src/jdk.xml.bind/share/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;
/openjdk10/jdk/src/java.desktop/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...]
/openjdk10/jdk/test/java/util/LinkedList/
H A DAddAll.java35 List tail = Collections.nCopies(4, "basic food group");
38 l1.addAll(tail);
39 l2.addAll(tail);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/
H A DServerPipelineHook.java59 * @param tail
66 * The default implementation just returns {@code tail}, 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 {@code tail}, which means
96 public @NotNull Pipe createSecurityPipe(ServerPipeAssemblerContext ctxt, @NotNull Pipe tail) { argument
97 return tail;
/openjdk10/jdk/src/java.management/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
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/client/
H A DClientPipelineHook.java59 * @param tail
66 * The default implementation just returns {@code tail}, which means
70 public @NotNull Pipe createSecurityPipe(ClientPipeAssemblerContext ctxt, @NotNull Pipe tail) { argument
71 return tail;
/openjdk10/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...]
/openjdk10/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
92 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
100 } else { // removed tail of list
107 assert(tail() == NULL || tail()->next() == NULL, "list invariant");
134 // Now we can fix up the tail.
150 assert(tail() == NULL || tail()
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DLEInsertionList.cpp51 : head(NULL), tail(NULL), growAmount(0), append(rightToLeft)
53 tail = (InsertionRecord *) &head;
70 tail = (InsertionRecord *) &head;
99 tail->next = insertion;
100 tail = insertion;
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DList.java45 * <p>Lists are always trailed by a sentinel element, whose head and tail
63 public List<A> tail; field in class:List
65 /** Construct a list given its head and tail.
67 List(A head, List<A> tail) { argument
68 this.tail = tail;
80 public List<Object> setTail(List<Object> tail) {
194 return tail == null;
201 return tail != null;
210 while (l.tail !
221 setTail(List<A> tail) argument
[all...]
H A DListBuffer.java108 while ((orig = orig.tail).nonEmpty()) {
109 last.tail = List.of(orig.head);
110 last = last.tail;
131 last.tail = newLast;
145 xs = xs.tail;
198 elems = elems.tail;
217 elems = elems.tail;
/openjdk10/jdk/test/com/sun/crypto/provider/Mac/
H A DMacSameTest.java80 byte[] tail = new byte[plain.length - OFFSET];
81 System.arraycopy(plain, OFFSET, tail, 0, tail.length);
94 byte[] result2 = mac.doFinal(tail);
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DEventQueue.java63 private QueueElement tail = null; field in class:EventQueue
94 tail = newElt;
113 while (tail == null)
115 QueueElement elt = tail;
116 tail = elt.prev;
117 if (tail == null) {
120 tail.next = null;
/openjdk10/jaxws/src/java.xml.bind/share/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));
106 head = tail = null;
128 while(tail == null) {
179 while(tail == null) {
180 if (!part.msg.makeProgress() && tail == null) {
/openjdk10/hotspot/src/share/vm/runtime/
H A Darguments.cpp121 // Check if head of 'option' matches 'name', and sets 'tail' to the remaining
124 const char** tail) {
127 *tail = option->optionString + len;
134 // Check if 'option' matches 'name'. No "tail" is allowed.
136 const char* tail = NULL; local
137 bool result = match_option(option, name, &tail);
138 if (tail != NULL && *tail == '\0') {
146 // If tail_allowed is true, then the tail must begin with a colon; otherwise,
148 static bool match_option(const JavaVMOption* option, const char** names, const char** tail, argument
123 match_option(const JavaVMOption *option, const char* name, const char** tail) argument
222 const char* tail; local
2765 parse_xss(const JavaVMOption* option, const char* tail, intx* out_ThreadStackSize) argument
[all...]
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DUtil.java41 char tail = macro.charAt(i+1);
43 if('0'<=ch2 && ch2<='9' && tail==':') {
/openjdk10/jdk/test/sun/security/pkcs11/Mac/
H A DMacSameTest.java108 byte[] tail = new byte[plain.length - OFFSET];
109 System.arraycopy(plain, OFFSET, tail, 0, tail.length);
122 byte[] result2 = mac.doFinal(tail);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DApplyCaseFoldArg.java30 ConsAltNode tail; field in class:ApplyCaseFoldArg
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DArrayDeque.java108 * The array always has at least one null slot (at tail).
115 * arbitrary number 0 <= head < elements.length equal to tail if
121 * The index at which the next element would be added to the tail
123 * elements[tail] is always null.
125 transient int tail; field in class:ArrayDeque
150 // Exceptionally, here tail == head needs to be disambiguated
151 if (tail < head || (tail == head && es[head] != null)) {
289 if (head == tail)
305 es[tail]
[all...]
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/
H A DHeaderTable.java364 // How many elements ago 'x' was the tail of the queue?
444 // tail
451 int tail, head, size, capacity; field in class:HeaderTable.CircularBuffer
474 E elem = (E) elements[tail];
475 elements[tail] = null;
476 tail = (tail + 1) % capacity;
488 int idx = (tail + (size - index - 1)) % capacity;
501 if (tail < head || size == 0) {
502 System.arraycopy(elements, tail, newElement
[all...]
/openjdk10/jdk/src/java.instrument/share/native/libinstrument/
H A DJarFacade.c35 jarAttribute* tail; member in struct:__anon1303
83 context->tail->next = attribute;
85 context->tail = attribute;
/openjdk10/jdk/src/java.desktop/share/native/common/awt/debug/
H A Ddebug_mem.c147 static void DMem_VerifyTail(MemoryBlockTail * tail) { argument
148 DASSERTMSG( DMem_ClientCheckPtr(tail, sizeof(MemoryBlockTail)), "Tail corruption, invalid pointer");
149 DASSERTMSG( DMem_VerifyGuardArea(tail->guard), "Tail corruption, possible overwrite" );
154 MemoryBlockTail * tail; local
166 /* check the tail of the block for overruns */
167 tail = (MemoryBlockTail *) ( (byte_t *)memptr + header->size );
168 DMem_VerifyTail(tail);
205 MemoryBlockTail * tail; local
246 tail = (MemoryBlockTail *)(memptr + size);
247 memset(tail
[all...]
/openjdk10/jdk/test/com/sun/crypto/provider/Cipher/PBE/
H A DPBMacDoFinalVsUpdate.java112 // Form tail - is one of the three pieces
113 byte[] tail = new byte[plain.length - OFFSET];
114 System.arraycopy(plain, OFFSET, tail, 0, tail.length);
132 byte[] result2 = theMac.doFinal(tail);

Completed in 167 milliseconds

12345678