Searched defs:index (Results 251 - 275 of 1255) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/sql/rowset/spi/
H A DSyncResolver.java289 * @param index an <code>int</code> designating the column in this row of this
296 public Object getConflictValue(int index) throws SQLException; argument
313 * Sets <i>obj</i> as the value in column <i>index</i> in the current row of the
317 * @param index an <code>int</code> giving the number of the column into which to
323 public void setResolvedValue(int index, Object obj) throws SQLException; argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultComboBoxModel.java108 public E getElementAt(int index) { argument
109 if ( index >= 0 && index < objects.size() )
110 return objects.elementAt(index);
116 * Returns the index-position of the specified object in the list.
119 * @return an int representing the index position, where 0 is
136 public void insertElementAt(E anObject,int index) { argument
137 objects.insertElementAt(anObject,index);
138 fireIntervalAdded(this, index, index);
142 removeElementAt(int index) argument
[all...]
H A DDefaultSingleSelectionModel.java56 private int index = -1; field in class:DefaultSingleSelectionModel
60 return index;
64 public void setSelectedIndex(int index) { argument
65 if (this.index != index) {
66 this.index = index;
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTreeSelectionEvent.java166 * Returns whether the path at {@code getPaths()[index]} was added
171 * @param index the index of the path to test
174 * @throws IllegalArgumentException if index is outside the range of
180 public boolean isAddedPath(int index) { argument
181 if (paths == null || index < 0 || index >= paths.length) {
182 throw new IllegalArgumentException("index is beyond range of added paths identified by TreeSelectionEvent");
184 return areNew[index];
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTabSet.java81 * Returns the TabStop at index <code>index</code>. This will throw an
82 * IllegalArgumentException if <code>index</code> is outside the range
85 public TabStop getTab(int index) { argument
88 if(index < 0 || index >= numTabs)
89 throw new IllegalArgumentException(index +
91 return tabs[index];
99 int index = getTabIndexAfter(location);
101 return (index
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DTreeModel.java74 * Returns the child of <code>parent</code> at index <code>index</code>
78 * if <code>index</code>
79 * is a valid index for <code>parent</code> (that is <code>index >= 0 &&
80 * index < getChildCount(parent</code>)).
83 * @return the child of <code>parent</code> at index <code>index</code>
85 public Object getChild(Object parent, int index); argument
125 * Returns the index o
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DRectIterator.java39 int index; field in class:RectIterator
48 index = 6;
67 return index > 5;
76 index++;
101 if (index == 5) {
106 if (index == 1 || index == 2) {
109 if (index == 2 || index == 3) {
115 return (index
[all...]
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DListPeer.java53 * Adds an item to the list at the specified index.
56 * @param index the index where to add the item into the list
60 void add(String item, int index); argument
79 * Selects the item at the specified {@code index}.
81 * @param index the index of the item to select
85 void select(int index); argument
88 * De-selects the item at the specified {@code index}.
90 * @param index th
94 deselect(int index) argument
104 makeVisible(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleEditableText.java64 * Inserts the specified string at the given index/
66 * @param index the index in the text where the string will
70 public void insertTextAtIndex(int index, String s); argument
75 * @param startIndex the starting index in the text
76 * @param endIndex the ending index in the text
84 * @param startIndex the starting index in the text
85 * @param endIndex the ending index in the text
92 * @param startIndex the starting index in the text
93 * @param endIndex the ending index i
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DIIOImage.java244 * @param index the index of the desired thumbnail image.
248 * @exception IndexOutOfBoundsException if the supplied index is
249 * negative or larger than the largest valid index.
252 * list of thumbnails at the given index.
257 public BufferedImage getThumbnail(int index) { argument
261 return (BufferedImage)thumbnails.get(index);
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttributeList.java180 * Elements with an index greater than or equal to the current position are
181 * shifted up. If the index is out of range (index < 0 || index >
186 * @param index The position in the list where the new {@code Attribute}
189 public void add(int index, Attribute object) { argument
191 super.add(index, object);
195 "The specified index is out of range");
201 * The previous element at that position is discarded. If the index is
202 * out of range (index <
208 set(int index, Attribute object) argument
249 addAll(int index, AttributeList list) argument
283 add(int index, Object element) argument
307 addAll(int index, Collection<?> c) argument
319 set(int index, Object element) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DresolutionErrors.cpp34 void ResolutionErrorTable::add_entry(int index, unsigned int hash, argument
41 add_entry(index, entry);
45 ResolutionErrorEntry* ResolutionErrorTable::find_entry(int index, unsigned int hash, argument
50 for (ResolutionErrorEntry *error_probe = bucket(index);
H A DresolutionErrors.hpp52 void add_entry(int index, ResolutionErrorEntry* new_entry) { argument
53 Hashtable<constantPoolOop, mtClass>::add_entry(index,
57 void add_entry(int index, unsigned int hash,
61 // find error given the constant pool and constant pool index
62 ResolutionErrorEntry* find_entry(int index, unsigned int hash,
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.inline.hpp56 check_index(result, "bad index from address");
61 G1BlockOffsetSharedArray::address_for_index(size_t index) const {
62 check_index(index, "index out of range");
63 HeapWord* result = _reserved.start() + (index << LogN_words);
65 "bad address from index");
74 size_t index = _array->index_for(addr); local
78 index = MIN2(index, max_index);
80 HeapWord* q = _array->address_for_index(index);
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionManager.inline.hpp32 inline PSPromotionManager* PSPromotionManager::manager_array(int index) { argument
34 assert(index >= 0 && index <= (int)ParallelGCThreads, "out of range manager_array access");
35 return _manager_array[index];
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpStatusException.java83 * Constructs a new <CODE>SnmpStatusException</CODE> with the specified status error and status index.
85 * @param index The error index.
87 public SnmpStatusException(int status, int index) { argument
89 errorIndex = index ;
94 * The error status is set to 0 (noError) and the index to -1.
102 * Constructs a new <CODE>SnmpStatusException</CODE> with an error index.
104 * @param index The error index.
106 public SnmpStatusException(SnmpStatusException x, int index) { argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpIndex.java42 * Represents a SNMP index.
58 * table index should have an object identifier representation. There are
85 * Gets the number of Object Identifiers the index is made of.
94 * Gets the index as a vector of Object Identifiers.
96 * @return The index as a vector.
105 * @param index The index to compare <CODE>this</CODE> with.
109 public boolean equals(SnmpIndex index) { argument
111 if (size != index.getNbComponents())
119 Vector<SnmpOid> components= index
136 compareTo(SnmpIndex index) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftInstrument.java84 public SoftPerformer getPerformer(int index) { argument
85 return performers[index];
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DHelperNodeList.java58 * @param index
61 public Node item(int index) { argument
63 // log.log(java.util.logging.Level.FINE, "item(" + index + ") of " + this.getLength() + " nodes");
65 return (Node) nodes.get(index);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DMonitorListModel.java55 public Object getElementAt(int index) { argument
56 return monitors.get(index);
71 int index = monitors.indexOf(expr);
72 remove(index);
75 public void remove(int index) { argument
76 monitors.remove(index);
77 fireIntervalRemoved(this, index, index);
/openjdk7/hotspot/src/os/solaris/dtrace/
H A DgenerateJvmOffsets.cpp93 #Type #Name, index++); \
108 #Type, index++); \
121 printf("#define IDX_%-40s %d\n", #String, index++); \
164 int index = 0; /* It is used to generate JvmOffsetsIndex.h */ local
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DZone.java143 * @param index the index at which the zone record in the list is returned.
144 * @return the zone record specified by the index.
146 ZoneRec get(int index) { argument
147 return list.get(index);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCMenuBar.java56 public void setNextInsertionIndex(int index) { argument
57 nextInsertionIndex = index;
66 public void delMenu(int index) { argument
67 nativeDelMenu(getModel(), index);
72 private native void nativeDelMenu(long menuBarPtr, int index); argument
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DObjectElementHandler.java44 * <dt>index
45 * <dd>the property index
61 private Integer index; field in class:ObjectElementHandler
75 * <dt>index
76 * <dd>the property index
94 } else if (name.equals("index")) { // NON-NLS: the attribute name
95 this.index = Integer.valueOf(value);
96 addArgument(this.index); // hack for compatibility
148 if (this.index != null) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.inline.hpp42 for (int index = 0; index < _table_size; index++) {
43 _buckets[index].clear();
83 // via a store to _buckets[index].
92 // via a store to _buckets[index].
97 template <MEMFLAGS F> inline void BasicHashtable<F>::set_entry(int index, BasicHashtableEntry<F>* entry) { argument
98 _buckets[index].set_entry(entry);
102 template <MEMFLAGS F> inline void BasicHashtable<F>::add_entry(int index, BasicHashtableEntry<F>* entry) { argument
103 entry->set_next(bucket(index));
[all...]

Completed in 71 milliseconds

<<11121314151617181920>>