Searched defs:index (Results 601 - 625 of 1255) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DElementTreePanel.java491 * Returns the child of <I>parent</I> at index <I>index</I> in
494 * not return null if <i>index</i> is a valid index for
495 * <i>parent</i> (that is <i>index</i> >= 0 && <i>index</i>
499 * @return the child of <I>parent</I> at index <I>index</I>
502 public Object getChild(Object parent, int index) { argument
504 return rootElements[index];
[all...]
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DBreakIteratorProviderImpl.java93 public FooBreakIterator(Type t, int index) { argument
H A DDateFormatSymbolsProviderImpl.java65 for (int index = 0; index < avail.length; index ++) {
66 if (Utils.supportsLocale(avail[index], locale)) {
67 fdfs = new FooDateFormatSymbols(index);
86 public FooDateFormatSymbols(int index) { argument
87 super(DateFormatSymbolsProviderImpl.this.avail[index]);
88 dialect = DateFormatSymbolsProviderImpl.this.dialect[index];
156 * <code>Calendar.MONDAY</code>, etc. to index the result array.
181 * <code>Calendar.MONDAY</code>, etc. to index th
[all...]
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DStressTest.java143 final int index; field in class:StressTest.Worker
152 index = i % locales.length;
153 locale = locales[index];
155 str = expected[index];
156 max = rand.nextInt((index + 1) * 500) + 1000;
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolVisitor.java33 * The first argument is always the constant pool index.
76 * @param index the constant pool index
82 public void visitUTF8(int index, byte tag, String utf8) { argument
91 * @param index the constant pool index
100 public void visitConstantValue(int index, byte tag, Object value) { argument
105 * @param index the constant pool index
109 * @param nameIndex the index o
113 visitConstantString(int index, byte tag, String name, int nameIndex) argument
128 visitDescriptor(int index, byte tag, String memberName, String signature, int memberNameIndex, int signatureIndex) argument
147 visitMemberRef(int index, byte tag, String className, String memberName, String signature, int classNameIndex, int descriptorIndex) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DHeaderParser.java196 int index; field in class:HeaderParser.ParserIterator
203 return index<nkeys;
206 return tab[index++][returnsValue?1:0];
/openjdk7/jdk/src/share/classes/sun/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
41 public Member getMethodAt (int index) { return getMethodAt0 (constantPoolOop, index); } argument
42 public Member getMethodAtIfLoaded(int index) { return getMethodAtIfLoaded0(constantPoolOop, index); } argument
43 public Field getFieldAt (int index) { retur argument
44 getFieldAtIfLoaded(int index) argument
47 getMemberRefInfoAt(int index) argument
48 getIntAt(int index) argument
49 getLongAt(int index) argument
50 getFloatAt(int index) argument
51 getDoubleAt(int index) argument
52 getStringAt(int index) argument
53 getUTF8At(int index) argument
67 getClassAt0(Object constantPoolOop, int index) argument
68 getClassAtIfLoaded0(Object constantPoolOop, int index) argument
69 getMethodAt0(Object constantPoolOop, int index) argument
70 getMethodAtIfLoaded0(Object constantPoolOop, int index) argument
71 getFieldAt0(Object constantPoolOop, int index) argument
72 getFieldAtIfLoaded0(Object constantPoolOop, int index) argument
73 getMemberRefInfoAt0(Object constantPoolOop, int index) argument
74 getIntAt0(Object constantPoolOop, int index) argument
75 getLongAt0(Object constantPoolOop, int index) argument
76 getFloatAt0(Object constantPoolOop, int index) argument
77 getDoubleAt0(Object constantPoolOop, int index) argument
78 getStringAt0(Object constantPoolOop, int index) argument
79 getUTF8At0(Object constantPoolOop, int index) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DRegion.c106 pRgnInfo->index = 0;
120 int index = 0; local
122 while (index < pRgnInfo->endIndex) {
123 jint xy1 = pBands[index++];
124 jint xy2 = pBands[index++];
125 jint numrects = pBands[index++];
131 xy1 = pBands[index++];
132 xy2 = pBands[index++];
142 index += numrects * 2;
151 jint index local
[all...]
/openjdk7/jdk/src/share/native/sun/management/
H A DFlag.c84 jint num_flags, i, index; local
117 index = 0;
173 (*env)->SetObjectArrayElement(env, flags, index, flag);
174 index++;
177 if (index != num_flags) {
H A DGcInfoBuilder.c105 jsize index, jlong value) {
110 (*env)->SetObjectArrayElement(env, array, index, obj);
114 jsize index, jboolean value) {
119 (*env)->SetObjectArrayElement(env, array, index, obj);
123 jsize index, jbyte value) {
128 (*env)->SetObjectArrayElement(env, array, index, obj);
132 jsize index, jint value) {
137 (*env)->SetObjectArrayElement(env, array, index, obj);
141 jsize index, jshort value) {
146 (*env)->SetObjectArrayElement(env, array, index, ob
104 setLongValueAtObjectArray(JNIEnv *env, jobjectArray array, jsize index, jlong value) argument
113 setBooleanValueAtObjectArray(JNIEnv *env, jobjectArray array, jsize index, jboolean value) argument
122 setByteValueAtObjectArray(JNIEnv *env, jobjectArray array, jsize index, jbyte value) argument
131 setIntValueAtObjectArray(JNIEnv *env, jobjectArray array, jsize index, jint value) argument
140 setShortValueAtObjectArray(JNIEnv *env, jobjectArray array, jsize index, jshort value) argument
149 setDoubleValueAtObjectArray(JNIEnv *env, jobjectArray array, jsize index, jdouble value) argument
158 setFloatValueAtObjectArray(JNIEnv *env, jobjectArray array, jsize index, jfloat value) argument
167 setCharValueAtObjectArray(JNIEnv *env, jobjectArray array, jsize index, jchar value) argument
[all...]
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DPoller.java319 private native int nativeRemoveIndex(int handle, int index) argument
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DClassFileReader.java203 private int index = 0; field in class:ClassFileReader.DirectoryReader.DirectoryIterator
206 index = 0;
210 return index != entries.size();
217 Path path = entries.get(index++);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/util/
H A DIntegerArray.java66 public final int at(int index) { argument
67 return _array[index];
70 public final void set(int index, int value) { argument
71 _array[index] = value;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNamedNodeMapImpl.java51 * NOTE: item()'s integer index does _not_ imply that the named nodes
102 * Caveat: This is a count rather than an index, so the
111 * Retrieve an item from the map by 0-based index.
113 * @param index Which item to retrieve. Note that indices are just an
117 * index(i) will always refer to the same entry, or that there is any
121 * @return the node which currenly has the specified index, or null if index
124 public Node item(int index) { argument
125 return (nodes != null && index < nodes.size()) ?
126 (Node)(nodes.get(index))
537 removeItem(int index) argument
544 getItem(int index) argument
[all...]
H A DParentNode.java450 // the cache to the new node to match the cached index
730 * Return the Nth immediate child of this node, or null if the index is
732 * @param index int
734 private Node nodeListItem(int index) { argument
739 return index == 0 ? firstChild : null;
750 if (i < index) {
751 while (i < index && n != null) {
756 else if (i > index) {
757 while (i > index && n != null) {
765 if (index <
799 item(int index) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DIdentityConstraint.java116 /** Returns the field at the specified index. */
117 public Field getFieldAt(int index) { argument
118 return fFields[index];
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSNamedMapImpl.java172 * Returns the <code>index</code>th item in the collection or
173 * <code>null</code> if <code>index</code> is greater than or equal to
174 * the number of objects in the list. The index starts at 0.
175 * @param index index into the collection.
176 * @return The <code>XSObject</code> at the <code>index</code>th
178 * the index specified is not valid.
180 public synchronized XSObject item(int index) { argument
191 if (index < 0 || index >
[all...]
H A DXSObjectListImpl.java109 * Returns the <code>index</code>th item in the collection. The index
110 * starts at 0. If <code>index</code> is greater than or equal to the
112 * @param index index into the collection.
113 * @return The XSObject at the <code>index</code>th position in the
115 * valid index.
117 public XSObject item(int index) { argument
118 if (index < 0 || index >
142 addXSObject(int index, XSObject object) argument
154 get(int index) argument
173 listIterator(int index) argument
180 listIterator0(int index) argument
228 private int index; field in class:XSObjectListImpl.XSObjectListIterator
229 XSObjectListIterator(int index) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorImpl.java273 public AttributePSVI getAttributePSVI(int index) { argument
274 return (fSAXValidatorHelper != null) ? fSAXValidatorHelper.getAttributePSVI(index) : null;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLAttributes.java108 * @return Returns the attribute index.
122 * Removes the attribute at the specified index.
125 * attributes following the attribute at the specified index.
127 * @param attrIndex The attribute index.
146 * Look up the index of an attribute by XML 1.0 qualified name.
150 * @return The index of the attribute, or -1 if it does not
156 * Look up the index of an attribute by Namespace name.
162 * @return The index of the attribute, or -1 if it does not
168 * Sets the name of the attribute at the specified index.
170 * @param attrIndex The attribute index
189 getPrefix(int index) argument
202 getURI(int index) argument
215 getLocalName(int index) argument
228 getQName(int index) argument
231 getQualifiedName(int index) argument
271 getType(int index) argument
331 getValue(int index) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMIterator.java238 * the <code>setItem(int node, int index)</code> method.
247 * take place at index 1.
254 * If an index is requested, NodeSetDTM will call this method
255 * to run the iterator to the index. By default this sets
256 * m_next to the index. If the index argument is -1, this
260 * @param index The index to run to, or -1 if the iterator should be run
263 public void runTo(int index); argument
268 * @param i Must be a valid index
282 item(int index) argument
297 setItem(int node, int index) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DNodeVector.java356 * Inserts the specified node in this vector at the specified index.
357 * Each component in this vector with an index greater or equal to
358 * the specified index is shifted upward to have an index one greater
425 * Inserts the specified node in this vector at the specified index.
426 * Each component in this vector with an index greater or equal to
427 * the specified index is shifted upward to have an index one greater
459 * with an index greater or equal to the object's index i
523 setElementAt(int node, int index) argument
589 indexOf(int elem, int index) argument
[all...]
H A DSuballocatedIntVector.java151 // Is the new index an index into the cache row of m_map?
163 int index=m_firstFree>>>m_SHIFT;
166 if(index>=m_map.length)
168 int newsize=index+m_numblocks;
173 int[] block=m_map[index];
175 block=m_map[index]=new int[m_blocksize];
201 int index=m_firstFree>>>m_SHIFT;
206 if(index>=m_map.length)
208 int newsize=index
470 indexOf(int elem, int index) argument
[all...]
H A DXMLString.java89 * Returns the character at the specified index. An index ranges
91 * of the sequence is at index <code>0</code>, the next at index
94 * @param index the index of the character.
95 * @return the character at the specified index of this string.
96 * The first character is at index <code>0</code>.
97 * @exception IndexOutOfBoundsException if the <code>index</code>
101 public abstract char charAt(int index); argument
[all...]
H A DXMLStringDefault.java107 * Returns the character at the specified index. An index ranges
109 * of the sequence is at index <code>0</code>, the next at index
112 * @param index the index of the character.
113 * @return the character at the specified index of this string.
114 * The first character is at index <code>0</code>.
115 * @exception IndexOutOfBoundsException if the <code>index</code>
119 public char charAt(int index) argument
[all...]

Completed in 260 milliseconds

<<21222324252627282930>>