Searched defs:index (Results 26 - 50 of 1255) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeWithCPIndex.java30 // any bytecode with constant pool index
37 // the constant pool index for this bytecode
38 public int index() { return getIndexU2(code(), false); } method in class:BytecodeWithCPIndex
46 // get ConstantPool index from ConstantPoolCacheIndex at given bci
47 int cpCacheIndex = index();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DListCellRenderer.java44 * int index,
57 * && dropLocation.getIndex() == index) {
100 * @param value The value returned by list.getModel().getElementAt(index).
101 * @param index The cells index.
113 int index,
110 getListCellRendererComponent( JList<? extends E> list, E value, int index, boolean isSelected, boolean cellHasFocus) argument
H A DListModel.java52 * Returns the value at the specified index.
53 * @param index the requested index
54 * @return the value at <code>index</code>
56 E getElementAt(int index); argument
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DChoicePeer.java42 * at index {@code index}.
45 * @param index the index where to add the item
49 void add(String item, int index); argument
52 * Removes the item at index {@code index} from the combo box list.
54 * @param index the index where to remove the item
58 void remove(int index); argument
74 select(int index) argument
[all...]
H A DMenuBarPeer.java53 * @param index the index of the menu to remove
57 void delMenu(int index); argument
H A DMenuPeer.java58 * Removes the menu item at the specified index.
60 * @param index the index of the item to remove
64 void delItem(int index); argument
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharSequence.java63 * Returns the <code>char</code> value at the specified index. An index ranges from zero
65 * index zero, the next at index one, and so on, as for array
68 * <p>If the <code>char</code> value specified by the index is a
72 * @param index the index of the <code>char</code> value to be returned
77 * if the <tt>index</tt> argument is negative or not less than
80 char charAt(int index); argument
84 * The subsequence starts with the <code>char</code> value at the specified index an
[all...]
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleExtendedTable.java44 * Returns the row number of an index in the table.
46 * @param index the zero-based index in the table. The index is
51 public int getAccessibleRow(int index); argument
54 * Returns the column number of an index in the table.
56 * @param index the zero-based index in the table. The index is
61 public int getAccessibleColumn(int index); argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSeq.inline.hpp35 uintx index = (uintx) addr >> _region_shift; local
36 return index;
58 inline HeapRegion* HeapRegionSeq::at(uint index) const {
59 assert(index < length(), "pre-condition");
60 HeapRegion* hr = _regions[index];
62 assert(hr->hrs_index() == index, "sanity");
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DCheckNodeListModel.java43 public CheckNode getCheckNodeAt(int index) { argument
44 return (CheckNode) rootNode.getChildren().getNodes()[index];
/openjdk7/hotspot/src/share/vm/utilities/
H A DelfStringTable.hpp41 ElfStringTable(FILE* file, Elf_Shdr shdr, int index);
44 // section index
45 int index() { return m_index; }; function in class:ElfStringTable
56 // section index
/openjdk7/jaxp/src/org/w3c/dom/css/
H A DCSSRuleList.java48 * integral index, starting from 0.
61 * Used to retrieve a CSS rule by ordinal index. The order in this
63 * If index is greater than or equal to the number of rules in the list,
65 * @param index Index into the collection
66 * @return The style rule at the <code>index</code> position in the
68 * valid index.
70 public CSSRule item(int index); argument
H A DCSSValueList.java51 * integral index, starting from 0.
64 * Used to retrieve a <code>CSSValue</code> by ordinal index. The order in
66 * property. If index is greater than or equal to the number of values
68 * @param index Index into the collection.
69 * @return The <code>CSSValue</code> at the <code>index</code> position
71 * not a valid index.
73 public CSSValue item(int index); argument
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLCollection.java48 * be accessed by either ordinal index or the node's<code>name</code> or
61 * This method retrieves a node specified by ordinal index. Nodes are
63 * @param index The index of the node to be fetched. The index origin is
66 * success. A value of <code>null</code> is returned if the index is
69 public Node item(int index); argument
/openjdk7/jaxp/src/org/w3c/dom/stylesheets/
H A DStyleSheetList.java48 * integral index, starting from 0.
61 * Used to retrieve a style sheet by ordinal index. If index is greater
64 * @param index Index into the collection
65 * @return The style sheet at the <code>index</code> position in the
67 * valid index.
69 public StyleSheet item(int index); argument
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_MidiUtils.h41 int index; // in member in struct:tag_ALSA_MIDIDeviceDescription
59 int getMidiDeviceName(snd_rawmidi_stream_t direction, int index,
63 int getMidiDeviceVendor(int index, char *name, UINT32 nameLength);
68 int getMidiDeviceDescription(snd_rawmidi_stream_t direction, int index,
72 int getMidiDeviceVersion(int index, char *name, UINT32 nameLength);
H A DPLATFORM_API_LinuxOS_ALSA_MidiUtils.h41 int index; // in member in struct:tag_ALSA_MIDIDeviceDescription
59 int getMidiDeviceName(snd_rawmidi_stream_t direction, int index,
63 int getMidiDeviceVendor(int index, char *name, UINT32 nameLength);
68 int getMidiDeviceDescription(snd_rawmidi_stream_t direction, int index,
72 int getMidiDeviceVersion(int index, char *name, UINT32 nameLength);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Color.cpp74 jint index)
79 switch(index) {
73 Java_sun_awt_windows_WColor_getDefaultColor(JNIEnv *env, jclass cls, jint index) argument
/openjdk7/jdk/test/java/lang/instrument/
H A DParallelTransformerLoaderApp.java63 TestThread( int index) argument
67 fIndex = index;
78 loadClasses( int index) argument
83 Class.forName("TestClass" + index, true, loader);
/openjdk7/jdk/src/share/classes/sun/text/
H A DSupplementaryCharacterData.java60 public int getValue(int index) { argument
62 assert index >= Character.MIN_SUPPLEMENTARY_CODE_POINT &&
63 index <= Character.MAX_CODE_POINT :
64 "Invalid code point:" + Integer.toHexString(index);
76 if (index < start) {
78 } else if (index > (end-1)) {
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DLocaleSyntaxException.java38 private int index = -1; field in class:LocaleSyntaxException
46 index = errorIndex;
50 return index;
/openjdk7/jdk/test/java/util/AbstractSequentialList/
H A DAddAll.java49 public ListIterator listIterator(int index) { argument
50 return a.listIterator(index);
/openjdk7/jdk/test/javax/swing/JPopupMenu/6827786/
H A Dbug6827786.java104 private static void verify(final int index) throws Exception { argument
112 if (item != menu.getMenuComponent(index)) {
115 + menu.getMenuComponent(index));
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DJvmstatCountersTest.java56 public static void checkKey(Map<String, String> data, int index, argument
58 String counter = "sun.management.JMXConnectorServer." + index + "." + key;
/openjdk7/jdk/src/share/classes/sun/management/snmp/util/
H A DSnmpTableHandler.java36 * Returns the data associated with the given index.
37 * If the given index is not found, null is returned.
39 * the index was not found.
41 public Object getData(SnmpOid index); argument
44 * Returns the index that immediately follows the given
45 * <var>index</var>. The returned index is strictly greater
46 * than the given <var>index</var>, and is contained in the table.
47 * <br>If the given <var>index</var> is null, returns the first
48 * index i
52 getNext(SnmpOid index) argument
57 contains(SnmpOid index) argument
[all...]

Completed in 575 milliseconds

1234567891011>>