Searched defs:index (Results 126 - 150 of 1255) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DBadOopTreeNodeAdapter.java51 public SimpleTreeNode getChild(int index) { argument
H A DBooleanTreeNodeAdapter.java47 public SimpleTreeNode getChild(int index) { argument
H A DCStringTreeNodeAdapter.java47 public SimpleTreeNode getChild(int index) { argument
H A DCharTreeNodeAdapter.java47 public SimpleTreeNode getChild(int index) { argument
H A DDoubleTreeNodeAdapter.java47 public SimpleTreeNode getChild(int index) { argument
H A DFloatTreeNodeAdapter.java47 public SimpleTreeNode getChild(int index) { argument
H A DRootTreeNodeAdapter.java48 public SimpleTreeNode getChild(int index) { argument
H A DSimpleTreeNode.java34 public SimpleTreeNode getChild(int index); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DDefaultScriptObject.java43 public Object get(int index) { argument
50 public void put(int index, Object value) { argument
57 public boolean has(int index) { argument
65 public boolean delete(int index) { argument
H A DJSJavaObjArrayKlass.java57 public Object getFieldValue(int index, Array array) { argument
58 Oop obj = ((ObjArray)array).getObjAt(index);
H A DJSJavaTypeArrayKlass.java71 public Object getFieldValue(int index, Array array) { argument
76 return Boolean.valueOf(typeArr.getBooleanAt(index));
78 return new String(new char[] { typeArr.getCharAt(index) });
80 return new Float(typeArr.getFloatAt(index));
82 return new Double(typeArr.getDoubleAt(index));
84 return new Byte(typeArr.getByteAt(index));
86 return new Short(typeArr.getShortAt(index));
88 return new Integer(typeArr.getIntAt(index));
90 return new Long(typeArr.getLongAt(index));
H A DScriptObject.java58 public Object get(int index); argument
68 public void put(int index, Object value); argument
78 public boolean has(int index); argument
88 public boolean delete(int index); argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSingleSelectionModel.java45 * Sets the model's selected index to <I>index</I>.
49 * @param index an int specifying the model selection
53 public void setSelectedIndex(int index); argument
H A DSpinnerListModel.java62 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...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorModelHSV.java49 int getMaximum(int index) { argument
50 return (index == 0) ? 360 : 100;
54 float getDefault(int index) { argument
55 return (index == 0) ? -1.0f : 1.0f;
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DRowSorterEvent.java116 * Returns the location of <code>index</code> in terms of the
119 * index is not valid, or the locations prior to the sort have not
122 * @param index the index in terms of the view
123 * @return the index in terms of the model prior to the sort, or -1 if
126 public int convertPreviousRowIndexToModel(int index) { argument
127 if (oldViewToModel != null && index >= 0 &&
128 index < oldViewToModel.length) {
129 return oldViewToModel[index];
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DListUI.java42 * Returns the cell index in the specified {@code JList} closest to the
50 * @return the cell index closest to the given location, or {@code -1}
59 * Returns {@code null} if the index isn't valid.
62 * @param index the cell index
65 public abstract Point indexToLocation(JList list, int index); argument
73 * If the smaller index is outside the list's range of cells, this method
74 * returns {@code null}. If the smaller index is valid, but the larger
75 * index is outside the list's range, the bounds of just the first index
[all...]
H A DTabbedPaneUI.java39 public abstract Rectangle getTabBounds(JTabbedPane pane, int index); argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicComboBoxRenderer.java93 int index,
90 getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DColorType.java99 private int index; field in class:ColorType
118 this.index = nextID++;
128 return index;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DElement.java98 * Gets the child element index closest to the given offset.
102 * the index of the <code>Element</code> that best represents
109 * @return the element index >= 0
122 * Fetches the child element at the given index.
124 * @param index the specified index >= 0
127 public Element getElement(int index); argument
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DListView.java109 * @param index the index of the child
111 protected void paintChild(Graphics g, Rectangle alloc, int index) { argument
112 listPainter.paint(g, alloc.x, alloc.y, alloc.width, alloc.height, this, index);
113 super.paintChild(g, alloc, index);
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DMutableTreeNode.java43 * Adds <code>child</code> to the receiver at <code>index</code>.
46 void insert(MutableTreeNode child, int index); argument
49 * Removes the child at <code>index</code> from the receiver.
51 void remove(int index); argument
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicIterator.java39 int index; field in class:CubicIterator
61 return (index > 1);
70 index++;
96 if (index == 0) {
110 affine.transform(coords, 0, coords, 0, index == 0 ? 1 : 3);
138 if (index == 0) {
152 affine.transform(coords, 0, coords, 0, index == 0 ? 1 : 3);
H A DLineIterator.java39 int index; field in class:LineIterator
61 return (index > 1);
70 index++;
96 if (index == 0) {
134 if (index == 0) {

Completed in 54 milliseconds

1234567891011>>