/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciTypeArray.cpp | 39 jchar ciTypeArray::char_at(int index) { argument 41 assert(index >= 0 && index < length(), "out of range"); 42 return get_typeArrayOop()->char_at(index);
|
H A D | ciCPCache.cpp | 34 size_t ciCPCache::get_f1_offset(int index) { argument 38 constantPoolCacheOopDesc::entry_offset(index) + 47 bool ciCPCache::is_f1_null_at(int index) { argument 49 return entry_at(index)->is_f1_null(); 55 int ciCPCache::get_pool_index(int index) { argument 57 ConstantPoolCacheEntry* e = entry_at(index);
|
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/ |
H A D | ConstantPoolException.java | 37 ConstantPoolException(int index) { argument 38 this.index = index; 41 public final int index; field in class:ConstantPoolException
|
/openjdk7/jdk/src/share/classes/sun/reflect/ |
H A D | ConstantPool.java | 35 // 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...] |
H A D | ByteVector.java | 32 public byte get(int index); argument 33 public void put(int index, byte value); argument
|
/openjdk7/jdk/src/share/classes/java/text/ |
H A D | ParsePosition.java | 50 * you can use the same <code>ParsePosition</code>, since the index parameter 63 * with each call setting index up for the next one. 65 int index = 0; field in class:ParsePosition 70 * is the index of the character at which parsing will begin; on output, it 71 * is the index of the character following the last character parsed. 74 return index; 80 public void setIndex(int index) { argument 81 this.index = index; 85 * Create a new ParsePosition with the given initial index 87 ParsePosition(int index) argument [all...] |
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/ |
H A D | GrowableEltArray.java | 44 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 D | GrowableRectArray.java | 41 public final void setX(int index, int x) { argument 42 array[getCellIndex(index)] = x; 45 public final void setY(int index, int y) { argument 46 array[getCellIndex(index) + 1] = y; 49 public final void setWidth(int index, int width) { argument 50 array[getCellIndex(index) + 2] = width; 53 public final void setHeight(int index, int height) { argument 54 array[getCellIndex(index) + 3] = height; 57 public final int getX(int index) { argument 58 return array[getCellIndex(index)]; 61 getY(int index) argument 65 getWidth(int index) argument 69 getHeight(int index) argument [all...] |
H A D | GrowablePointArray.java | 43 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;
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/ |
H A D | CMStateSet.java | 122 for (int index = 0; index < fBitCount; index++) 124 if (getBit(index)) 125 strRet.append(" " + index); 154 for (int index = fByteCount - 1; index >= 0; index--) 155 fByteArray[index] &= setToAnd.fByteArray[index]; [all...] |
/openjdk7/jdk/src/share/classes/java/beans/ |
H A D | IndexedPropertyChangeEvent.java | 31 * 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...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/ |
H A D | EncodingAlgorithmAttributes.java | 61 * @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...] |
/openjdk7/jaxws/src/share/jaxws_classes/org/relaxng/datatype/ |
H A D | DatatypeException.java | 44 public DatatypeException( int index, String msg ) { argument 46 this.index = index; 60 private final int index; field in class:DatatypeException 65 * Gets the index of the content where the error occured. 66 * UNKNOWN can be returned to indicate that no index information 70 return index;
|
/openjdk7/jaxp/src/javax/xml/validation/ |
H A D | TypeInfoProvider.java | 104 * @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...] |
/openjdk7/jdk/src/share/classes/java/awt/peer/ |
H A D | ChoicePeer.java | 42 * 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...] |
/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | CompoundEnumeration.java | 37 private int index = 0; field in class:CompoundEnumeration 44 while (index < enums.length) { 45 if (enums[index] != null && enums[index].hasMoreElements()) { 48 index++; 61 return (E)enums[index].nextElement();
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | BitMap.java | 44 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...] |
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | ArrayIndexOutOfBoundsException.java | 30 * illegal index. The index is either negative or greater than or 50 * class with an argument indicating the illegal index. 52 * @param index the illegal index. 54 public ArrayIndexOutOfBoundsException(int index) { argument 55 super("Array index out of range: " + index);
|
H A D | StringIndexOutOfBoundsException.java | 29 * Thrown by <code>String</code> methods to indicate that an index 32 * thrown when the index is equal to the size of the string. 64 * class with an argument indicating the illegal index. 66 * @param index the illegal index. 68 public StringIndexOutOfBoundsException(int index) { argument 69 super("String index out of range: " + index);
|
/openjdk7/jdk/src/share/classes/javax/accessibility/ |
H A D | AccessibleExtendedTable.java | 44 * Returns the row number of an index in the table. 46 * @param index the zero-based index in the table. The index is 51 public int getAccessibleRow(int index); argument 54 * Returns the column number of an index in the table. 56 * @param index the zero-based index in the table. The index is 61 public int getAccessibleColumn(int index); argument [all...] |
/openjdk7/jdk/src/share/demo/jvmti/hprof/ |
H A D | hprof_object.h | 47 SiteIndex object_get_site(ObjectIndex index); 48 jint object_get_size(ObjectIndex index); 49 ObjectKind object_get_kind(ObjectIndex index); 50 ObjectKind object_free(ObjectIndex index); 54 void object_set_thread_serial_number(ObjectIndex index, 56 SerialNumber object_get_thread_serial_number(ObjectIndex index); 57 RefIndex object_get_references(ObjectIndex index); 58 void object_set_references(ObjectIndex index, RefIndex ref_index);
|
H A D | hprof_string.h | 46 char * string_get(StringIndex index); 47 int string_get_len(StringIndex index);
|
/openjdk7/jaxp/src/org/xml/sax/helpers/ |
H A D | AttributesImpl.java | 124 * @param index The attribute's index (zero-based). 126 * available, or null if the index is out of range. 129 public String getURI (int index) argument 131 if (index >= 0 && index < length) { 132 return data[index*5]; 142 * @param index The attribute's index (zero-based). 144 * none is available, or null if the index i 147 getLocalName(int index) argument 165 getQName(int index) argument 183 getType(int index) argument 200 getValue(int index) argument 437 setAttribute(int index, String uri, String localName, String qName, String type, String value) argument 460 removeAttribute(int index) argument 490 setURI(int index, String uri) argument 510 setLocalName(int index, String localName) argument 530 setQName(int index, String qName) argument 549 setType(int index, String type) argument 568 setValue(int index, String value) argument 622 badIndex(int index) argument [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/util/ |
H A D | AttributesImpl.java | 124 * @param index The attribute's index (zero-based). 126 * available, or null if the index is out of range. 129 public String getURI (int index) argument 131 if (index >= 0 && index < length) { 132 return data[index*5]; 142 * @param index The attribute's index (zero-based). 144 * none is available, or null if the index i 147 getLocalName(int index) argument 165 getQName(int index) argument 183 getType(int index) argument 200 getValue(int index) argument 450 setAttribute(int index, String uri, String localName, String qName, String type, String value) argument 473 removeAttribute(int index) argument 503 setURI(int index, String uri) argument 523 setLocalName(int index, String localName) argument 543 setQName(int index, String qName) argument 562 setType(int index, String type) argument 581 setValue(int index, String value) argument 635 badIndex(int index) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | SpinnerListModel.java | 62 private int index; field in class:SpinnerListModel 82 this.index = 0; 102 this.index = 0; 128 * Changes the list that defines this sequence and resets the index 146 index = 0; 160 return list.get(index); 183 int index = list.indexOf(elt); 184 if (index == -1) { 187 else if (index != this.index) { [all...] |