Searched refs:tail (Results 51 - 75 of 158) sorted by relevance

1234567

/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c61 * Parse -javaagent tail, of the form name[=options], into name
66 parseArgumentTail(char* tail, char** name, char** options) { argument
70 pos = strchr(tail, '=');
71 len = (pos == NULL) ? (int)strlen(tail) : (int)(pos - tail);
77 memcpy(*name, tail, len);
135 * The argument tail string provided to Agent_OnLoad will be of form
136 * <jarfile>[=<options>]. The tail string is split into the jarfile and
144 Agent_OnLoad(JavaVM *vm, char *tail, void * reserved) { argument
162 if (parseArgumentTail(tail,
[all...]
/openjdk7/jdk/test/sun/security/util/Resources/
H A DNewResourcesNames.java300 StringBuilder tail = new StringBuilder();
320 tail = new StringBuilder();
321 tail.append('"');
326 tail.append((char)n);
341 fos.write(tail.toString().getBytes());
365 * b. All others in a row goes to a single ".", even if at head or tail
425 // tail "." only added when there are alphanumerics
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DType.java146 List<Type> tail1 = map(ts.tail, f);
148 if (tail1 != ts.tail || t != ts.head)
185 List<Type> baseTypes = baseTypes(ts.tail);
186 if (t != ts.head || baseTypes != ts.tail)
213 for (List<Type> l = ts.tail; l.nonEmpty(); l = l.tail)
267 while (args.tail.nonEmpty()) {
269 args = args.tail;
307 for (List<Type> l = ts; l.nonEmpty(); l = l.tail)
362 l.tail !
[all...]
H A DPrinter.java158 seenCaptured = seenCaptured.tail;
251 for (List<Type> is = t.interfaces_field; is.nonEmpty(); is = is.tail) {
290 while (args.tail.nonEmpty()) {
292 args = args.tail;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java212 else if (hibounds.tail.isEmpty())
267 else if (lobounds.tail.isEmpty())
282 else if (hibounds.tail.isEmpty())
308 for (List<Type> l = undetvars; l.nonEmpty(); l = l.tail) {
329 for (List<Type> l = undetvars; l.nonEmpty(); l = l.tail)
361 formals = formals.tail;
408 formals = formals.tail;
409 actuals = actuals.tail;
410 actualsNoCapture = actualsNoCapture.tail;
431 actuals = actuals.tail;
[all...]
H A DFlow.java454 for (; exits.nonEmpty(); exits = exits.tail) {
473 for (; exits.nonEmpty(); exits = exits.tail) {
541 for (List<? extends JCStatement> l = trees; l.nonEmpty(); l = l.tail)
559 for (List<? extends JCExpression> l = trees; l.nonEmpty(); l = l.tail)
617 for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
629 for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
641 for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
656 for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
668 for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
683 for (List<JCTree> l = tree.defs; l.nonEmpty(); l = l.tail) {
[all...]
H A DTransTypes.java177 while (parameters.tail.nonEmpty()) {
179 args = args.tail;
180 parameters = parameters.tail;
187 args = args.tail;
390 for (List<Type> l = types.interfaces(i.type); l.nonEmpty(); l = l.tail)
406 for (List<Type> l = types.interfaces(origin.type); l.nonEmpty(); l = l.tail)
593 argtypes = argtypes.tail.tail;
645 tree.rhs = translate(tree.rhs, tree.operator.type.getParameterTypes().tail.head);
657 tree.rhs = translate(tree.rhs, tree.operator.type.getParameterTypes().tail
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeTranslator.java69 for (List<T> l = trees; l.nonEmpty(); l = l.tail)
77 for (List<JCVariableDecl> l = trees; l.nonEmpty(); l = l.tail)
85 for (List<JCTypeParameter> l = trees; l.nonEmpty(); l = l.tail)
93 for (List<JCCase> l = trees; l.nonEmpty(); l = l.tail)
101 for (List<JCCatch> l = trees; l.nonEmpty(); l = l.tail)
109 for (List<JCAnnotation> l = trees; l.nonEmpty(); l = l.tail)
H A DPretty.java187 for (List<T> l = trees.tail; l.nonEmpty(); l = l.tail) {
203 for (List<? extends JCTree> l = trees; l.nonEmpty(); l = l.tail) {
220 for (List<JCAnnotation> l = trees; l.nonEmpty(); l = l.tail) {
286 for (List<JCTree> l = stats; l.nonEmpty(); l = l.tail) {
299 for (List<JCTree> l = stats; l.nonEmpty(); l = l.tail) {
335 l = l.tail) {
584 for (List<JCStatement> l = tree.init.tail; l.nonEmpty(); l = l.tail) {
699 for (List<JCCatch> l = tree.catchers; l.nonEmpty(); l = l.tail) {
[all...]
/openjdk7/langtools/test/tools/javac/varargs/7042566/
H A DT7042566.java302 formals = formals.tail.isEmpty() ?
304 formals.tail;
317 formals = formals.tail.isEmpty() ?
319 formals.tail;
320 actuals = actuals.tail.isEmpty() ?
322 actuals.tail;
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp106 // Check if head of 'option' matches 'name', and sets 'tail' remaining part of option string
109 const char** tail) {
112 *tail = option->optionString + len;
132 const char* tail; local
134 if (match_option(option, "-Dsun.java.launcher=", &tail)) {
135 process_java_launcher_argument(tail, option->extraInfo);
138 if (match_option(option, "-Dsun.java.launcher.pid=", &tail)) {
139 _sun_java_launcher_pid = atoi(tail);
2029 // If tail_allowed is true, then the tail must begin with a colon; otherwise,
2031 static bool match_option(const JavaVMOption* option, const char** names, const char** tail, argument
108 match_option(const JavaVMOption *option, const char* name, const char** tail) argument
2136 const char* tail; local
2904 const char* tail; local
2998 const char* tail; local
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DSynchronousQueue.java144 * cancelled. But if it may be pinned as the current tail, it must
600 transient volatile QNode tail; field in class:SynchronousQueue.TransferQueue
611 tail = h;
625 * Tries to cas nt as new tail.
628 if (tail == t)
657 * advance head and tail on behalf of other stalled/slow
661 * seeing uninitialized head or tail values. This never
673 QNode t = tail;
680 if (t != tail) // inconsistent read
682 if (tn != null) { // lagging tail
[all...]
H A DConcurrentLinkedDeque.java149 * The deque object has two node references, "head" and "tail".
150 * The head and tail are only approximations to the first and last
152 * following prev pointers from head; likewise for tail. However,
153 * it is permissible for head and tail to be referring to deleted
185 * head or tail.
204 * the nodes pointed at by head/tail never get gc-unlinked, since
205 * head/tail are needed to get "back on track" by other nodes that
228 * restart traversal from tail.
262 * - head may not be reachable from the first or last node, or from tail
270 * - the last node is always O(1) reachable from tail vi
278 private transient volatile Node<E> tail; field in class:ConcurrentLinkedDeque
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DidealGraphPrinter.hpp117 void tail(const char *name);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DThreadTreeTool.java272 List<String> tail = threadPath.subList(1, size);
274 child.addThread(tail, thread);
317 List<String> tail = threadPath.subList(1, size);
319 child.removeThread(tail, thread);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dxmlstream.hpp53 // To write markup, use special calls elem, head/tail, etc.
71 MarkupState _markup_state; // where in the elem/head/tail dance
120 void done(const char* format, ...); // xxx_done event, plus tail
122 void tail(const char* kind);
164 tail("X"); </X> \n
171 tail("X"); </X> \n
H A Dostream.cpp631 xs->tail("name");
633 xs->tail("release");
635 xs->tail("info");
636 xs->tail("vm_version");
642 xs->tail("flags");
647 xs->tail("args");
651 xs->tail("command");
655 xs->tail("launcher");
664 xs->tail("properties");
666 xs->tail("vm_argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DNamingContextImpl.java597 // Compute tail
598 NameComponent[] tail = new NameComponent[n.length - 1];
599 System.arraycopy(n,1,tail,0,n.length-1);
607 context.rebind(tail,obj);
609 context.bind(tail,obj);
618 context.rebind_context(tail,objContext);
620 context.bind_context(tail,objContext);
686 NameComponent[] tail = new NameComponent[n.length -1];
687 System.arraycopy(n,1,tail,0,n.length-1);
690 return context.resolve(tail);
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvFill.java89 String tail = trimmed.substring(index2+1).trim();
90 if (!tail.equals("{")) {
92 tail + "'");
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java1981 // the "tail.next" of each atom goes to branchConn
1990 // replace the "end" with "branchConn" at its tail.next
2009 Node tail = null;
2025 tail.next = node;
2027 tail = root;
2104 head = tail = node;
2106 tail.next = node;
2107 tail = node;
2113 tail.next = end;
2114 root = tail; //doubl
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultMutableTreeNode.java1160 return myParent.getNextLeaf(); // tail recursion
1195 return myParent.getPreviousLeaf(); // tail recursion
1402 QNode tail; field in class:DefaultMutableTreeNode.BreadthFirstEnumeration.Queue
1415 head = tail = new QNode(anObject, null);
1417 tail.next = new QNode(anObject, null);
1418 tail = tail.next;
1431 tail = null;
/openjdk7/langtools/test/tools/javac/treeannotests/
H A DTestProcessor.java189 for (List<? extends JCAnnotation> l = annos; l.nonEmpty(); l = l.tail) {
241 for (List<? extends JCTree> l = list.tail; l.nonEmpty(); l = l.tail) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixups.java48 int tail; // desc locating last reloc field in class:Fixups
338 head = tail = thisDesc;
340 int prevDesc = tail;
341 // Store new desc in previous tail.
349 tail = thisDesc;
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp103 static SolarisAttachOperation* tail() { return _tail; } function in class:SolarisAttachListener
104 static void set_tail(SolarisAttachOperation* tail) { _tail = tail; } argument
490 // enqueue at tail
495 tail()->set_next(op);
/openjdk7/jdk/test/com/sun/jdi/
H A DShellScaffold.sh719 tail -$nlines $jdbOutFile | $grep -s "$1" > $devnull 2>&1
725 tail -2 $jdbOutFile | $grep -s "The application exited" > $devnull 2>&1
733 tail -$nlines $jdbOutFile | $grep -s "$1" > $devnull 2>&1
968 theCmd="tail -$3"
983 if [ `tail -1 "$theFile" | wc -l | sed -e 's@ @@g'` = 0 ] ; then

Completed in 112 milliseconds

1234567