Searched defs:index (Results 651 - 675 of 1255) sorted by relevance

<<21222324252627282930>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DClassWriter.java44 // Map between class name to index of type CONSTANT_Class
47 // Map between any modified UTF-8 and it's constant pool index.
50 // constant pool index for attribute names.
104 protected void writeIndex(int index) throws IOException { argument
105 if (index == 0) throw new InternalError();
106 dos.writeShort(index);
116 int ci = 0; // constant pool index
132 // remember index of attribute name modified UTF-8 strings
137 if (DEBUG) debugMessage("SourceFile index = " + _sourceFileIndex);
141 if (DEBUG) debugMessage("InnerClasses index
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DJavaThreadsPanel.java290 public JavaThread getJavaThread(int index) { argument
291 return getRow(index).getThread();
298 private String threadIDAt(int index) { argument
299 return ((CachedThread) cachedThreads.get(index)).getThreadID();
302 private String threadNameAt(int index) { argument
304 return ((CachedThread) cachedThreads.get(index)).getThreadName();
H A DObjectHistogramPanel.java208 public ObjectHistogramElement getElement(int index) { argument
209 return (ObjectHistogramElement) elements.get(index);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DAbstractHeapGraphWriter.java129 int index = 1;
133 writeJavaThread(jt, index);
134 index++;
140 protected void writeJavaThread(JavaThread jt, int index) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListModel.java75 * Returns the component at the specified index.
81 * @param index an index into this list
82 * @return the component at the specified index
83 * @exception ArrayIndexOutOfBoundsException if the <code>index</code>
88 public E getElementAt(int index) { argument
89 return delegate.elementAt(index);
200 * @return the index of the first occurrence of the argument in this
210 * the search at <code>index</code>.
213 * @param index th
219 indexOf(Object elem, int index) argument
246 lastIndexOf(Object elem, int index) argument
265 elementAt(int index) argument
310 setElementAt(E element, int index) argument
330 removeElementAt(int index) argument
353 insertElementAt(E element, int index) argument
446 get(int index) argument
462 set(int index, E element) argument
479 add(int index, E element) argument
495 remove(int index) argument
[all...]
H A DJApplet.java302 * @param index the index
303 * @exception IllegalArgumentException if <code>index</code> is invalid
311 protected void addImpl(Component comp, Object constraints, int index) argument
314 getContentPane().add(comp, constraints, index);
317 super.addImpl(comp, constraints, index);
H A DJDesktopPane.java482 protected void addImpl(Component comp, Object constraints, int index) { argument
483 super.addImpl(comp, constraints, index);
496 public void remove(int index) { argument
498 Component comp = getComponent(index);
504 super.remove(index);
530 public void setComponentZOrder(Component comp, int index) { argument
531 super.setComponentZOrder(comp, index);
H A DJLayeredPane.java219 protected void addImpl(Component comp, Object constraints, int index) { argument
229 pos = insertIndexForLayer(layer, index);
238 * This is the absolute index, ignoring layers.
240 * @param index an int specifying the component to remove
243 public void remove(int index) { argument
244 Component c = getComponent(index);
245 super.remove(index);
378 int index = insertIndexForLayer(c, layer, position);
380 setComponentZOrder(c, index);
403 * Returns the index o
[all...]
H A DJPasswordField.java451 * Returns the <code>String</code> at a given <code>index</code>.
455 * @param index an index within the text
457 * <code>index</code> are valid.
466 public String getAtIndex(int part, int index) { argument
469 str = super.getAtIndex(part, index);
475 index < 0 || index >= password.length) {
484 * Returns the <code>String</code> after a given <code>index</code>.
488 * @param index a
499 getAfterIndex(int part, int index) argument
526 getBeforeIndex(int part, int index) argument
573 getTextSequenceAt(int part, int index) argument
615 getTextSequenceAfter(int part, int index) argument
650 getTextSequenceBefore(int part, int index) argument
[all...]
H A DJWindow.java393 * @param index the index
394 * @exception IllegalArgumentException if <code>index</code> is invalid
402 protected void addImpl(Component comp, Object constraints, int index) argument
405 getContentPane().add(comp, constraints, index);
408 super.addImpl(comp, constraints, index);
H A DRowFilter.java354 * Returns the value at the specified index. This may return
355 * <code>null</code>. When used with a table, index
358 * @param index the index of the value to get
359 * @return value at the specified index
360 * @throws <code>IndexOutOfBoundsException</code> if index &lt; 0 or
363 public abstract Object getValue(int index); argument
366 * Returns the string value at the specified index. If
369 * as <code>getValue(index).toString()</code> may return a
370 * different result than <code>getStringValue(index)</cod
382 getStringValue(int index) argument
429 include( Entry<? extends Object,? extends Object> value, int index) argument
445 include( Entry<? extends Object,? extends Object> value, int index) argument
466 include( Entry<? extends Object,? extends Object> value, int index) argument
509 include( Entry<? extends Object,? extends Object> value, int index) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java183 public Object getElementAt(int index) { argument
184 return fileCache.get(index);
H A DBasicTextAreaUI.java256 * the given child index.
258 public int getFlowSpan(int index) { argument
267 return super.getFlowSpan(index);
389 protected void childAllocation(int index, Rectangle a) { argument
H A DBasicTextFieldUI.java177 * the given child index. There is no limit for
181 public int getFlowSpan(int index) { argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalTabbedPaneUI.java1181 private Color getUnselectedBackgroundAt(int index) { argument
1182 Color color = tabPane.getBackgroundAt(index);
1192 * Returns the tab index of JTabbedPane the mouse is currently over
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DCompositeView.java157 * @return the view at index <code>n</code>
171 * @param offset the starting index into the child views to insert
226 * @param index the index of the child, >= 0 && < getViewCount()
230 public Shape getChildAllocation(int index, Shape a) { argument
232 childAllocation(index, alloc);
482 * Returns the child view index representing the given
488 * @return index of the view representing the given position, or
539 * @param index the index o
543 childAllocation(int index, Rectangle a) argument
[all...]
H A DTextLayoutStrategy.java274 int index = text.toIteratorIndex(startOffset);
275 if (measurer.getPosition() != index) {
276 measurer.setPosition(index);
392 * Get the font at the given child index.
402 int toModelPosition(int index) { argument
403 return v.getStartOffset() + (index - getBeginIndex());
417 * Returns the index of the first character of the run
428 * Returns the index of the first character of the run
443 * Returns the index of the first character of the run
447 int index
[all...]
H A DZoneView.java242 * Returns the child view index representing the given position in
246 * @return index of the view representing the given position, or
267 int index = getViewIndex(pos, Position.Bias.Forward);
268 View v = getView(index);
272 splitZone(index, offs0, offs1);
281 * Break up the zone at the given index into pieces
284 void splitZone(int index, int offs0, int offs1) { argument
295 View oldZone = getView(index);
298 replace(index, 1, newZones);
309 int index
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DDTD.java152 * Gets an element by index.
154 * @param index the requested index
156 * <code>index</code>
158 public Element getElement(int index) { argument
159 return elements.elementAt(index);
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeModel.java150 * Returns the index of child in parent.
154 * @return the index of the child in the parent, or -1
164 * Returns the child of <I>parent</I> at index <I>index</I> in the parent's
166 * this data source. This should not return null if <i>index</i>
167 * is a valid index for <i>parent</i> (that is <i>index</i> >= 0 &&
168 * <i>index</i> < getChildCount(<i>parent</i>)).
171 * @return the child of <I>parent</I> at index <I>index</
173 getChild(Object parent, int index) argument
234 insertNodeInto(MutableTreeNode newChild, MutableTreeNode parent, int index) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityLinkedList.java52 * list. Operations that index into the list will traverse the list from
53 * the beginning or the end, whichever is closer to the specified index.<p>
220 * unchanged. More formally, removes the element with the lowest index
263 * @param index index at which to insert the first element
270 public boolean addAll(int index, Collection<? extends E> c) { argument
271 if (index < 0 || index > size)
272 throw new IndexOutOfBoundsException("Index: "+index+
280 Entry<E> successor = (index
319 get(int index) argument
332 set(int index, E element) argument
348 add(int index, E element) argument
361 remove(int index) argument
368 entry(int index) argument
648 listIterator(int index) argument
658 ListItr(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DDecoration.java70 Rectangle2D handleGetCharVisualBounds(int index); argument
130 public Rectangle2D getCharVisualBounds(Label label, int index) { argument
132 return label.handleGetCharVisualBounds(index);
H A DGraphicComponent.java249 public Rectangle2D getCharVisualBounds(int index) { argument
251 return decorator.getCharVisualBounds(this, index);
259 public float getCharX(int index) { argument
261 int visIndex = charsLtoV==null? index : charsLtoV[index];
265 public float getCharY(int index) { argument
270 public float getCharAdvance(int index) { argument
275 public boolean caretAtOffsetIsValid(int index) { argument
280 public Rectangle2D handleGetCharVisualBounds(int index) { argument
287 charBounds.x += graphicAdvance * index;
[all...]
H A DTextLineComponent.java46 public Rectangle2D getCharVisualBounds(int index); argument
53 public float getCharX(int index); argument
54 public float getCharY(int index); argument
55 public float getCharAdvance(int index); argument
56 public boolean caretAtOffsetIsValid(int index); argument
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolPatch.java41 * Entry are referenced using index that can be get
96 /** Report the tag at the given index in the constant pool. */
97 public byte getTag(int index) { argument
98 return outer.getTag(index);
101 /** Report the current patch at the given index of the constant pool.
103 * To observe the unpatched entry at the given index, use
106 public Object getPatch(int index) { argument
107 Object value = patchArray[index];
109 switch (getTag(index)) {
130 public void clear(int index) { argument
271 checkTag(int index, byte putTag) argument
280 checkTagMask(int index, int tagBitMask) argument
303 putUTF8(int index, String utf8) argument
329 putConstantValue(int index, Object value) argument
357 putConstantValue(int index, byte tag, Object value) argument
383 putDescriptor(int index, String memberName, String signature) argument
403 putMemberRef(int index, byte tag, String className, String memberName, String signature) argument
[all...]

Completed in 83 milliseconds

<<21222324252627282930>>