Searched defs:index (Results 476 - 500 of 1255) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFunctionMultiArgs.java40 /** Argument expressions that are at index 3 or greater.
45 * Return an expression array containing arguments at index 3 or greater.
47 * @return An array that contains the arguments at index 3 or greater.
59 * @param argNum The argument number index.
168 ArgMultiOwner(int index) argument
170 m_argIndex = index;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXStringForChars.java175 * Returns the character at the specified index. An index ranges
177 * of the sequence is at index <code>0</code>, the next at index
180 * @param index the index of the character.
181 * @return the character at the specified index of this string.
182 * The first character is at index <code>0</code>.
183 * @exception IndexOutOfBoundsException if the <code>index</code>
187 public char charAt(int index) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/operations/
H A DVariable.java56 * The index of the variable, which is either an absolute index to a
63 * Set the index for the variable into the stack. For advanced use only. You
66 * @param index a global or local index.
68 public void setIndex(int index) argument
70 m_index = index;
74 * Set the index for the variable into the stack. For advanced use only.
76 * @return index a global or local index
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DUnionPattern.java150 UnionPathPartOwner(int index) argument
152 m_index = index;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyImpl.java69 protected int index = NO_INDEX; field in class:DynAnyImpl
89 index = NO_INDEX;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DTypeCodeOutputStream.java226 public int getRealIndex(int index) { argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/toa/
H A DTransientObjectManager.java74 int index = ORBUtility.bytesToInt(transientKey,0);
78 dprint( "lookupServant called with index=" + index + ", counter=" + counter ) ;
80 if (elementArray[index].counter == counter &&
81 elementArray[index].valid ) {
84 return elementArray[index].servant;
95 int index = ORBUtility.bytesToInt(transientKey,0);
99 dprint( "lookupServantData called with index=" + index + ", counter=" + counter ) ;
101 if (elementArray[index]
158 int index=-1; field in class:Element
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DEnumGen.java208 public int helperType (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) argument
229 return index + 1;
233 public int type (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) { argument
235 return index;
248 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
251 return index;
254 public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
257 return index;
H A DForwardValueGen.java161 public int helperType (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) argument
163 return index;
166 public int type (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) { argument
168 return index;
178 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
180 return index;
188 public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
190 return index;
H A DValueBoxGen.java225 public int helperType (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) argument
230 index = ((JavaGenerator)mType.generator ()).type (index, indent, tcoffsets, name, mType, stream);
236 return index;
239 public int type (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) { argument
241 return index;
244 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
246 return index;
305 public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
312 index
[all...]
H A DValueGen24.java299 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
307 return index;
328 index = ((JavaGenerator)member.generator ()).read (index, indent, name + '.' + memberName, member, stream);
334 return index;
340 public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
348 return index;
367 index = ((JavaGenerator)member.generator ()).write (index, indent, name + '.' + memberName, member, stream);
373 return index;
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/tree/
H A DObjectTreeNodeAdapter.java63 public SimpleTreeNode getChild(int index) { argument
68 Fetcher f = new Fetcher(index);
113 private int index; field in class:ObjectTreeNodeAdapter.Fetcher
117 public Fetcher(int index) { argument
118 this.index = index;
126 if (curField == index) {
133 if (curField == index) {
140 if (curField == index) {
147 if (curField == index) {
193 private int index = -1; field in class:ObjectTreeNodeAdapter.Finder
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFHeader.java75 /** Returns the section header at the specified index. The section header
76 * at index 0 is the undefined section header. */
77 public ELFSectionHeader getSectionHeader(int index); argument
106 /** Returns the program header at the specified index. */
107 //public ProgramHeader getProgramHeader(int index);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DSymbol.java80 public byte getByteAt(long index) { argument
81 return addr.getJByteAt(baseOffset + index);
103 for (int index = 0; index < length; index++) {
104 result[index] = getByteAt(index);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DJavaVFrame.java83 // for (int index = 0; index < list.size(); index++) {
84 // MonitorInfo monitor = (MonitorInfo) list.get(index);
94 public void printActivation(int index) { argument
95 printActivationOn(System.out, index);
98 public void printActivationOn(PrintStream tty, int index) { argument
100 tty.print(index + " - ");
193 for (int index = 0; index < value
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DCTypeTreeNodeAdapter.java120 public SimpleTreeNode getChild(int index) { argument
121 CTypeFieldIdentifier cf = getFields()[index];
H A DOopTreeNodeAdapter.java69 public SimpleTreeNode getChild(int index) { argument
74 if (index == 0) {
77 index -= 1;
81 Fetcher f = new Fetcher(index);
142 private int index; field in class:OopTreeNodeAdapter.Fetcher
146 public Fetcher(int index) { argument
147 this.index = index;
159 if (curField == index) {
172 if (curField == index) {
239 private int index; field in class:OopTreeNodeAdapter.Finder
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListCellRenderer.java116 int index,
128 && dropLocation.getIndex() == index) {
113 getListCellRendererComponent( JList<?> list, Object value, int index, boolean isSelected, boolean cellHasFocus) argument
H A DListSelectionModel.java49 * A value for the selectionMode property: select one list index
78 * In {@code SINGLE_SELECTION} selection mode, only the second index
97 * to calling {@code setSelectionInterval}, and only the second index
136 * Returns the first selected index or -1 if the selection is empty.
142 * Returns the last selected index or -1 if the selection is empty.
148 * Returns true if the specified index is selected.
150 boolean isSelectedIndex(int index); argument
154 * Return the first index argument from the most recent call to
158 * indices specially, e.g. Windows95 displays the lead index with a
169 * Set the anchor selection index
173 setAnchorSelectionIndex(int index) argument
191 setLeadSelectionIndex(int index) argument
211 insertIndexInterval(int index, int length, boolean before) argument
[all...]
H A DRowSorter.java133 * Returns the location of <code>index</code> in terms of the
134 * underlying model. That is, for the row <code>index</code> in
135 * the coordinates of the view this returns the row index in terms
138 * @param index the row index in terms of the underlying view
139 * @return row index in terms of the view
140 * @throws IndexOutOfBoundsException if <code>index</code> is outside the
143 public abstract int convertRowIndexToModel(int index); argument
146 * Returns the location of <code>index</code> in terms of the
147 * view. That is, for the row <code>index</cod
157 convertRowIndexToView(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthListUI.java212 int index, boolean isSelected, boolean cellHasFocus) {
222 super.getListCellRendererComponent(list, value, index,
211 getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DNumberFormatter.java304 boolean isNavigatable(int index) { argument
305 if (!super.isNavigatable(index)) {
307 return getBufferedChar(index) == getDecimalSeparator();
314 * <code>index</code> incrementing by <code>direction</code>.
316 private NumberFormat.Field getFieldFrom(int index, int direction) { argument
321 if (index >= max) {
322 index += direction;
324 while (index >= 0 && index < max) {
325 iterator.setIndex(index);
[all...]
H A DSegment.java172 * Increments the iterator's index by one and returns the character
173 * at the new index. If the resulting index is greater or equal
174 * to getEndIndex(), the current index is reset to getEndIndex() and
191 * Decrements the iterator's index by one and returns the character
192 * at the new index. If the current index is getBeginIndex(), the index
228 * Returns the start index of the text.
229 * @return the index a
261 charAt(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMuxingAttributeSet.java71 * Inserts <code>as</code> at <code>index</code>. This assumes
72 * the value of <code>index</code> is between 0 and attrs.length,
76 int index) {
79 if (index < numAttrs) {
80 if (index > 0) {
81 System.arraycopy(attrs, 0, newAttrs, 0, index);
82 System.arraycopy(attrs, index, newAttrs, index + 1,
83 numAttrs - index);
92 newAttrs[index]
75 insertAttributeSetAt(AttributeSet as, int index) argument
101 removeAttributeSetAt(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DElement.java44 public int index; field in class:Element
68 Element(String name, int index) { argument
70 this.index = index;
71 maxIndex = Math.max(maxIndex, index);
117 * Get index.
120 return index;

Completed in 65 milliseconds

<<11121314151617181920>>