Searched defs:index (Results 1 - 25 of 1255) sorted by relevance

1234567891011>>

/openjdk7/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 return get_typeArrayOop()->char_at(index);
H A DciObjArray.cpp36 ciObject* ciObjArray::obj_at(int index) { argument
39 if (index < 0 || index >= array->length()) return NULL;
40 oop o = array->obj_at(index);
H A DciCPCache.cpp34 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/hotspot/src/share/vm/classfile/
H A DclassFileError.cpp38 void ClassFileParser::classfile_parse_error(const char* msg, int index, TRAPS) { argument
41 msg, index, _class_name->as_C_string());
50 void ClassFileParser::classfile_parse_error(const char* msg, int index, const char *name, TRAPS) { argument
53 msg, index, name, _class_name->as_C_string());
/openjdk7/jaxp/src/org/w3c/dom/
H A DDOMImplementationList.java48 * <code>DOMImplementationList</code> are accessible via an integral index,
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
59 * @param index Index into the collection.
60 * @return The <code>DOMImplementation</code> at the <code>index</code>
62 * <code>null</code> if that is not a valid index.
64 public DOMImplementation item(int index); argument
H A DNodeList.java49 * index, starting from 0.
54 * Returns the <code>index</code>th item in the collection. If
55 * <code>index</code> is greater than or equal to the number of nodes in
57 * @param index Index into the collection.
58 * @return The node at the <code>index</code>th position in the
60 * index.
62 public Node item(int index); argument
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/jdk/src/share/classes/java/lang/
H A DArrayIndexOutOfBoundsException.java30 * 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 DStringIndexOutOfBoundsException.java29 * 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/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsCompactionManager.inline.hpp31 void ParCompactionManager::push_objarray(oop obj, size_t index) argument
33 ObjArrayTask task(obj, index);
38 void ParCompactionManager::push_region(size_t index) argument
42 ParallelCompactData::RegionData* const region_ptr = sd.region(index);
46 region_stack()->push(index);
/openjdk7/hotspot/src/share/vm/runtime/
H A DthreadLocalStorage.hpp82 static inline void set_thread_index(int index) { _thread_index = index; } argument
/openjdk7/hotspot/test/compiler/6659207/
H A DTest.java34 static int index(int i) { method in class:Test
43 i = index(i);
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DConstantPoolException.java37 ConstantPoolException(int index) { argument
38 this.index = index;
41 public final int index; field in class:ConstantPoolException
/openjdk7/jdk/src/share/native/java/lang/
H A DThrowable.c61 jobject throwable, jint index)
63 return JVM_GetStackTraceElement(env, throwable, index);
60 Java_java_lang_Throwable_getStackTraceElement(JNIEnv *env, jobject throwable, jint index) argument
/openjdk7/jdk/test/javax/swing/JTableHeader/6884066/
H A Dbug6884066.java81 private static void checkColumn(int index, String str) { argument
83 Object value = model.getColumn(index).getHeaderValue();
86 "index = " + index + " value = " + value);
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DByteArrayMonitor.java53 * @return byte - the byte value at the specified index in the
56 public byte byteAt(int index); argument
/openjdk7/jdk/src/share/classes/sun/management/counter/
H A DByteArrayCounter.java43 public byte byteAt(int index); argument
H A DLongArrayCounter.java42 public long longAt(int index); argument
/openjdk7/jaxws/src/share/jaxws_classes/org/relaxng/datatype/
H A DDatatypeException.java44 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 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...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DContextList.java80 * Returns the <code>String</code> object at the given index.
82 * @param index the index of the string desired, with 0 being the
83 index of the first string
84 * @return the string at the given index
85 * @exception org.omg.CORBA.Bounds if the index is greater than
90 public abstract String item(int index) throws org.omg.CORBA.Bounds; argument
93 * Removes the <code>String</code> object at the given index. Note that
97 * @param index the index o
104 remove(int index) argument
[all...]
H A DExceptionList.java49 * or deleting an item at a designated index.
76 * Returns the <code>TypeCode</code> object at the given index. The first
77 * item is at index 0.
79 * @param index the index of the <code>TypeCode</code> object desired.
83 * @return the <code>TypeCode</code> object at the given index
84 * @exception org.omg.CORBA.Bounds if the index given is greater than
89 public abstract TypeCode item(int index) argument
93 * Removes the <code>TypeCode</code> object at the given index.
97 * @param index th
108 remove(int index) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCV9ConditionFlags.java32 public static String getFlagName(int index) { argument
33 return ccFlagNames[index];
H A DV9IntRegisterBranchDecoder.java34 String getRegisterConditionName(int index) { argument
35 return integerRegisterConditionNames[index];
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFStringTable.java28 public String get(int index); argument

Completed in 86 milliseconds

1234567891011>>