Searched refs:index (Results 26 - 50 of 2073) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_class.h47 SerialNumber class_get_serial_number(ClassIndex index);
48 StringIndex class_get_signature(ClassIndex index);
49 ClassStatus class_get_status(ClassIndex index);
50 void class_add_status(ClassIndex index, ClassStatus status);
56 void class_set_methods(ClassIndex index, const char**name,
58 jmethodID class_get_methodID(JNIEnv *env, ClassIndex index,
60 jclass class_new_classref(JNIEnv *env, ClassIndex index,
62 void class_delete_classref(JNIEnv *env, ClassIndex index);
63 jclass class_get_class(JNIEnv *env, ClassIndex index);
64 void class_set_inst_size(ClassIndex index, jin
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListModel.java75 * Returns the component at the specified index.
81 * @param index an index into this list
82 * @return the component at the specified index
83 * @exception ArrayIndexOutOfBoundsException if the <code>index</code>
88 public E getElementAt(int index) { argument
89 return delegate.elementAt(index);
200 * @return the index of the first occurrence of the argument in this
210 * the search at <code>index</code>.
213 * @param index th
219 indexOf(Object elem, int index) argument
246 lastIndexOf(Object elem, int index) argument
265 elementAt(int index) argument
310 setElementAt(E element, int index) argument
330 removeElementAt(int index) argument
353 insertElementAt(E element, int index) argument
446 get(int index) argument
462 set(int index, E element) argument
479 add(int index, E element) argument
495 remove(int index) argument
[all...]
/openjdk7/jaxp/src/org/xml/sax/ext/
H A DAttributes2Impl.java106 public boolean isDeclared (int index) argument
108 if (index < 0 || index >= getLength ())
110 "No attribute at index: " + index);
111 return declared [index];
121 int index = getIndex (uri, localName);
123 if (index < 0)
127 return declared [index];
137 int index
154 isSpecified(int index) argument
281 removeAttribute(int index) argument
306 setDeclared(int index, boolean value) argument
325 setSpecified(int index, boolean value) argument
[all...]
/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMImplementationList.java48 * <code>DOMImplementationList</code> are accessible via an integral index,
55 * Returns the <code>index</code>th item in the collection. If
56 * <code>index</code> is greater than or equal to the number of
59 * @param index Index into the collection.
60 * @return The <code>DOMImplementation</code> at the <code>index</code>
62 * <code>null</code> if that is not a valid index.
64 public DOMImplementation item(int index); argument
H A DNodeList.java49 * index, starting from 0.
54 * Returns the <code>index</code>th item in the collection. If
55 * <code>index</code> is greater than or equal to the number of nodes in
57 * @param index Index into the collection.
58 * @return The node at the <code>index</code>th position in the
60 * index.
62 public Node item(int index); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DThreadContext.java46 public long getRegister(int index); argument
50 public void setRegister(int index, long value); argument
54 public Address getRegisterAsAddress(int index); argument
58 public void setRegisterAsAddress(int index, Address value); argument
/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/util/
H A DAbstractSequentialList.java36 * that it implements the "random access" methods (<tt>get(int index)</tt>,
37 * <tt>set(int index, E element)</tt>, <tt>add(int index, E element)</tt> and
38 * <tt>remove(int index)</tt>) on top of the list's list iterator, instead of
45 * <tt>previous</tt> and <tt>index</tt> methods.<p>
57 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
81 * indexed element (with <tt>listIterator(index)</tt>). Then, it gets
86 public E get(int index) { argument
88 return listIterator(index).next();
90 throw new IndexOutOfBoundsException("Index: "+index);
113 set(int index, E element) argument
144 add(int index, E element) argument
169 remove(int index) argument
212 addAll(int index, Collection<? extends E> c) argument
252 listIterator(int index) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciObjArray.cpp36 ciObject* ciObjArray::obj_at(int index) { argument
39 if (index < 0 || index >= array->length()) return NULL;
40 oop o = array->obj_at(index);
/openjdk7/hotspot/src/share/vm/runtime/
H A DmonitorChunk.cpp43 for (int index = 0; index < number_of_monitors(); index++) {
44 at(index)->oops_do(f);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DAttributesImpl.java126 * @param index The attribute's index (zero-based).
128 * available, or null if the index is out of range.
131 public String getURI (int index) argument
133 if (index >= 0 && index < length) {
134 return data[index*5];
144 * @param index The attribute's index (zero-based).
146 * none is available, or null if the index i
149 getLocalName(int index) argument
167 getQName(int index) argument
185 getType(int index) argument
202 getValue(int index) argument
433 setAttribute(int index, String uri, String localName, String qName, String type, String value) argument
456 removeAttribute(int index) argument
480 setURI(int index, String uri) argument
500 setLocalName(int index, String localName) argument
520 setQName(int index, String qName) argument
539 setType(int index, String type) argument
558 setValue(int index, String value) argument
607 badIndex(int index) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DAttributesImpl.java126 * @param index The attribute's index (zero-based).
128 * available, or null if the index is out of range.
131 public String getURI (int index) argument
133 if (index >= 0 && index < length) {
134 return data[index*5];
144 * @param index The attribute's index (zero-based).
146 * none is available, or null if the index i
149 getLocalName(int index) argument
167 getQName(int index) argument
185 getType(int index) argument
202 getValue(int index) argument
433 setAttribute(int index, String uri, String localName, String qName, String type, String value) argument
456 removeAttribute(int index) argument
480 setURI(int index, String uri) argument
500 setLocalName(int index, String localName) argument
520 setQName(int index, String qName) argument
539 setType(int index, String type) argument
558 setValue(int index, String value) argument
607 badIndex(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DByteArrayMonitor.java53 * @return byte - the byte value at the specified index in the
56 public byte byteAt(int index); argument
/openjdk7/jdk/src/share/classes/sun/management/counter/
H A DByteArrayCounter.java43 public byte byteAt(int index); argument
H A DLongArrayCounter.java42 public long longAt(int index); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DIndexableFieldIdentifier.java31 // An IndexableFieldIdentifier describes a field in an Oop accessed by an index
35 public IndexableFieldIdentifier(int index) { argument
36 this.index = index;
39 private int index; field in class:IndexableFieldIdentifier
41 public int getIndex() { return index; }
58 return (((IndexableFieldIdentifier) obj).getIndex() == index);
62 return index;
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DByteVectorImpl.java45 public byte get(int index) { argument
46 if (index >= data.length) {
47 resize(index);
48 pos = index;
50 return data[index];
53 public void put(int index, byte value) { argument
54 if (index >= data.length) {
55 resize(index);
56 pos = index;
58 data[index]
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicIndexableFieldIdentifier.java31 private int index; field in class:BasicIndexableFieldIdentifier
33 public BasicIndexableFieldIdentifier(Type type, int index) { argument
35 this.index = index;
39 public int getIndex() { return index; }
/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteEUC.java79 int index;
137 index = index1[((inputChar & mask1) >> shift)] + (inputChar & mask2);
139 if (index < 7500)
142 if (index < 15000) {
143 index = index - 7500;
147 if (index < 22500){
148 index = index - 15000;
152 index
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DBMPattern.java52 int index = ch % this.shiftTable.length;
53 if (diff < this.shiftTable[index])
54 this.shiftTable[index] = diff;
57 index = ch % this.shiftTable.length;
58 if (diff < this.shiftTable[index])
59 this.shiftTable[index] = diff;
61 index = ch % this.shiftTable.length;
62 if (diff < this.shiftTable[index])
63 this.shiftTable[index] = diff;
76 int index
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/util/
H A DByteListImpl.java74 * Returns the <code>index</code>th item in the collection. The index
76 * @param index index into the collection.
77 * @return The <code>byte</code> at the <code>index</code>th
80 * INDEX_SIZE_ERR: if <code>index</code> is greater than or equal to the
83 public byte item(int index) argument
86 if(index < 0 || index > data.length - 1) {
89 return data[index];
96 get(int index) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/
H A DBaseIndexScaleDispAddress.java27 // address is calculated as (base + (index * scale) + displacement)
28 // optionally index is auto incremented or decremented
31 private final Register base, index; field in class:BaseIndexScaleDispAddress
37 public BaseIndexScaleDispAddress(Register base, Register index, long disp, int scale) { argument
39 this.index = index;
44 public BaseIndexScaleDispAddress(Register base, Register index, long disp) { argument
45 this(base, index, disp, 1);
48 public BaseIndexScaleDispAddress(Register base, Register index) { argument
49 this(base, index,
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPatternSyntaxException.java47 private final int index; field in class:PatternSyntaxException
58 * @param index
59 * The approximate index in the pattern of the error,
60 * or <tt>-1</tt> if the index is not known
62 public PatternSyntaxException(String desc, String regex, int index) { argument
65 this.index = index;
69 * Retrieves the error index.
71 * @return The approximate index in the pattern of the error,
72 * or <tt>-1</tt> if the index i
[all...]
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DArray.java128 * @param index the index
134 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
138 public static native Object get(Object array, int index) argument
146 * @param index the index
152 * @exception ArrayIndexOutOfBoundsException If the specified {@code index}
157 public static native boolean getBoolean(Object array, int index) argument
165 * @param index the index
176 getByte(Object array, int index) argument
195 getChar(Object array, int index) argument
214 getShort(Object array, int index) argument
233 getInt(Object array, int index) argument
252 getLong(Object array, int index) argument
271 getFloat(Object array, int index) argument
290 getDouble(Object array, int index) argument
310 set(Object array, int index, Object value) argument
330 setBoolean(Object array, int index, boolean z) argument
350 setByte(Object array, int index, byte b) argument
370 setChar(Object array, int index, char c) argument
390 setShort(Object array, int index, short s) argument
410 setInt(Object array, int index, int i) argument
430 setLong(Object array, int index, long l) argument
450 setFloat(Object array, int index, float f) argument
470 setDouble(Object array, int index, double d) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaLazyReadObject.java118 // read object ID from given index from given byte array
119 protected final long objectIdAt(int index, byte[] data) { argument
122 return ((long)intAt(index, data)) & Snapshot.SMALL_ID_MASK;
124 return longAt(index, data);
129 protected static byte byteAt(int index, byte[] value) { argument
130 return value[index];
133 protected static boolean booleanAt(int index, byte[] value) { argument
134 return (value[index] & 0xff) == 0? false: true;
137 protected static char charAt(int index, byte[] value) { argument
138 int b1 = ((int) value[index
143 shortAt(int index, byte[] value) argument
149 intAt(int index, byte[] value) argument
157 longAt(int index, byte[] value) argument
167 floatAt(int index, byte[] value) argument
172 doubleAt(int index, byte[] value) argument
[all...]

Completed in 52 milliseconds

1234567891011>>