Searched refs:item (Results 1 - 25 of 387) sorted by relevance

1234567891011>>

/openjdk7/hotspot/test/compiler/6843752/
H A DTest.java43 private void linkIn(Item item) { argument
46 item.next = item;
47 item.prev = item;
48 list = item;
50 item.next = head;
51 item.prev = head.prev;
52 head.prev.next = item;
53 head.prev = item;
57 linkOut(Item item) argument
[all...]
/openjdk7/langtools/test/tools/javac/generics/inference/5073060/
H A DGenericsAndPackages.java44 T item; field in class:ColoredDimension
45 ColoredDimension(T item) { this.item = item; } argument
46 T getItem() { return item; }
47 java.awt.Color f() { return item.getColor(); }
48 int getX() { return item.x; }
/openjdk7/jdk/src/windows/native/sun/windows/
H A DObjectList.cpp46 AwtObjectListItem* item = new AwtObjectListItem(obj); local
47 item->next = m_head;
48 m_head = item;
55 AwtObjectListItem* item = m_head; local
58 while (item != NULL) {
59 if (item->obj == obj) {
61 m_head = item->next;
63 lastItem->next = item->next;
65 DASSERT(item != NULL);
66 delete item;
84 AwtObjectListItem* item = m_head; local
106 AwtObjectListItem* item = theAwtObjectList.m_head; local
[all...]
/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMImplementationList.java55 * Returns the <code>index</code>th item in the collection. If
64 public DOMImplementation item(int index); method in interface:DOMImplementationList
H A DNodeList.java54 * Returns the <code>index</code>th item in the collection. If
62 public Node item(int index); method in interface:NodeList
H A DDOMStringList.java55 * Returns the <code>index</code>th item in the collection. If
63 public String item(int index); method in interface:DOMStringList
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/
H A DShortList.java37 * Checks if the <code>unsigned short</code> <code>item</code> is a
39 * @param item <code>unsigned short</code> whose presence in this list
42 * <code>item</code>.
44 public boolean contains(short item); argument
47 * Returns the <code>index</code>th item in the collection. The index
56 public short item(int index) method in interface:ShortList
H A DStringList.java37 * Checks if the <code>GenericString</code> <code>item</code> is a member
39 * @param item <code>GenericString</code> whose presence in this list is
42 * <code>item</code>.
44 public boolean contains(String item); argument
47 * Returns the <code>index</code>th item in the collection or
55 public String item(int index); method in interface:StringList
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/datatypes/
H A DObjectList.java41 * Checks if the <code>Object</code> <code>item</code> is a
43 * @param item <code>Object</code> whose presence in this list
46 * <code>item</code>.
48 public boolean contains(Object item); argument
51 * Returns the <code>index</code>th item in the collection or
60 public Object item(int index); method in interface:ObjectList
H A DByteList.java43 * Checks if the <code>byte</code> <code>item</code> is a
45 * @param item <code>byte</code> whose presence in this list
48 * <code>item</code>.
50 public boolean contains(byte item); argument
53 * Returns the <code>index</code>th item in the collection. The index
62 public byte item(int index) throws XSException; method in interface:ByteList
/openjdk7/jdk/src/share/classes/javax/swing/
H A DMutableComboBoxModel.java38 * Adds an item at the end of the model. The implementation of this method
40 * item has been added.
42 * @param item the item to be added
44 public void addElement( E item );
47 * Removes an item from the model. The implementation of this method should
49 * item has been removed.
56 * Adds an item at a specific index. The implementation of this method
58 * item has been added.
60 * @param item th
63 insertElementAt( E item, int index ) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferQueue.java39 public void enqueue(ByteBufferWithInfo item) argument
41 list.addLast(item);
56 public void push(ByteBufferWithInfo item) argument
58 list.addFirst(item);
/openjdk7/jaxp/src/org/w3c/dom/css/
H A DCSSRuleList.java70 public CSSRule item(int index); method in interface:CSSRuleList
H A DCSSValueList.java73 public CSSValue item(int index); method in interface:CSSValueList
/openjdk7/jaxp/src/org/w3c/dom/stylesheets/
H A DStyleSheetList.java69 public StyleSheet item(int index); method in interface:StyleSheetList
/openjdk7/langtools/test/tools/javac/7023703/
H A DT7023703neg.java36 final int item = 0;
46 final int item = 0;
56 final int item = 0;
66 final int item = 0;
H A DT7023703pos.java35 final int item = 0;
44 final int item = 0;
53 final int item = 0;
61 final int item = 0;
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmRTBootClassPathEntryImpl.java47 private final String item; field in class:JvmRTBootClassPathEntryImpl
53 public JvmRTBootClassPathEntryImpl(String item, int index) { argument
54 this.item = validPathElementTC(item);
66 return item;
H A DJvmRTClassPathEntryImpl.java47 private final String item; field in class:JvmRTClassPathEntryImpl
53 public JvmRTClassPathEntryImpl(String item, int index) { argument
54 this.item = validPathElementTC(item);
66 return item;
H A DJvmRTInputArgsEntryImpl.java47 private final String item; field in class:JvmRTInputArgsEntryImpl
53 public JvmRTInputArgsEntryImpl(String item, int index) { argument
54 this.item = validArgValueTC(item);
66 return item;
H A DJvmRTLibraryPathEntryImpl.java47 private final String item; field in class:JvmRTLibraryPathEntryImpl
53 public JvmRTLibraryPathEntryImpl(String item, int index) { argument
54 this.item = validPathElementTC(item);
66 return item;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/
H A DFragmentedArray.java33 FragmentedArray(T item) { argument
34 this(item, null);
37 FragmentedArray(T item, FragmentedArray<T> previous) { argument
38 setArray(item);
49 void setArray(T item) { argument
50 assert(item.getClass().isArray());
52 _item = item;
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DItemEvent.java32 * A semantic event which indicates that an item was selected or deselected.
34 * List) when an item is selected or deselected by the user.
43 * "item selected" or "item deselected".
68 * The first number in the range of ids used for item events.
73 * The last number in the range of ids used for item events.
78 * This event id indicates that an item's state changed.
83 * This state-change value indicates that an item was selected.
88 * This state-change-value indicates that a selected item was deselected.
93 * The item whos
98 Object item; field in class:ItemEvent
135 ItemEvent(ItemSelectable source, int id, Object item, int stateChange) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dlist.c28 node in the list consists of two pointers, one to the data item
30 the same struct as each node, but the "item" ptr is used to point
84 lp->ptr.item = NULL;
89 Adds item to the list pointed to by lp. Finds the end of the
91 The item pointer in the new node is set to "item" passed in,
96 int32_t add_to_list(list_ptr lp, void *item) argument
98 int32_t add_to_list(lp, item)
100 void *item;
110 lp->next->ptr.item
195 delete_from_list(list_ptr lp, void *item) argument
234 void *item; local
248 delete_list_destroying(list_ptr lp, void destructor(void *item)) argument
256 void *item; local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DDOMUtils.java56 Node item = children.item(i);
57 if(!(item instanceof Element )) continue;
59 if(nsUri.equals(item.getNamespaceURI())
60 && localPart.equals(item.getLocalName()) )
61 return (Element)item;
71 Node item = children.item(i);
72 if(!(item instanceof Element )) continue;
74 if(nsUri.equals(item
[all...]

Completed in 152 milliseconds

1234567891011>>