Searched defs:its (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/java/util/Deque/
H A DChorusLine.java2 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
154 Deque<Iterator<Integer>> its = new ArrayDeque<Iterator<Integer>>();
156 its.addLast(deq.iterator());
157 equal(its);
165 private static void equal(Deque<Iterator<Integer>> its) { argument
166 Iterator<Integer> it0 = its.remove();
169 for (Iterator<Integer> it : its)
172 for (Iterator<Integer> it : its) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dmutex.cpp3 * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
228 // push the no-longer-needed ParkEvent back onto its stack.
296 static int Stall (int its) { argument
300 while (--its >= 0) {
760 // unlink its ParkEvent from WaitSet. Thus the need for WaitLock.
768 // there would be no WaitLock. A thread in in wait() would enqueue its WaitEvent
H A Dsynchronizer.cpp2 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
480 int its = 0 ; local
497 ++its ;
498 if (its > 10000 || !os::is_MP()) {
499 if (its & 1) {
1029 // initialize the linked list, each monitor points to its next
1246 // multiple objectmonitors en-mass from the global free list to its local free list.
1619 // called jni_monitorenter() during its lifetime.
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java2 * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
54 * This code and its internal interfaces are subject to change or
377 * its enclosing classes, or as a class defined in its enclosing scope.
378 * return true if class is unique in its enclosing scope.
2232 void checkNotRepeated(DiagnosticPosition pos, Type it, Set<Type> its) { argument
2233 if (its.contains(it))
2236 its.add(it);
2434 // repeated values in its value member

Completed in 39 milliseconds