Searched defs:index (Results 451 - 475 of 1255) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/misc/
H A DPerformanceLogger.java228 * Sets the value of a given time and returns the index of the
241 * Sets the value of a given time and returns the index of the
252 // the index of that operation.
263 * Returns time at given index.
265 public static long getTimeAtIndex(int index) { argument
267 return times.get(index).getTime();
274 * Returns message at given index.
276 public static String getMessageAtIndex(int index) { argument
278 return times.get(index).getMessage();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DMembershipKeyImpl.java106 private final int index; field in class:MembershipKeyImpl.Type6
114 int index,
119 this.index = index;
127 int index() { method in class:MembershipKeyImpl.Type6
128 return index;
109 Type6(MulticastChannel ch, InetAddress group, NetworkInterface interf, InetAddress source, byte[] groupAddress, int index, byte[] sourceAddress) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMenuPeer.java128 public void delItem(int index) { argument
131 menuWindow.delItem(index);
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DGrowableByteArray.java80 public final int getByte(int index) argument
82 return array[getCellIndex(index)];
86 * Returns the index of the next free cell,
H A DGrowableEltArray.java44 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...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstantPool.java113 * Thus we have to increment the index counter.
207 * Retrieve constant at `index' from constant pool and resolve it to
210 * @param index of constant in constant pool
214 public String constantToString(int index, byte tag) argument
217 Constant c = getConstant(index, tag);
239 * @param index Index in constant pool
243 public Constant getConstant(int index) { argument
244 if (index >= constant_pool.length || index < 0)
246 index
261 getConstant(int index, byte tag) argument
296 getConstantString(int index, byte tag) argument
333 setConstant(int index, Constant constant) argument
[all...]
H A DLocalVariable.java66 * scope, name, signature and index on the method's frame.
78 private int index; /* Variable is `index'th local variable on field in class:LocalVariable
111 * @param index Variable is `index'th local variable on the method's frame
115 int signature_index, int index,
122 this.index = index;
149 file.writeShort(index);
193 * @return index o
114 LocalVariable(int start_pc, int length, int name_index, int signature_index, int index, ConstantPool constant_pool) argument
233 setIndex(int index) argument
[all...]
H A DLocalVariableTypeTable.java36 // u2 index;
49 // u2 index;
99 public final LocalVariable getLocalVariable(int index) { argument
101 if(local_variable_type_table[i].getIndex() == index)
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DBranchInstruction.java73 protected int index; // Branch target relative to this instruction field in class:BranchInstruction
100 index = getTargetOffset();
102 if(Math.abs(index) >= 32767) // too large for short
105 out.writeShort(index); // May be negative, i.e., point backwards
173 index = getTargetOffset();
174 t = "" + (index + position);
182 * Read needed data (e.g. index) from file. Conversion to a InstructionHandle
193 index = bytes.readShort();
199 public final int getIndex() { return index; }
266 index
[all...]
H A DFieldGen.java113 private void setValue(int index) { argument
115 Constant c = cp.getConstant(index);
213 int index = addConstant();
215 2, index, cp.getConstantPool()));
H A DLocalVariableGen.java79 private final int index; field in class:LocalVariableGen
85 * Generate a local variable that with index `index'. Note that double and long
88 * @param index index of local variable
94 public LocalVariableGen(int index, String name, Type type, argument
96 if((index < 0) || (index > Constants.MAX_SHORT))
97 throw new ClassGenException("Invalid index index
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DCachedNodeListIterator.java79 public int getNode(int index) { argument
80 if (index < _numCachedNodes) {
81 return _nodes.at(index);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DHashtable.java153 int index = (hash & 0x7FFFFFFF) % tab.length;
155 for (e = tab[index] ; e != null ; e = e.next)
169 int index = (hash & 0x7FFFFFFF) % tab.length;
171 for (e = tab[index] ; e != null ; e = e.next)
186 int i, index;
200 index = (e.hash & 0x7FFFFFFF) % newCapacity;
201 e.next = newTable[index];
202 newTable[index] = e;
223 int index = (hash & 0x7FFFFFFF) % tab.length;
225 for (e = tab[index] ;
310 int index; field in class:Hashtable.HashtableEnumerator
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DAttributeMap.java258 int index = -1;
263 index = i;
268 if (index < 0) {
273 return remove((AttrImpl)item, index, addDefault);
299 private final Node remove(AttrImpl attr, int index, argument
316 findNamePoint(name, index+1) < 0) {
329 nodes.set(index, clone);
335 nodes.remove(index);
338 nodes.remove(index);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DListDV.java115 public Object item(int index) { argument
116 if (index < 0 || index >= data.length) {
119 return data[index];
126 public Object get(int index) { argument
127 if (index >= 0 && index < data.length) {
128 return data[index];
130 throw new IndexOutOfBoundsException("Index: " + index);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java114 protected void setBeginning(int index, int v) { argument
115 this.beginpos[index] = v;
121 protected void setEnd(int index, int v) { argument
122 this.endpos[index] = v;
138 * @param index Less than <code>getNumberOfGroups()</code>.
140 public int getBeginning(int index) { argument
143 if (index < 0 || this.nofgroups <= index)
145 +this.nofgroups+": "+index);
146 return this.beginpos[index];
154 getEnd(int index) argument
168 getCapturedText(int index) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DAttributesProxy.java75 public String getQName(int index) { argument
76 return fAttributes.getQName(index);
79 public String getURI(int index) { argument
82 String uri = fAttributes.getURI(index);
86 public String getLocalName(int index) { argument
87 return fAttributes.getLocalName(index);
132 public boolean isDeclared(int index) { argument
133 if (index < 0 || index >= fAttributes.getLength()) {
134 throw new ArrayIndexOutOfBoundsException(index);
161 isSpecified(int index) argument
[all...]
H A DJAXPNamespaceContextWrapper.java140 public String getDeclaredPrefixAt(int index) { argument
141 return (String) fPrefixes.get(index);
H A DNamespaceSupport.java105 * information array. The index at the current context is the start
106 * index of declared namespace bindings and runs to the size of the
279 public String getDeclaredPrefixAt(int index) { argument
280 return fNamespace[fContext[fCurrentContext] + index * 2];
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DShortHandPointer.java180 * @param index
184 public String getDTDDeterminedID(XMLAttributes attributes, int index) argument
187 if (attributes.getType(index).equals("ID")) {
188 return attributes.getValue(index);
198 * @param index
202 public String getSchemaDeterminedID(XMLAttributes attributes, int index) argument
204 Augmentations augs = attributes.getAugmentations(index);
242 * @param index
247 int index) throws XNIException {
246 getChildrenSchemaDeterminedID(XMLAttributes attributes, int index) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DAxis.java214 public static String getNames(int index){ argument
215 return names[index];
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DIntVector.java197 * Inserts the specified node in this vector at the specified index.
198 * Each component in this vector with an index greater or equal to
199 * the specified index is shifted upward to have an index one greater
230 * Inserts the specified node in this vector at the specified index.
231 * Each component in this vector with an index greater or equal to
232 * the specified index is shifted upward to have an index one greater
249 * with an index greater or equal to the object's index i
307 setElementAt(int value, int index) argument
354 indexOf(int elem, int index) argument
[all...]
H A DObjectVector.java197 * Inserts the specified object in this vector at the specified index.
198 * Each component in this vector with an index greater or equal to
199 * the specified index is shifted upward to have an index one greater
246 * with an index greater or equal to the object's index is shifted
247 * downward to have an index one smaller than the value it had
276 * Deletes the component at the specified index. Each component in
277 * this vector with an index greater or equal to the specified
278 * index i
304 setElementAt(Object value, int index) argument
351 indexOf(Object elem, int index) argument
[all...]
H A DSuballocatedByteVector.java41 * then skip values and setElementAt a higher index again, you may see old data
129 int index=m_firstFree/m_blocksize;
133 if(index>=m_map.length)
135 int newsize=index+m_numblocks;
140 byte[] block=m_map[index];
142 block=m_map[index]=new byte[m_blocksize];
161 int index=m_firstFree/m_blocksize;
166 if(index>=m_map.length)
168 int newsize=index+m_numblocks;
173 byte[] block=m_map[index];
429 indexOf(byte elem, int index) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathResultImpl.java348 * Returns the <code>index</code>th item in the snapshot collection. If
349 * <code>index</code> is greater than or equal to the number of nodes in
353 * @param index Index into the snapshot collection.
354 * @return The node at the <code>index</code>th position in the
356 * index.
364 public Node snapshotItem(int index) throws XPathException { argument
374 Node node = m_list.item(index);

Completed in 71 milliseconds

<<11121314151617181920>>