Searched defs:List (Results 1 - 19 of 19) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dpark.cpp75 ParkEvent * List = ev->FreeNext ; local
76 if (List == NULL) break ;
79 guarantee (List != NULL, "invariant") ;
80 ParkEvent * Arv = (ParkEvent *) Atomic::cmpxchg_ptr (List, &FreeList, NULL) ;
88 // 4: Merge Arv into List
89 ParkEvent * Tail = List ;
130 ParkEvent * List = FreeList ; local
131 ev->FreeNext = List ;
132 if (Atomic::cmpxchg_ptr (ev, &FreeList, List) == List) brea
180 Parker * List = p->FreeNext ; local
232 Parker * List = FreeList ; local
[all...]
H A Dmutex.cpp591 ParkEvent * List = _EntryList ; local
592 if (List != NULL) {
597 assert (List == _EntryList, "invariant") ;
598 ParkEvent * const w = List ;
653 _EntryList = List = (ParkEvent *)(cxq & ~_LBIT) ;
654 assert (List != NULL, "invariant") ;
H A Dsynchronizer.cpp1129 ObjectMonitor * List = Self->omFreeList ; // Null-terminated SLL local
1133 if (List != NULL) {
1135 for (s = List ; s != NULL ; s = s->FreeNext) {
1143 guarantee (Tail != NULL && List != NULL, "invariant") ;
1165 gFreeList = List ;
H A DobjectMonitor.cpp284 // * An interesting alternative is to encode cxq as (List,LockByte) where
1689 ObjectWaiter * List = _EntryList ; local
1690 if (List != NULL) {
1691 assert (List->_prev == NULL, "invariant") ;
1692 assert (List->TState == ObjectWaiter::TS_ENTER, "invariant") ;
1693 assert (List != iterator, "invariant") ;
1697 if (List == NULL) {
1701 List->_prev = iterator ;
1702 iterator->_next = List ;
1708 if (List
1818 ObjectWaiter * List = _EntryList ; local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DList.java34 public interface List interface in inherits:Annotated,SimpleTypeHost,TypedXmlWriter
40 public List itemType(QName value);
/openjdk7/langtools/test/tools/javac/generics/
H A DCasting.java37 class List<T> { class
43 List<Test> l1 = null;
44 List<Test> l2 = (List<Test>)l1;
H A DExtendedRaw2.java35 interface List<E> { } interface
40 int binarySearch(List<T> list, T key) {
44 int binarySearch(List<T> list, T key, Comparator<T> c) {
54 List records = null;
/openjdk7/jdk/src/windows/native/sun/windows/
H A DGDIHashtable.h47 * GDIHashtable::List class. Designed to store pointers
51 class List { class in class:GDIHashtable
53 List() : m_pHead(NULL) {} function in class:GDIHashtable::List
54 ~List() { clear(); }
68 friend class List;
83 List m_list;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DNamingContextDataStore.java88 void List(int how_many, BindingListHolder bl, BindingIteratorHolder bi) method in interface:NamingContextDataStore
H A DTransientNamingContext.java227 * List the contents of this NamingContext. It creates a new
237 public final void List(int how_many, BindingListHolder bl, method in class:TransientNamingContext
/openjdk7/langtools/test/tools/javac/generics/odersky/
H A DList.java24 class List<A> { class
33 public List<A> tail;
37 public List(A head, List<A> tail) { method in class:List
44 public List() { method in class:List
50 public static <A> List<A> make(A x1) {
51 return new List<A>(x1, new List<A>());
56 public static <A> List<A> make(A x1, A x2) {
57 return new List<
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DList.java42 * The <tt>List</tt> interface places additional stipulations, beyond those
48 * The <tt>List</tt> interface provides four methods for positional (indexed)
56 * The <tt>List</tt> interface provides a special iterator, called a
62 * The <tt>List</tt> interface provides two methods to search for a specified
67 * The <tt>List</tt> interface provides two methods to efficiently insert and
109 public interface List<E> extends Collection<E> { interface in inherits:Collection
220 * restrictions on the type of elements that may be added. List
398 * different implementations of the <tt>List</tt> interface.
535 // List Iterators
599 List<
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRawMonitor.cpp350 void * List = _EntryList ; local
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java39 * lists via ListBuffers. List is the main container class in
51 public class List<A> extends AbstractCollection<A> implements java.util.List<A> { class in inherits:AbstractCollection,java.util.List
61 public List<A> tail;
65 List(A head, List<A> tail) { method in class:List
73 public static <A> List<A> nil() {
74 return (List<A>)EMPTY_LIST;
77 private static List<?> EMPTY_LIST = new List<Objec
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DNamingContextImpl.java392 * List the contents of this NamingContest. A sequence of bindings
407 // List actually generates the list
410 impl.List(how_many,bl,bi);
1034 * List the contents of this NamingContext. It creates a new
1044 public void List(int how_many, BindingListHolder bl, method in class:NamingContextImpl
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsnamed.c497 NewPtr = (_cmsNAMEDCOLOR*) _cmsRealloc(v ->ContextID, v ->List, size * sizeof(_cmsNAMEDCOLOR));
501 v ->List = NewPtr;
513 v ->List = NULL;
532 if (v ->List) _cmsFree(v ->ContextID, v ->List);
552 memmove(NewNC->List, v ->List, v->nColors * sizeof(_cmsNAMEDCOLOR));
558 // Append a color to a list. List pointer may change if reallocated
572 NamedColorList ->List[NamedColorList ->nColors].DeviceColorant[i] = Colorant == NULL? 0 : Colorant[i];
575 NamedColorList ->List[NamedColorLis
647 cmsNAMEDCOLORLIST* List = (cmsNAMEDCOLORLIST*) mpe ->Data; local
654 cmsNAMEDCOLORLIST* List = (cmsNAMEDCOLORLIST*) mpe ->Data; local
[all...]
H A Dlcms2_internal.h303 _cmsNAMEDCOLOR* List; member in struct:_cms_NAMEDCOLORLIST_struct
H A Dcmstypes.c2987 cmsNAMEDCOLORLIST* List; local
2999 List = cmsAllocNamedColorList(self ->ContextID, Count, 0, "", "");
3007 if (!cmsAppendNamedColor(List, Name, PCS, NULL)) goto Error;
3012 return List;
3016 cmsFreeNamedColorList(List);
/openjdk7/jdk/src/share/classes/java/awt/
H A DList.java39 * The <code>List</code> component presents the user with a
46 * List lst = new List(4, false);
63 * <img src="doc-files/List-1.gif"
66 * If the List allows multiple selections, then clicking on
70 * list is <code>false</code>. If the List does not allow multiple
76 * cannot be changed. A default <code>List</code> is created with
77 * four rows, so that <code>lst = new List()</code> is equivalent to
78 * <code>list = new List(4, false)</code>.
81 * sends the <code>List</cod
109 public class List extends Component implements ItemSelectable, Accessible { class in inherits:Component,ItemSelectable,Accessible
187 public List() throws HeadlessException { method in class:List
204 public List(int rows) throws HeadlessException { method in class:List
232 public List(int rows, boolean multipleMode) throws HeadlessException { method in class:List
[all...]

Completed in 115 milliseconds