Searched refs:items (Results 51 - 66 of 66) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DLocalGregorianCalendar.java148 String items = eraTokens.nextToken().trim();
149 StringTokenizer itemTokens = new StringTokenizer(items, ",");
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMenuBarPeer.java82 MappingData(XMenuItemPeer[] items, int desiredHeight) { argument
83 super(items);
88 * Constructs MappingData without items
135 * So we need to synchronize indicies in 'items'
267 //Cut-off items that don't fit in window
322 * size of items has changed.
H A DXMenuWindow.java109 MappingData(XMenuItemPeer[] items, Rectangle captionRect, Dimension desiredSize, int leftMarkWidth, int shortcutOrigin, int rightMarkOrigin) { argument
110 super(items);
119 * Constructs MappingData without items
303 * It's likely that size of items was changed
356 * Reads vector of items from target
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComboBox.java170 * Creates a <code>JComboBox</code> that takes its items from an
177 * displayed list of items
191 * @param items an array of objects to insert into the combo box
194 public JComboBox(E[] items) { argument
196 setModel(new DefaultComboBoxModel<E>(items));
205 * @param items an array of vectors to insert into the combo box
208 public JComboBox(Vector<E> items) { argument
210 setModel(new DefaultComboBoxModel<E>(items));
217 * Use <code>addItem</code> to add items. By default the first item
298 * the list of items
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_p.h289 Widget *items; member in struct:ChoiceData
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxUI.java189 final int items = model.getSize();
190 for (int i = 0; i < items; i++) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTaskImpl.java181 <T> String toString(Iterable<T> items, String sep) { argument
184 for (T item: items) {
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzlib.h101 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDS.cpp381 unsigned int items = 0; local
389 items = env->GetArrayLength(formats);
391 if (items == 0) {
399 for (i = 0, m_ntypes = 0; i < items; i++, lFormats++) {
428 for (i = 0, idx = 0; i < items; i++, lFormats++) {
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c101 png_zalloc,(voidpf png_ptr, uInt items, uInt size),PNG_ALLOCATED)
111 if (items > PNG_UINT_32_MAX/size)
116 num_bytes = (png_alloc_size_t)items * size;
339 /* Free text item num or (if num == -1) all text items */
100 PNG_FUNCTION(voidpf , png_zalloc,(voidpf png_ptr, uInt items, uInt size),PNG_ALLOCATED) argument
H A Dpngpriv.h531 PNG_EXTERN PNG_FUNCTION(voidpf,png_zalloc,PNGARG((voidpf png_ptr, uInt items,
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSAttributeChecker.java1812 Map items; field in class:LargeContainer
1814 items = new HashMap(size*2+1);
1818 items.put(key, value);
1822 OneAttr ret = (OneAttr)items.get(key);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp106 //--------- loading items into registers --------------------------------
957 LIRItemList* items = new LIRItemList(dims->length(), NULL); local
960 items->at_put(i, size);
978 LIRItem* size = items->at(i);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp112 //--------- loading items into registers --------------------------------
1094 LIRItemList* items = new LIRItemList(dims->length(), NULL); local
1097 items->at_put(i, size);
1115 LIRItem* size = items->at(i);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpot.java125 // Disable detach menu items at first
886 private void setMenuItemsEnabled(java.util.List items, boolean enabled) { argument
887 for (Iterator iter = items.iterator(); iter.hasNext(); ) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHSDB.java192 // Disable detach menu items at first
1793 private void setMenuItemsEnabled(java.util.List items, boolean enabled) { argument
1794 for (Iterator iter = items.iterator(); iter.hasNext(); ) {

Completed in 94 milliseconds

123