Searched refs:index (Results 1 - 25 of 105) sorted by relevance

12345

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/
H A DSortedSetComboBoxModel.java47 public T getElementAt(int index) { argument
48 return items.get(index);
86 int index = Collections.binarySearch(items, item);
87 if (index < 0) {
88 index = -index - 1;
89 items.add(index, item);
90 fireIntervalAdded(this, index, index);
93 return index;
102 remove(int index) argument
[all...]
H A DSettingsButtonBar.java169 int index = getSpacerIndex() + 1;
170 add(applyButton, index++);
171 add(cancelButton, index++);
172 add(resetButton, index++);
173 add(backButton, index++);
174 add(forwardButton, index++);
175 add(okayButton, index++);
176 add(closeButton, index++);
189 int index = getSpacerIndex();
194 if (i != index
[all...]
H A DListCellOverlay.java229 private int index = -1; field in class:ListCellOverlay
261 Object value = list.getModel().getElementAt(index);
262 boolean isSelected = list.isSelectedIndex(index);
264 (index == list.getLeadSelectionIndex());
267 list, value, index, isSelected, hasFocus);
274 Rectangle r = list.getCellBounds(index, index);
465 int index;
472 index = -1;
477 index
[all...]
H A DSortedListModel.java34 public void add(int index, Object element) { argument
65 public void insertElementAt(Object obj, int index) { argument
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/
H A DQuickVector.java72 * Returns the component at the specified index.
74 * @param index an index into this vector.
75 * @return the component at the specified index.
76 * @exception ArrayIndexOutOfBoundsException if an invalid index was
79 public final Object quickElementAt(int index) { argument
80 if (index >= elementCount) {
82 index + " >= " + elementCount);
84 return elementData[index];
88 * Sets the component at the specified <code>index</cod
99 quickSetElementAt(Object obj, int index) argument
[all...]
H A DArranger.java146 int index = dstModel.getIndexOfChild(root, node);
149 if (index > 0)
153 if (index < (limit - 1))
239 int index) {
254 index++;
262 dstModel.insertNodeInto(srcNode, newparent, index);
263 index++;
264 return index;
289 int index = 0;
298 index
234 matchChild(JTree src, JTree dst, DblTreeNode srcNode, DblTreeNode newparent, Enumeration dstKids, int index) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/event/
H A DIntervalEvent.java51 public IntervalEvent(Object source, int index) { argument
52 this(source, index, index);
H A DPropertyChangeListeners.java97 int index = Collections.binarySearch(propNames, propName);
98 if (index < 0) {
99 index = -1 - index;
100 propNames.add(index, propName);
H A DIntervalEventQueue.java114 public void addIndex(int index, Type type) { argument
115 addInterval(index, index, type);
/solaris-userland-s11u3/components/visual-panels/apache/src/java/vpanels/app/apache/com/oracle/solaris/vp/panels/apache/client/swing/
H A DPropertyGroupNamePool.java70 int index = Collections.binarySearch(reserved, next);
71 assert index < 0;
72 index = -1 - index;
73 reserved.add(index, next);
88 int index = Collections.binarySearch(list, ord);
89 found = index >= 0;
91 list.remove(index);
116 int index = Collections.binarySearch(existing, ord);
117 if (index <
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DArrayIterator.java36 private int index; field in class:ArrayIterator
53 return index < array.length;
59 return array[index++];
84 index = 0;
H A DUIDebugUtil.java44 Component component, int index, String indent) {
46 System.out.printf("%s%2d. %s%s\n", indent, index + 1,
43 printComponentHierarchy( Component component, int index, String indent) argument
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/smf/
H A DComponentList.java68 int index;
69 for (index = comps.length - 1; index >= 0; index--) {
70 if (comps[index] == ComponentListItem.this) {
75 list.add(index + 1);
187 public ComponentListItem add(Component comp, int index) { argument
190 super.add(item, index);
200 int index = getComponentCount();
201 add(createListComponent(index), inde
204 add(int index) argument
212 createListComponent(int index) argument
223 getListComponent(int index) argument
[all...]
/solaris-userland-s11u3/components/php/php56/files/
H A Dphp5.6.conf37 # Add index.php to the list of files that will be served as directory
40 DirectoryIndex index.php
41 DirectoryIndex index.php5
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/tree/
H A DNotifyingTreeNode.java104 public void insert(MutableTreeNode child, int index) { argument
105 super.insert(child, index);
113 public void remove(int index) { argument
114 TreeNode child = getChildAt(index);
119 super.remove(index);
135 int index = 0;
139 index = parent.getIndex(this);
143 this, path, new int[] {index}, new TreeNode[] {this});
/solaris-userland-s11u3/components/php-5_3/Solaris/
H A Dphp5.3.conf46 # Add index.php to the list of files that will be served as directory
49 DirectoryIndex index.php
50 DirectoryIndex index.php5
74 # Add index.php to the list of files that will be served as directory
77 DirectoryIndex index.php
78 DirectoryIndex index.php5
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/view/
H A DManagedObjectTreeNode.java116 int index = first + i;
117 ManagedObject child = children.get(index);
119 indexes[i] = index;
133 int index = first + i;
134 nodes[i] = getChildAt(index);
135 indexes[i] = index;
136 remove(index);
H A DWizardStepPanel.java95 protected Component createComponent(List<Navigable> steps, final int index, argument
99 if (index < selected) {
104 sequence.goToStep(index);
111 String text = steps.get(index).getName();
113 text = Finder.getString("wizard.step.numbered", index + 1, text);
118 link.setColor(index == selected ? COLOR_ACTIVE : COLOR_INACTIVE);
123 protected Component createIndicator(List<Navigable> steps, int index, argument
126 String text = index == selected ? "*" : "";
129 label.setForeground(index == selected ? COLOR_ACTIVE : COLOR_INACTIVE);
H A DControlBreadCrumbs.java60 protected Component createBreadCrumb(int index) { argument
61 List<Control> list = getElementAt(index);
65 if (index == getModel().getSize() - 1) {
121 protected Component createSeparator(int index) { argument
132 Control nextControl = getElementAt(index).get(0);
138 List<Control> previous = getElementAt(index - 1);
195 JList list, Object value, int index, boolean isSelected,
199 list, value, index, isSelected, cellHasFocus);
231 protected void setFirstVisibleIndex(int index) { argument
232 if (index !
[all...]
H A DManagedObjectTreeTable.java124 int index = rowAtPoint(e.getPoint());
125 if (index >= 0) {
127 if (!model.isSelectedIndex(index)) {
129 model.setSelectionInterval(index, index);
207 int index = convertRowIndexToModel(sRows[i]);
209 (ManagedObjectTreeNode)adapter.getTreeNode(index);
/solaris-userland-s11u3/components/libusb/ugen/src/
H A Dlibusbugen.c80 int value, int index, char *data, int size);
85 usb_dev_handle_info_t *info, int index, int interface, int alternate);
89 static int usb_parse_config(usb_dev_handle_impl_t *hdl, uint_t index);
90 static void usb_free_config(usb_device_t *device, uint_t index);
91 static int usb_parse_interface(usb_dev_handle_impl_t *hdl, uint_t index,
93 static void usb_free_interface(usb_device_t *device, uint_t index,
95 static int usb_parse_alternate(usb_dev_handle_impl_t *hdl, uint_t index,
97 static void usb_free_alternate(usb_device_t *device, uint_t index,
99 static int usb_parse_endpoint(usb_dev_handle_impl_t *hdl, int index,
441 int value, int index, cha
440 usb_control_msg(usb_dev_handle *dev, int requesttype, int request, int value, int index, char *data, int size, int timeout) argument
678 usb_get_string(usb_dev_handle *dev, int index, int langid, char *buf, size_t buflen) argument
709 usb_get_string_simple(usb_dev_handle *dev, int index, char *buf, size_t buflen) argument
786 usb_get_descriptor_by_endpoint(usb_dev_handle *udev, int ep, uchar_t type, uchar_t index, void *buf, int size) argument
805 usb_get_descriptor(usb_dev_handle *udev, uchar_t type, uchar_t index, void *buf, int size) argument
837 int index, iface, err; local
923 int index, i; local
979 int index = usb_ep_index(ep); local
1033 int index; local
1200 usb_send_msg(int fd, int stat_fd, int requesttype, int request, int value, int index, char *data, int size) argument
1331 usb_set_ep_iface_alts(usb_dev_handle_impl_t *hdl, usb_dev_handle_info_t *info, int index, int interface, int alternate) argument
1383 int fd, fdstat, index, rval; local
1681 uint_t index; local
1743 uint_t index; local
1766 usb_parse_config(usb_dev_handle_impl_t *hdl, uint_t index) argument
1883 usb_free_config(usb_device_t *device, uint_t index) argument
1909 usb_parse_interface(usb_dev_handle_impl_t *hdl, uint_t index, uint_t iface, char *cloud) argument
1969 usb_free_interface(usb_device_t *device, uint_t index, uint_t iface) argument
1993 usb_parse_alternate(usb_dev_handle_impl_t *hdl, uint_t index, uint_t iface, uint_t alt, char *cloud) argument
2082 usb_free_alternate(usb_device_t *device, uint_t index, uint_t iface, uint_t alt) argument
2118 usb_parse_endpoint(usb_dev_handle_impl_t *hdl, int index, int iface, int alt, int ep, char *cloud) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/model/
H A DFilterManagedObject.java147 * Given the index of an entry to add to the inbound children list,
150 * @param index the index of the new inbound child
151 * @return the index of the corresponding outbound child
153 private int findNewMapping(int index) argument
158 assert (index <= oldsize);
161 /* Adding to an empty list; the first index must be 0 */
168 if (index > 0) {
169 for (int i = index - 1; i >= 0; i--)
177 if (result == -1 && index < oldsiz
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/control/
H A DWizardStepSequence.java48 * Gets the index of the current step in the wizard, or -1 if the wizard is
68 * @param index
69 * an index between 0 and the {@link #getSelectedIndex
71 * last step, an {@code index} of the latter value effectively
75 * if the given step index is invalid
77 void goToStep(int index); argument
H A DTabbedControl.java75 public void setSelectedIndexDirectly(int index) { argument
76 super.setSelectedIndex(index);
131 int index = children.indexOf(child);
132 if (index != -1) {
134 tabSelModel.setSelectedIndexDirectly(index);
H A DWizardControl.java218 * index in the {@link #getSteps step list}.
222 int index = -1;
225 index = getSteps().indexOf(control);
227 return index;
242 public void goToStep(final int index) { argument
245 if (selected == index) {
250 if (index < 0 || index > max) {
252 String.format("%d out of range (0 - %d)", index, max));
265 if (index > selecte
[all...]

Completed in 101 milliseconds

12345