Searched refs:index (Results 1 - 25 of 2901) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/
H A DNativeSymbol.java31 /** String table index. */
32 private int index; field in class:NativeSymbol
34 public NativeSymbol(int index) { argument
35 this.index = index;
39 * @return the index
42 return index;
46 * @index
48 public void setIndex(int index) { argument
49 this.index
[all...]
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DConstantPoolException.java36 ConstantPoolException(int index) { argument
37 this.index = index;
40 public final int index; field in class:ConstantPoolException
/openjdk10/hotspot/src/share/vm/ci/
H A DciTypeArray.cpp39 jchar ciTypeArray::char_at(int index) { argument
41 assert(index >= 0 && index < length(), "out of range");
42 jchar c = get_typeArrayOop()->char_at(index);
44 jchar d = element_value(index).as_char();
54 jbyte ciTypeArray::byte_at(int index) { argument
56 assert(index >= 0 && index < length(), "out of range");
57 return get_typeArrayOop()->byte_at(index);
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DParsePosition.java50 * you can use the same <code>ParsePosition</code>, since the index parameter
64 * with each call setting index up for the next one.
66 int index = 0; field in class:ParsePosition
71 * is the index of the character at which parsing will begin; on output, it
72 * is the index of the character following the last character parsed.
77 return index;
83 * @param index the current parse position
85 public void setIndex(int index) { argument
86 this.index = index;
94 ParsePosition(int index) argument
[all...]
/openjdk10/hotspot/test/compiler/loopopts/
H A DTestLoopPeeling.java52 public void testArrayAccess1(int index, int inc) { argument
55 for (; index < 10; index += inc) {
66 if (index == 42) {
82 public int testArrayAccess2(int index) { argument
87 // Load1 reads the array at index ConvI2L(CastII(AddI(storeIndex, -1)))
96 for (; index < 10; ++index) {
97 if (index == 42) {
105 public int testArrayAccess3(int index, boolea argument
120 testArrayAllocation(int index, int inc) argument
[all...]
H A DTestCastIINoLoopLimitCheck.java46 static void m(int i, int index, char[] buf) { argument
49 buf [--index] = 0;
50 buf [--index] = 1;
/openjdk10/jdk/src/java.desktop/unix/classes/sun/java2d/xr/
H A DGrowableEltArray.java44 public final int getCharCnt(int index) { argument
45 return array[getCellIndex(index) + 0];
48 public final void setCharCnt(int index, int cnt) { argument
49 array[getCellIndex(index) + 0] = cnt;
52 public final int getXOff(int index) { argument
53 return array[getCellIndex(index) + 1];
56 public final void setXOff(int index, int xOff) { argument
57 array[getCellIndex(index) + 1] = xOff;
60 public final int getYOff(int index) { argument
61 return array[getCellIndex(index)
64 setYOff(int index, int yOff) argument
68 getGlyphSet(int index) argument
72 setGlyphSet(int index, int glyphSet) argument
[all...]
H A DGrowablePointArray.java43 public final int getX(int index) argument
45 return array[getCellIndex(index)];
48 public final int getY(int index) argument
50 return array[getCellIndex(index) + 1];
53 public final void setX(int index, int x) argument
55 array[getCellIndex(index)] = x;
58 public final void setY(int index, int y) argument
60 array[getCellIndex(index) + 1] = y;
/openjdk10/hotspot/test/gc/stress/gcbasher/
H A DConstantPoolEntry.java26 private int index; field in class:ConstantPoolEntry
29 public ConstantPoolEntry(int index) { argument
30 this.index = index;
35 this.index = -1;
40 if (index != -1) {
50 return index;
57 return index;
/openjdk10/hotspot/src/share/vm/oops/
H A DobjArrayOop.inline.hpp32 inline oop objArrayOopDesc::obj_at(int index) const {
36 return load_decode_heap_oop(obj_at_addr<narrowOop>(index));
38 return load_decode_heap_oop(obj_at_addr<oop>(index));
42 void objArrayOopDesc::obj_at_put(int index, oop value) { argument
44 oop_store(obj_at_addr<narrowOop>(index), value);
46 oop_store(obj_at_addr<oop>(index), value);
/openjdk10/hotspot/src/share/vm/utilities/
H A DnativeCallStack.cpp51 for (int index = 0; index < NMT_TrackingStackDepth; index ++) {
52 _stack[index] = NULL;
60 int index; local
61 for (index = 0; index < frameToCopy; index ++) {
62 _stack[index] = pc[index];
72 int index; local
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DCMStateSet.java82 for (int index = 0; index < fBitCount; index++)
84 if (getBit(index))
85 strRet.append(" " + index);
114 for (int index = fByteCount - 1; index >= 0; index--)
115 fByteArray[index] &= setToAnd.fByteArray[index];
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/
H A DGraphNodeIterator.java33 private int index; field in class:GraphNodeIterator
39 GraphNodeIterator(Graph graph, int index) { argument
41 this.index = index - 1;
46 if (index < graph.nodesSize) {
48 index++;
49 } while (index < graph.nodesSize && graph.nodes[index] == null);
56 return index < graph.nodesSize;
60 while (index < grap
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/
H A DEncodingAlgorithmAttributes.java61 * @param index The attribute index (zero-based).
62 * @return The URI. If the index is out of range then null is returned.
64 public String getAlgorithmURI(int index); argument
67 * Return the index of the encoding algorithm.
72 * @param index The attribute index (zero-based).
73 * @return The algorithm index. If index is out of range then -1 is returned.
76 public int getAlgorithmIndex(int index); argument
96 getAlgorithmData(int index) argument
106 getAlpababet(int index) argument
114 getToIndex(int index) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/java/beans/
H A DIndexedPropertyChangeEvent.java31 * but contains the index of the property that has changed.
46 private int index; field in class:IndexedPropertyChangeEvent
56 * @param index index of the property element that was changed.
60 int index) {
62 this.index = index;
66 * Gets the index of the property that was changed.
68 * @return The index specifying the property element that was
72 return index;
58 IndexedPropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, int index) argument
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/org/relaxng/datatype/
H A DDatatypeException.java45 public DatatypeException( int index, String msg ) { argument
47 this.index = index;
61 private final int index; field in class:DatatypeException
66 * Gets the index of the content where the error occured.
67 * UNKNOWN can be returned to indicate that no index information
71 return index;
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/reflect/
H A DConstantPool.java35 // Number of entries in this constant pool (= maximum valid constant pool index)
37 public Class<?> getClassAt (int index) { return getClassAt0 (constantPoolOop, index); } argument
38 public Class<?> getClassAtIfLoaded (int index) { return getClassAtIfLoaded0 (constantPoolOop, index); } argument
39 // Returns a class reference index for a method or a field.
40 public int getClassRefIndexAt(int index) { argument
41 return getClassRefIndexAt0(constantPoolOop, index);
45 public Member getMethodAt (int index) { return getMethodAt0 (constantPoolOop, index); } argument
46 getMethodAtIfLoaded(int index) argument
47 getFieldAt(int index) argument
48 getFieldAtIfLoaded(int index) argument
51 getMemberRefInfoAt(int index) argument
53 getNameAndTypeRefIndexAt(int index) argument
57 getNameAndTypeRefInfoAt(int index) argument
60 getIntAt(int index) argument
61 getLongAt(int index) argument
62 getFloatAt(int index) argument
63 getDoubleAt(int index) argument
64 getStringAt(int index) argument
65 getUTF8At(int index) argument
66 getTagAt(int index) argument
114 getClassAt0(Object constantPoolOop, int index) argument
115 getClassAtIfLoaded0(Object constantPoolOop, int index) argument
116 getClassRefIndexAt0(Object constantPoolOop, int index) argument
117 getMethodAt0(Object constantPoolOop, int index) argument
118 getMethodAtIfLoaded0(Object constantPoolOop, int index) argument
119 getFieldAt0(Object constantPoolOop, int index) argument
120 getFieldAtIfLoaded0(Object constantPoolOop, int index) argument
121 getMemberRefInfoAt0(Object constantPoolOop, int index) argument
122 getNameAndTypeRefIndexAt0(Object constantPoolOop, int index) argument
123 getNameAndTypeRefInfoAt0(Object constantPoolOop, int index) argument
124 getIntAt0(Object constantPoolOop, int index) argument
125 getLongAt0(Object constantPoolOop, int index) argument
126 getFloatAt0(Object constantPoolOop, int index) argument
127 getDoubleAt0(Object constantPoolOop, int index) argument
128 getStringAt0(Object constantPoolOop, int index) argument
129 getUTF8At0(Object constantPoolOop, int index) argument
130 getTagAt0(Object constantPoolOop, int index) argument
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/validation/
H A DTypeInfoProvider.java104 * @param index
105 * The index of the attribute. The same index for
110 * If the index is invalid.
125 public abstract TypeInfo getAttributeTypeInfo(int index); argument
146 * @param index
147 * The index of the attribute. The same index for
152 * If the index is invalid.
160 public abstract boolean isIdAttribute(int index); argument
196 isSpecified(int index) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/peer/
H A DChoicePeer.java42 * at index {@code index}.
45 * @param index the index where to add the item
49 void add(String item, int index); argument
52 * Removes the item at index {@code index} from the combo box list.
54 * @param index the index where to remove the item
58 void remove(int index); argument
74 select(int index) argument
[all...]
/openjdk10/nashorn/test/script/basic/
H A DNASHORN-174.js37 function check(index, value) {
38 if (nums[index] != value) {
39 fail("expected value @ " + index + " is " + value);
/openjdk10/hotspot/test/runtime/Annotations/
H A DTestAnnotatedStringEncoding.java37 int index(); method in interface:TestAnnotatedStringEncoding.Test
51 int index = test.index();
52 if (!str.equals(strValue[index])) {
54 ") does not equal \"" + strValue[index] + "\" (0x" + Integer.toHexString(strValue[index].charAt(0)) + ") .");
70 @Test(str = "\u0000", index = 0)
73 @Test(str = "\u0020", index = 1)
76 @Test(str = "\u0021", index = 2)
79 @Test(str = "\u0080", index
[all...]
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/
H A DCSVParseException.java34 final int index; field in class:CSVParseException
36 public CSVParseException(String msg, String input, int index) { argument
39 this.index = index;
44 public int getIndex() { return index; }
53 return super.getMessage() + " at index " + index + ": " + input;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DBitMap.java44 Assert.that(offset>=0 && offset < size(), "BitMap index out of bounds");
50 int index = indexFor(offset);
53 data[index] = Bits.setNthBit(data[index], pos);
55 data[index] = Bits.clearNthBit(data[index], pos);
78 for (int index = 0; index < sizeInWords(); index++) {
79 int rest = data[index];
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/accessibility/
H A DAccessibleExtendedTable.java44 * Returns the row number of an index in the table.
46 * @param index the zero-based index in the table. The index is the table
50 public int getAccessibleRow(int index); argument
53 * Returns the column number of an index in the table.
55 * @param index the zero-based index in the table. The index is the table
59 public int getAccessibleColumn(int index); argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DIndexOutOfBoundsException.java29 * Thrown to indicate that an index of some sort (such as to an array, to a
59 * argument indicating the illegal index.
61 * <p>The index is included in this exception's detail message. The
64 * @param index the illegal index.
67 public IndexOutOfBoundsException(int index) { argument
68 super("Index out of range: " + index);

Completed in 276 milliseconds

1234567891011>>