Searched defs:index (Results 301 - 325 of 1255) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/test/javax/swing/text/WrappedPlainView/6857057/
H A DStubBranchElement.java76 public Element getElement(int index) { argument
77 return children[index];
H A DStubLeafElement.java74 public Element getElement(int index) { argument
/openjdk7/jdk/src/share/classes/sun/management/counter/perf/
H A DPerfByteArrayCounter.java65 public byte byteAt(int index) { argument
66 bb.position(index);
H A DPerfLongArrayCounter.java67 public long longAt(int index) { argument
68 lb.position(index);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSelectionKeyImpl.java45 private int index; field in class:SelectionKeyImpl
64 return index;
68 index = i;
/openjdk7/jdk/src/share/native/sun/reflect/
H A DConstantPool.c36 (JNIEnv *env, jobject unused, jobject jcpool, jint index)
38 return JVM_ConstantPoolGetClassAt(env, unused, jcpool, index);
42 (JNIEnv *env, jobject unused, jobject jcpool, jint index)
44 return JVM_ConstantPoolGetClassAtIfLoaded(env, unused, jcpool, index);
48 (JNIEnv *env, jobject unused, jobject jcpool, jint index)
50 return JVM_ConstantPoolGetMethodAt(env, unused, jcpool, index);
54 (JNIEnv *env, jobject unused, jobject jcpool, jint index)
56 return JVM_ConstantPoolGetMethodAtIfLoaded(env, unused, jcpool, index);
60 (JNIEnv *env, jobject unused, jobject jcpool, jint index)
62 return JVM_ConstantPoolGetFieldAt(env, unused, jcpool, index);
35 Java_sun_reflect_ConstantPool_getClassAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
41 Java_sun_reflect_ConstantPool_getClassAtIfLoaded0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
47 Java_sun_reflect_ConstantPool_getMethodAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
53 Java_sun_reflect_ConstantPool_getMethodAtIfLoaded0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
59 Java_sun_reflect_ConstantPool_getFieldAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
65 Java_sun_reflect_ConstantPool_getFieldAtIfLoaded0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
71 Java_sun_reflect_ConstantPool_getMemberRefInfoAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
77 Java_sun_reflect_ConstantPool_getIntAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
83 Java_sun_reflect_ConstantPool_getLongAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
89 Java_sun_reflect_ConstantPool_getFloatAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
95 Java_sun_reflect_ConstantPool_getDoubleAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
101 Java_sun_reflect_ConstantPool_getStringAt0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
107 Java_sun_reflect_ConstantPool_getUTF8At0(JNIEnv *env, jobject unused, jobject jcpool, jint index) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DGrowableRectArray.java41 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...]
/openjdk7/langtools/test/tools/javac/processing/model/element/
H A DTestNames.java122 public char charAt(int index) { argument
123 return name.charAt(index);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DLocalVariableTable.java151 /** @return first matching variable using index
153 public final LocalVariable getLocalVariable(int index) { argument
155 if(local_variable_table[i].getIndex() == index)
H A DStackMapType.java75 private int index = -1; // Index to CONSTANT_Class or offset field in class:StackMapType
95 * @param index index to constant pool, or byte code offset
97 public StackMapType(byte type, int index, ConstantPool constant_pool) { argument
99 setIndex(index);
110 public void setIndex(int t) { index = t; }
112 /** @return index to constant pool if type == ITEM_Object, or offset
115 public int getIndex() { return index; }
139 return ", class=" + constant_pool.constantToString(index, Constants.CONSTANT_Class);
141 return ", offset=" + index;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DCPInstruction.java67 * Abstract super class for instructions that use an index into the
79 protected int index; // index to constant pool field in class:CPInstruction
88 * @param index to constant pool
90 protected CPInstruction(short opcode, int index) { argument
92 setIndex(index);
101 out.writeShort(index);
108 * "("&lt;length of instruction&gt;")" "&lt;"&lt; constant pool index&gt;"&gt;"
114 return super.toString(verbose) + " " + index;
121 Constant c = cp.getConstant(index);
151 setIndex(int index) argument
[all...]
H A DINVOKEINTERFACE.java82 public INVOKEINTERFACE(int index, int nargs) { argument
83 super(Constants.INVOKEINTERFACE, index);
98 out.writeShort(index);
110 * Read needed data (i.e., index) from file.
H A DLDC.java78 public LDC(int index) { argument
79 super(com.sun.org.apache.bcel.internal.Constants.LDC_W, index);
85 if(index <= com.sun.org.apache.bcel.internal.Constants.MAX_BYTE) { // Fits in one byte?
102 out.writeByte(index);
104 out.writeShort(index);
108 * Set the index to constant pool and adjust size.
110 public final void setIndex(int index) { argument
111 super.setIndex(index);
116 * Read needed data (e.g. index) from file.
122 index
[all...]
H A DMULTIANEWARRAY.java80 public MULTIANEWARRAY(int index, short dimensions) { argument
81 super(com.sun.org.apache.bcel.internal.Constants.MULTIANEWARRAY, index);
96 out.writeShort(index);
120 return super.toString(verbose) + " " + index + " " + dimensions;
H A DRET.java72 private int index; // index to local variable containg the return address field in class:RET
80 public RET(int index) { argument
82 setIndex(index); // May set wide as side effect
96 out.writeShort(index);
98 out.writeByte(index);
102 if(wide = index > com.sun.org.apache.bcel.internal.Constants.MAX_BYTE)
109 * Read needed data (e.g. index) from file.
116 index = bytes.readUnsignedShort();
119 index
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClass2HTML.java112 int index = class_name.lastIndexOf('.');
113 if(index > -1)
114 class_package = class_name.substring(0, index);
189 * i.e., an index to a string.
191 static String referenceClass(int index) { argument
192 String str = constant_pool.getConstantString(index, CONSTANT_Class);
196 return "<A HREF=\"" + class_name + "_cp.html#cp" + index +
204 int index = type.indexOf('['); // Type is an array?
205 if(index > -1)
206 type = type.substring(0, index); // Tac
[all...]
H A DConstantHTML.java111 String referenceConstant(int index) { argument
112 return constant_ref[index];
115 private void writeConstant(int index) { argument
116 byte tag = constants[index].getTag();
121 file.println("<H4> <A NAME=cp" + index + ">" + index + "</A> " + CONSTANT_NAMES[tag] + "</H4>");
130 ConstantMethodref c = (ConstantMethodref)constant_pool.getConstant(index, CONSTANT_Methodref);
135 ConstantInterfaceMethodref c1 = (ConstantInterfaceMethodref)constant_pool.getConstant(index, CONSTANT_InterfaceMethodref);
177 constant_ref[index] = ret_type + "&nbsp;<A HREF=\"" + class_name + "_cp.html#cp" + class_index +
180 index
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DIdKeyPattern.java48 public IdKeyPattern(String index, String value) { argument
49 _index = index;
107 // to get the index for this key (which is also a node iterator).
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DAttributeSetMethodGenerator.java72 public Instruction loadParameter(int index) { argument
73 return new ALOAD(index + PARAM_START_INDEX);
76 public Instruction storeParameter(int index) { argument
77 return new ASTORE(index + PARAM_START_INDEX);
H A DNamedMethodGenerator.java42 // The index of the first parameter (after dom/iterator/handler/current)
60 public Instruction loadParameter(int index) { argument
61 return new ALOAD(index + PARAM_START_INDEX);
64 public Instruction storeParameter(int index) { argument
65 return new ASTORE(index + PARAM_START_INDEX);
H A DNodeCounterGenerator.java52 * Set the index of the register where "this" (the pointer to
55 public void setTransletIndex(int index) { argument
56 _aloadTranslet = new ALOAD(index);
60 * The index of the translet pointer within the execution of
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DNamedNodeMapImpl.java53 public Node item(int index) { argument
54 if (index < 0 && index > getLength()) {
57 return attrs[index];
/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 DObjectListImpl.java74 public Object item(int index) { argument
75 if (index < 0 || index >= fLength) {
78 return fArray[index];
84 public Object get(int index) { argument
85 if (index >= 0 && index < fLength) {
86 return fArray[index];
88 throw new IndexOutOfBoundsException("Index: " + index);
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);

Completed in 325 milliseconds

<<11121314151617181920>>