Searched refs:tail (Results 101 - 125 of 184) sorted by relevance

12345678

/openjdk10/jdk/test/com/sun/jdi/
H A DShellScaffold.sh742 tail -$nlines $jdbOutFile | $grep -s "$1" > $devnull 2>&1
748 tail -2 $jdbOutFile | $grep -s "The application exited" > $devnull 2>&1
758 tail -$nlines $jdbOutFile | $grep -s "$1" > $devnull 2>&1
1037 theCmd="tail -$3"
1052 if [ `tail -1 "$theFile" | wc -l | sed -e 's@ @@g'` = 0 ] ; then
1084 theCmd="tail -$3"
1098 if [ `tail -1 "$theFile" | wc -l | sed -e 's@ @@g'` = 0 ] ; then
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DLower.java292 for (List<VarSymbol> l = fvs; l.nonEmpty(); l = l.tail)
301 for (List<VarSymbol> l = fvs; l.nonEmpty(); l = l.tail) {
772 for (List<ClassSymbol> l = accessConstrTags; l.nonEmpty(); l = l.tail) {
802 oldMethodType.getParameterTypes().tail
952 argtypes = operator.type.getParameterTypes().tail;
1295 args = make.Idents(md.params.tail);
1327 for (List<JCVariableDecl> l = md.params; l.nonEmpty(); l = l.tail)
1330 for (List<JCExpression> l = md.thrown; l.nonEmpty(); l = l.tail)
1354 make.Idents(md.params.reverse().tail.reverse())))));
1403 for (List<VarSymbol> l = freevars; l.nonEmpty(); l = l.tail) {
[all...]
H A DLambdaToMethod.java875 samPTypes = samPTypes.tail;
876 descPTypes = descPTypes.tail;
913 implPTypes = implPTypes.tail;
914 samPTypes = samPTypes.tail;
915 descPTypes = descPTypes.tail;
1048 for (Type t : tree.targets.tail) {
1572 frameStack2 = frameStack2.tail;
1575 JCClassDecl cdecl = (JCClassDecl)frameStack2.tail.head.tree;
1579 JCClassDecl cdecl2 = (JCClassDecl)frameStack2.tail.head.tree;
1591 frameStack2 = frameStack2.tail;
[all...]
H A DTypeEnter.java518 typarams = typarams.tail)
866 todo = todo.tail;
1072 argTypesList = argTypesList.tail;
1082 baseInitParams = baseInitParams.tail;
1083 argTypesList = argTypesList.tail;
1111 params = params.tail;
1136 for (List<JCAnnotation> al = annotations; !al.isEmpty(); al = al.tail) {
H A DInferenceContext.java306 undetvars = undetvars.tail;
307 saved_undet = saved_undet.tail;
311 undetvars = undetvars.tail;
H A DResolve.java581 for (; bounds.nonEmpty(); bounds = bounds.tail) {
585 formals = formals.tail;
586 actuals = actuals.tail;
597 boolean instNeeded = tvars.tail != null; /*inlined: tvars.nonEmpty()*/
599 l.tail != null/*inlined: l.nonEmpty()*/ && !instNeeded;
600 l = l.tail) {
776 argtypes = argtypes.tail;
777 formals = formals.tail;
778 trees = trees != null ? trees.tail : trees;
792 argtypes = argtypes.tail;
[all...]
H A DInfer.java551 formals = formals.tail;
676 paramTypes = paramTypes.tail;
685 actualTypeargs = actualTypeargs.tail;
916 else if (hibounds.tail.isEmpty())
961 allParamsSuperBound1 = allParamsSuperBound1.tail;
962 allParamsSuperBound2 = allParamsSuperBound2.tail;
1455 Type owntype = lobounds.tail.tail == null ? lobounds.head : infer.types.lub(lobounds);
1498 Type owntype = hibounds.tail.tail
[all...]
/openjdk10/hotspot/src/share/vm/gc/shared/
H A Dplab.hpp48 char tail[32]; member in class:PLAB
/openjdk10/hotspot/src/share/vm/gc/g1/
H A DsparsePRT.hpp307 // pause. It creates a list of expanded tables whose head / tail
347 SparsePRT* tail() { return _tail; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DJavacMessages.java192 for (List<ResourceBundle> l = bundles; l.nonEmpty() && msg == null; l = l.tail) {
H A DSharedNameTable.java49 freelist = freelist.tail;
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DExecutableMemberDocImpl.java249 types = types.tail;
/openjdk10/make/scripts/
H A Dupdate_copyright_year.sh57 lastLineCount=`tail -1 "$1" | wc -l`
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/schedule/
H A DSchedulePhase.java637 private NodeEntry tail; field in class:SchedulePhase.Instance.MicroBlock
649 if (tail == null) {
650 tail = head = newTail;
652 tail.next = newTail;
653 tail = newTail;
687 if (tail != null) {
688 tail.next = newBlock.head;
690 head = tail = null;
/openjdk10/hotspot/test/gc/arguments/
H A DTestMaxHeapSizeTools.java144 String tail = source.substring(start).split(" ")[0];
145 return Long.parseLong(tail);
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/logger/
H A DBootstrapLogger.java194 // new events are added at the tail
195 static LogEvent head, tail; field in class:BootstrapLogger.BootstrapExecutors
202 if (tail == null) {
203 head = tail = event;
205 tail.next = event;
206 tail = event;
216 head = tail = null;
/openjdk10/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
H A DeventHelper.c117 HelperCommand *tail; member in struct:__anon1350
182 queue->tail->next = command;
184 queue->tail = command;
235 if (queue->tail == command) {
236 queue->tail = NULL;
723 commandQueue.tail = NULL;
/openjdk10/jdk/src/jdk.pack/share/native/common-unpack/
H A Dcoding.cpp610 coding_method* tail = U_NEW(coding_method, 1); local
611 CHECK_NULL(tail);
612 tail->u = u;
620 self->next = tail;
626 tail->init(band_rp, band_limit, NO_META, mode, defc, N2, valueSink);
628 tail->init(band_rp, band_limit, meta_rp, mode, defc, N2, valueSink);
630 // Note: The preceding calls to init should be tail-recursive.
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DType.java426 List<Type> baseTypes = baseTypes(ts.tail);
427 if (t != ts.head || baseTypes != ts.tail)
476 for (List<Type> l = ts.tail; l.nonEmpty(); l = l.tail)
511 while (args.tail.nonEmpty()) {
513 args = args.tail;
555 for (List<Type> l = ts; l.nonEmpty(); l = l.tail)
614 l.tail != null /*inlined: l.nonEmpty()*/;
615 l = l.tail)
1035 for (List<Type> is=interfaces_field; is.nonEmpty(); is = is.tail) {
[all...]
/openjdk10/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp1903 st->print(" %d<-%d", lp->head()->pre_order(),lp->tail()->pre_order());
2251 // Clone lp's head and replace tail's successors with clone.
2276 Block* tail = lp->tail(); local
2279 tty->print(" for predecessor "); tail->print_value_on(tty);
2288 // Insert clone after (orig) tail in reverse post order
2289 clone->set_rpo_next(tail->rpo_next());
2290 tail->set_rpo_next(clone);
2292 // tail->head becomes tail
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java666 for (List<JCVariableDecl> l = params; l.nonEmpty(); l = l.tail)
796 for (List<Type> l = ts; l.nonEmpty(); l = l.tail)
819 for (List<Attribute.Compound> i = attributes; i.nonEmpty(); i=i.tail) {
886 for (List<Pair<Symbol.MethodSymbol,Attribute>> values = compound.values; values.nonEmpty(); values=values.tail) {
895 for (List<Pair<Symbol.MethodSymbol,Attribute>> values = compound.values; values.nonEmpty(); values=values.tail) {
967 for (List<Type> l = typarams; l.nonEmpty(); l = l.tail)
989 for (List<Type> l = argtypes; l.nonEmpty(); l = l.tail)
/openjdk10/jdk/src/java.base/windows/native/libnet/
H A DNetworkInterface.c327 * Put the interface at tail of list as GetIfTable(,,TRUE) is
334 netif *tail = netifP; local
335 while (tail->next != NULL) {
336 tail = tail->next;
338 tail->next = curr;
/openjdk10/jdk/src/java.base/share/classes/java/util/concurrent/
H A DLinkedTransferQueue.java58 * producer. The <em>tail</em> of the queue is that element that has
117 * (unmatched) queue node (or null if empty); and "tail" that
122 * head tail
129 * tail pointers. This has led to the development of
164 * updates on head/tail fields.
167 * never versus always updating queue (head and tail) pointers.
174 * head tail
181 * similarly for "tail") is an empirical matter. We have found
188 * virtue of only sometimes updating head or tail pointers when
213 * known first unmatched node, and similarly for tail
566 private transient volatile Node tail; field in class:LinkedTransferQueue
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/module/
H A DModulePath.java490 // attempt to parse the tail as a version string
492 String tail = name.substring(start + 1);
493 ModuleDescriptor.Version.parse(tail);
494 vs = tail;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/axes/
H A DWalkerFactory.java860 StepPattern tail = step;
936 tail = pat;
943 XNumber score = tail.getStaticScore();
944 tail.setRelativePathPattern(selfPattern);
945 tail.setStaticScore(score);
968 * @param tail The step that is the first step analyzed, but the last
969 * step in the relative match linked list, i.e. the tail.
981 int analysis, StepPattern tail, StepPattern head)
979 createDefaultStepPattern( Compiler compiler, int opPos, MatchPatternIterator mpi, int analysis, StepPattern tail, StepPattern head) argument

Completed in 408 milliseconds

12345678