Searched refs:index (Results 76 - 100 of 2901) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/runtime/SelectionResolution/classes/selectionresolution/
H A DInterface.java32 public Interface(String name, int access, int index) { argument
33 this(name, V1_8, access, index, (String)null);
36 public Interface(String name, int index) { argument
37 this(name, V1_8, index, (String)null);
41 public Interface(String name, int access, int index, String... extending) { argument
42 this(name, V1_8, access, index, extending);
45 public Interface(String name, int classFileVersion, int access, int index, String... extending) { argument
46 super(name, "java/lang/Object", access + ACC_ABSTRACT + ACC_INTERFACE, classFileVersion, index, extending);
/openjdk10/jaxp/src/java.xml/share/classes/org/w3c/dom/
H A DNameList.java49 * integral index, starting from 0.
55 * Returns the <code>index</code>th name item in the collection.
56 * @param index Index into the collection.
57 * @return The name at the <code>index</code>th position in the
59 * the specified index or if the index is out of range.
61 public String getName(int index); argument
64 * Returns the <code>index</code>th namespaceURI item in the collection.
65 * @param index Index into the collection.
66 * @return The namespace URI at the <code>index</cod
70 getNamespaceURI(int index) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DMutableComboBoxModel.java57 * Adds an item at a specific index. The implementation of this method
62 * @param index location to add the object
64 public void insertElementAt( E item, int index );
67 * Removes an item at a specific index. The implementation of this method
71 * @param index location of the item to be removed
73 public void removeElementAt( int index );
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DURISyntaxException.java44 private int index; field in class:URISyntaxException
48 * index.
52 * @param index The index at which the parse error occurred,
53 * or {@code -1} if the index is not known
59 * If the error index is less than {@code -1}
61 public URISyntaxException(String input, String reason, int index) { argument
65 if (index < -1)
68 this.index = index;
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/nio/file/
H A DInvalidPathException.java42 private int index; field in class:InvalidPathException
46 * index.
50 * @param index the index at which the error occurred,
51 * or {@code -1} if the index is not known
57 * if the error index is less than {@code -1}
59 public InvalidPathException(String input, String reason, int index) { argument
63 if (index < -1)
66 this.index = index;
[all...]
/openjdk10/jdk/test/java/text/Bidi/
H A DBug7002398.java52 for (int index = 0; index < str.length(); index ++) {
53 int gotLevel = bidi.getLevelAt(index);
54 if (gotLevel != expectedLevels[index]) {
57 Integer.toHexString(str.charAt(index)).toUpperCase() +
58 ": Expected level = " + expectedLevels[index] +
59 ", actual level = " + bidi.getLevelAt(index) +
/openjdk10/jdk/src/java.sql/share/classes/java/sql/
H A DDataTruncation.java55 * @param index The index of the parameter or column value
61 public DataTruncation(int index, boolean parameter, argument
65 this.index = index;
82 * @param index The index of the parameter or column value
93 public DataTruncation(int index, boolean parameter, argument
97 this.index = index;
161 private int index; field in class:DataTruncation
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/
H A DPosition.java40 private final int index; field in class:Position
43 * Index within a {@link NodeList} if {@link #index} denotes a {@link NodeList} field otherwise
48 public Position(Edges edges, int index, int subIndex) { argument
50 this.index = index;
55 if (index < edges.getDirectCount()) {
56 return Edges.getNode(node, edges.getOffsets(), index);
58 return Edges.getNodeList(node, edges.getOffsets(), index).get(subIndex);
63 return ((InputEdges) edges).getInputType(index);
67 return edges.getName(index);
[all...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1InCSetState.hpp58 // used to index into arrays.
107 void set_humongous(uintptr_t index) { argument
108 assert(get_by_index(index).is_default(),
109 "State at index " INTPTR_FORMAT " should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value()); local
110 set_by_index(index, InCSetState::Humongous);
113 void set_ext(uintptr_t index) { argument
114 assert(get_by_index(index).is_default(),
115 "State at index " INTPTR_FORMA local
119 clear_humongous(uintptr_t index) argument
123 set_in_young(uintptr_t index) argument
125 "State at index " INTPTR_FORMAT " should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value()); local
129 set_in_old(uintptr_t index) argument
131 "State at index " INTPTR_FORMAT " should be default but is " CSETSTATE_FORMAT, index, get_by_index(index).value()); local
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/soql/
H A DDefaultScriptObject.java43 public Object get(int index) { argument
50 public void put(int index, Object value) { argument
57 public boolean has(int index) { argument
65 public boolean delete(int index) { argument
H A DScriptObject.java58 public Object get(int index); argument
68 public void put(int index, Object value); argument
78 public boolean has(int index); argument
88 public boolean delete(int index); argument
/openjdk10/hotspot/src/cpu/x86/vm/
H A DtemplateTable_x86.hpp30 Register index = noreg, // itable index, MethodType, etc.
34 static void invokevirtual_helper(Register index, Register recv,
39 static void index_check(Register array, Register index);
40 static void index_check_without_pop(Register array, Register index);
/openjdk10/hotspot/src/cpu/s390/vm/
H A DtemplateTable_s390.hpp31 Register index = noreg, // itable index, MethodType, etc.
34 static void invokevirtual_helper(Register index, Register recv,
38 static void index_check(Register array, Register index, unsigned int shift);
39 static void index_check_without_pop(Register array, Register index);
/openjdk10/jaxp/src/jdk.xml.dom/share/classes/org/w3c/dom/css/
H A DCSSRuleList.java48 * integral index, starting from 0.
61 * Used to retrieve a CSS rule by ordinal index. The order in this
63 * If index is greater than or equal to the number of rules in the list,
65 * @param index Index into the collection
66 * @return The style rule at the <code>index</code> position in the
68 * valid index.
70 public CSSRule item(int index); argument
H A DCSSValueList.java51 * integral index, starting from 0.
64 * Used to retrieve a <code>CSSValue</code> by ordinal index. The order in
66 * property. If index is greater than or equal to the number of values
68 * @param index Index into the collection.
69 * @return The <code>CSSValue</code> at the <code>index</code> position
71 * not a valid index.
73 public CSSValue item(int index); argument
/openjdk10/jaxp/src/jdk.xml.dom/share/classes/org/w3c/dom/stylesheets/
H A DStyleSheetList.java48 * integral index, starting from 0.
61 * Used to retrieve a style sheet by ordinal index. If index is greater
64 * @param index Index into the collection
65 * @return The style sheet at the <code>index</code> position in the
67 * valid index.
69 public StyleSheet item(int index); argument
/openjdk10/jdk/src/java.desktop/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...]
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DArrayReference.java54 * @param index the index of the component to retrieve
55 * @return the {@link Value} at the given index.
57 * <CODE><I>index</I></CODE> is outside the range of this array,
60 * <I>index</I> &lt; 0
61 * <I>index</I> &gt;= {@link #length() length()} </PRE>
63 Value getValue(int index); argument
69 * component ordered by array index. For zero length arrays,
77 * @param index the index o
98 getValues(int index, int length) argument
128 setValue(int index, Value value) argument
206 setValues(int index, List<? extends Value> values, int srcIndex, int length) argument
[all...]
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/
H A DTreeDriver.java37 * @param index Node index.
39 public void expandItem(ComponentOperator oper, int index); argument
45 * @param index Node index.
47 public void collapseItem(ComponentOperator oper, int index); argument
53 * @param index Node index.
57 public void editItem(ComponentOperator oper, int index, Object newValue, Timeout waitEditorTime); argument
63 * @param index Nod
66 startEditing(ComponentOperator oper, int index, Timeout waitEditorTime) argument
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DTypeArray.java55 public byte getByteAt(long index) { argument
56 if (index < 0 || index >= getLength()) {
57 throw new ArrayIndexOutOfBoundsException(index + " " + getLength());
59 long offset = baseOffsetInBytes(BasicType.T_BYTE) + index * getHeap().getByteSize();
63 public boolean getBooleanAt(long index) { argument
64 long offset = baseOffsetInBytes(BasicType.T_BOOLEAN) + index * getHeap().getBooleanSize();
68 public char getCharAt(long index) { argument
69 long offset = baseOffsetInBytes(BasicType.T_CHAR) + index * getHeap().getCharSize();
73 public int getIntAt(long index) { argument
78 getShortAt(long index) argument
83 getLongAt(long index) argument
88 getFloatAt(long index) argument
93 getDoubleAt(long index) argument
[all...]
H A DFieldType.java89 int index = 1;
91 index = skipOptionalSize(signature, index);
92 while (signature.getByteAt(index) == '[') {
93 index++;
95 skipOptionalSize(signature, index);
97 int elementType = BasicType.charToType((char) signature.getByteAt(index));
101 private int skipOptionalSize(Symbol sig, int index) { argument
102 byte c = sig.getByteAt(index);
104 ++index;
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DUndefinedArrayFilter.java113 public ArrayData set(final int index, final Object value, final boolean strict) { argument
114 undefined.clear(index);
117 undefined.set(index);
121 return super.set(index, value, strict);
125 public ArrayData set(final int index, final int value, final boolean strict) { argument
126 undefined.clear(index);
128 return super.set(index, value, strict);
132 public ArrayData set(final int index, final double value, final boolean strict) { argument
133 undefined.clear(index);
135 return super.set(index, valu
139 getInt(final int index) argument
148 getIntOptimistic(final int index, final int programPoint) argument
157 getDouble(final int index) argument
166 getDoubleOptimistic(final int index, final int programPoint) argument
175 getObject(final int index) argument
184 delete(final int index) argument
[all...]
/openjdk10/hotspot/test/compiler/gcbarriers/
H A DG1CrashTest.java57 int index = hash % set.length;
58 Object cur = set[index];
60 set[index] = key;
62 insertKeyRehash(key, index, hash, cur);
65 static void insertKeyRehash(Object key, int index, int hash, Object cur) { argument
66 int loopIndex = index;
71 index--;
72 if (index < 0)
73 index += set.length;
74 cur = set[index];
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/util/locale/
H A DLocaleSyntaxException.java38 private int index = -1; field in class:LocaleSyntaxException
46 index = errorIndex;
50 return index;
/openjdk10/jdk/src/java.desktop/share/classes/javax/accessibility/
H A DAccessibleExtendedText.java74 * @param startIndex the start index in the text
75 * @param endIndex the end index in the text
82 * Returns the {@code AccessibleTextSequence} at a given index.
86 * @param index an index within the text
88 * {@code part} and {@code index} are valid. Otherwise, {@code null}
94 public AccessibleTextSequence getTextSequenceAt(int part, int index); argument
97 * Returns the {@code AccessibleTextSequence} after a given index.
101 * @param index an index withi
109 getTextSequenceAfter(int part, int index) argument
124 getTextSequenceBefore(int part, int index) argument
[all...]

Completed in 314 milliseconds

1234567891011>>