Searched refs:index (Results 126 - 150 of 2073) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DIdentityHashtableEnumerator.java45 int index; field in class:IdentityHashtableEnumerator
52 this.index = table.length;
59 while (index-- > 0) {
60 if ((entry = table[index]) != null) {
69 while ((index-- > 0) && ((entry = table[index]) == null));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/
H A DAttributesHolder.java60 public final String getPrefix(int index) { argument
61 return (index >= 0 && index < _attributeCount) ?
62 _strings[(index << 3) + PREFIX] : null;
65 public final String getLocalName(int index) { argument
66 return (index >= 0 && index < _attributeCount) ?
67 _strings[(index << 3) + LOCAL_NAME] : null;
70 public final String getQName(int index) { argument
71 return (index >
75 getType(int index) argument
80 getURI(int index) argument
85 getValue(int index) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_string.c73 list_item(TableIndex index, void *str, int len, void *info_ptr, void *arg) argument
75 debug_message( "0x%08x: String \"%s\"\n", index, (const char *)str);
96 string_get(StringIndex index) argument
101 table_get_key(gdata->string_table, index, &key, &key_len);
107 string_get_len(StringIndex index) argument
112 table_get_key(gdata->string_table, index, &key, &key_len);
H A Dhprof_site.h46 TraceIndex site_get_trace_index(SiteIndex index);
47 ClassIndex site_get_class_index(SiteIndex index);
51 void site_update_stats(SiteIndex index, jint size, jint hits);
/openjdk7/jdk/src/share/classes/java/util/
H A DVector.java31 * accessed using an integer index. However, the size of a
67 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
176 * The item at index {@code k} in this vector is copied into
277 * components at index {@code newSize} and greater are discarded.
328 * this vector. The first item generated is the item at index {@code 0},
329 * then the item at index {@code 1}, and so on.
367 * Returns the index of the first occurrence of the specified element
369 * More formally, returns the lowest index {@code i} such that
371 * or -1 if there is no such index.
374 * @return the index o
397 indexOf(Object o, int index) argument
441 lastIndexOf(Object o, int index) argument
468 elementAt(int index) argument
524 setElementAt(E obj, int index) argument
551 removeElementAt(int index) argument
591 insertElementAt(E obj, int index) argument
729 elementData(int index) argument
742 get(int index) argument
760 set(int index, E element) argument
809 add(int index, E element) argument
824 remove(int index) argument
949 addAll(int index, Collection<? extends E> c) argument
1088 listIterator(int index) argument
1164 ListItr(int index) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DAttributesHolder.java77 public final String getLocalName(int index) { argument
78 return _names[index].localName;
81 public final String getQName(int index) { argument
82 return _names[index].getQNameString();
85 public final String getType(int index) { argument
89 public final String getURI(int index) { argument
90 return _names[index].namespaceName;
93 public final String getValue(int index) { argument
94 final String value = _values[index];
99 if (_algorithmData[index]
193 getAlgorithmURI(int index) argument
197 getAlgorithmIndex(int index) argument
201 getAlgorithmData(int index) argument
205 getAlpababet(int index) argument
209 getToIndex(int index) argument
235 getQualifiedName(int index) argument
239 getPrefix(int index) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DProfileData.java54 int intptrAt(int index) { argument
55 //assert(0 <= index && index < cellCount(), "oob");
56 return data().cellAt(index);
58 int intAt(int index) { argument
59 return (int)intptrAt(index);
61 int uintAt(int index) { argument
62 return (int)intptrAt(index);
64 Oop oopAt(int index) { argument
65 return data().oopAt(index);
68 addressAt(int index) argument
77 cellOffset(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleText.java92 * Given a point in local coordinates, return the zero-based index
97 * @return the zero-based index of the character under Point p; if
104 * index into the string. The bounds are returned in local
105 * coordinates. If the index is invalid an empty rectangle is returned.
107 * @param i the index into the String
109 * if index is invalid return an empty rectangle.
123 * Note: That to the right of the caret will have the same index
130 * Returns the String at a given index.
133 * @param index an index withi
136 getAtIndex(int part, int index) argument
145 getAfterIndex(int part, int index) argument
154 getBeforeIndex(int part, int index) argument
[all...]
/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/ci/
H A DciCPCache.hpp59 size_t get_f1_offset(int index);
61 bool is_f1_null_at(int index);
63 int get_pool_index(int index);
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestListeners.java91 private final int index; field in class:TestListeners
93 public TestListeners(int index) { argument
94 this.index = index;
98 if (this.index < 0)
99 throw new Error("Unexpected listener: " + this.index);
101 System.out.println("index = " + this.index);
102 if (this.index != current++)
103 throw new Error("Unexpected listener: " + this.index);
[all...]
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestListeners.java92 private final int index; field in class:TestListeners
94 public TestListeners(int index) { argument
95 this.index = index;
99 if (this.index < 0)
100 throw new Error("Unexpected listener: " + this.index);
102 System.out.println("index = " + this.index);
103 if (this.index != current++)
104 throw new Error("Unexpected listener: " + this.index);
[all...]
/openjdk7/jdk/make/mkdemo/management/
H A DMakefile45 all build :: $(DEMODIR)/management/index.html
47 $(DEMODIR)/management/index.html: $(SHARE_SRC)/demo/management/index.html
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DIndexedInstruction.java62 * Denote entity that refers to an index, e.g. local variable instructions,
69 public void setIndex(int index); argument
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClassVector.java74 public JavaClass elementAt(int index) { return (JavaClass)vec.get(index); } argument
75 public void removeElementAt(int index) { vec.remove(index); } argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DLSInputListImpl.java71 * Returns the <code>index</code>th item in the collection or
72 * <code>null</code> if <code>index</code> is greater than or equal to
73 * the number of objects in the list. The index starts at 0.
74 * @param index index into the collection.
75 * @return The <code>LSInput</code> at the <code>index</code>th
77 * the index specified is not valid.
79 public LSInput item(int index) { argument
80 if (index < 0 || index >
90 get(int index) argument
[all...]
H A DShortListImpl.java85 public short item(int index) throws XSException { argument
86 if (index < 0 || index >= fLength) {
89 return fArray[index];
113 public Object get(int index) { argument
114 if (index >= 0 && index < fLength) {
115 return new Short(fArray[index]);
117 throw new IndexOutOfBoundsException("Index: " + index);
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLStreamReader.java383 /** Returns the qname of the attribute at the provided index
385 * @param index the position of the attribute
389 public QName getAttributeName(int index); argument
393 * index
394 * @param index the position of the attribute
398 public String getAttributeNamespace(int index); argument
402 * index
403 * @param index the position of the attribute
407 public String getAttributeLocalName(int index); argument
411 * provided index
416 getAttributePrefix(int index) argument
425 getAttributeType(int index) argument
434 getAttributeValue(int index) argument
443 isAttributeSpecified(int index) argument
465 getNamespacePrefix(int index) argument
475 getNamespaceURI(int index) argument
[all...]
/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMStringList.java48 * <code>DOMStringList</code> are accessible via an integral index, starting
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
58 * @param index Index into the collection.
59 * @return The <code>DOMString</code> at the <code>index</code>th
61 * that is not a valid index.
63 public String item(int index); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/amd64/
H A DBsdAMD64ThreadContext.java39 public void setRegisterAsAddress(int index, Address value) { argument
40 setRegister(index, debugger.getAddressValue(value));
43 public Address getRegisterAsAddress(int index) { argument
44 return debugger.newAddress(getRegister(index));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/x86/
H A DBsdX86ThreadContext.java39 public void setRegisterAsAddress(int index, Address value) { argument
40 setRegister(index, debugger.getAddressValue(value));
43 public Address getRegisterAsAddress(int index) { argument
44 return debugger.newAddress(getRegister(index));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/amd64/
H A DLinuxAMD64ThreadContext.java39 public void setRegisterAsAddress(int index, Address value) { argument
40 setRegister(index, debugger.getAddressValue(value));
43 public Address getRegisterAsAddress(int index) { argument
44 return debugger.newAddress(getRegister(index));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/ia64/
H A DLinuxIA64ThreadContext.java39 public void setRegisterAsAddress(int index, Address value) { argument
40 setRegister(index, debugger.getAddressValue(value));
43 public Address getRegisterAsAddress(int index) { argument
44 return debugger.newAddress(getRegister(index));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/sparc/
H A DLinuxSPARCThreadContext.java39 public void setRegisterAsAddress(int index, Address value) { argument
40 setRegister(index, debugger.getAddressValue(value));
43 public Address getRegisterAsAddress(int index) { argument
44 return debugger.newAddress(getRegister(index));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/x86/
H A DLinuxX86ThreadContext.java39 public void setRegisterAsAddress(int index, Address value) { argument
40 setRegister(index, debugger.getAddressValue(value));
43 public Address getRegisterAsAddress(int index) { argument
44 return debugger.newAddress(getRegister(index));

Completed in 120 milliseconds

1234567891011>>