Searched defs:startIndex (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleAttributeSequence.java54 public int startIndex; field in class:AccessibleAttributeSequence
73 startIndex = start;
H A DAccessibleTextSequence.java53 public int startIndex; field in class:AccessibleTextSequence
72 startIndex = start;
H A DAccessibleExtendedText.java78 * @param startIndex the start index in the text
83 public String getTextRange(int startIndex, int endIndex); argument
136 * @param startIndex the start index in the text
141 public Rectangle getTextBounds(int startIndex, int endIndex); argument
H A DAccessibleEditableText.java75 * @param startIndex the starting index in the text
79 public String getTextRange(int startIndex, int endIndex); argument
84 * @param startIndex the starting index in the text
87 public void delete(int startIndex, int endIndex); argument
92 * @param startIndex the starting index in the text
95 public void cut(int startIndex, int endIndex); argument
101 * @param startIndex the starting index in the text
103 public void paste(int startIndex); argument
109 * @param startIndex the starting index in the text
113 public void replaceText(int startIndex, in argument
121 selectText(int startIndex, int endIndex) argument
131 setAttributes(int startIndex, int endIndex, AttributeSet as) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DDuplicateAttributeDetector.java58 private int startIndex; field in class:DuplicateAttributeDetector.Alternative
62 private Alternative(int startIndex, Alternative parent) { argument
63 this.startIndex = startIndex;
64 this.endIndex = startIndex;
75 lim = a.startIndex;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java121 public RemoveInputsRule(Selector selector, int startIndex) { argument
122 this(selector, startIndex, Integer.MAX_VALUE);
125 public RemoveInputsRule(Selector selector, int startIndex, int endIndex) { argument
126 this.startingIndex = startIndex;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCAccessibleText.java89 static void setSelectedTextRange(final Accessible a, final Component c, final int startIndex, final int endIndex) { argument
100 final boolean validRange = (startIndex >= 0) && (endIndex >= startIndex) && (endIndex <= aet.getCharCount());
103 aet.selectText(startIndex, endIndex);
/openjdk7/jdk/src/share/back/
H A DThreadReferenceImpl.c221 jint startIndex; local
230 startIndex = inStream_readInt(in);
256 length = count - startIndex;
264 if ((startIndex < 0) || (startIndex > count - 1)) {
269 if ((length < 0) || (length + startIndex > count)) {
276 for(fnum = startIndex ; fnum < startIndex+length ; fnum++ ) {
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DOldJTable.java125 public void moveRow(int startIndex, int endIndex, int toIndex) { argument
127 ((DefaultTableModel)getModel()).moveRow(startIndex, endIndex, toIndex);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJPasswordField.java540 * @param startIndex the start index in the text
547 public String getTextRange(int startIndex, int endIndex) { argument
548 String str = super.getTextRange(startIndex, endIndex);
579 return new AccessibleTextSequence(seq.startIndex, seq.endIndex,
621 return new AccessibleTextSequence(seq.startIndex, seq.endIndex,
656 return new AccessibleTextSequence(seq.startIndex, seq.endIndex,
H A DJSpinner.java1939 * @param startIndex the starting index in the text
1943 public String getTextRange(int startIndex, int endIndex) { argument
1946 return at.getTextRange(startIndex, endIndex);
1954 * @param startIndex the starting index in the text
1957 public void delete(int startIndex, int endIndex) { argument
1960 at.delete(startIndex, endIndex);
1967 * @param startIndex the starting index in the text
1970 public void cut(int startIndex, int endIndex) { argument
1973 at.cut(startIndex, endIndex);
1981 * @param startIndex th
1983 paste(int startIndex) argument
1998 replaceText(int startIndex, int endIndex, String s) argument
2011 selectText(int startIndex, int endIndex) argument
2026 setAttributes(int startIndex, int endIndex, AttributeSet as) argument
[all...]
H A DJList.java1461 * @param startIndex the index for starting the search
1467 * or startIndex is out of bounds
1470 public int getNextMatch(String prefix, int startIndex, Position.Bias bias) { argument
1476 if (startIndex < 0 || startIndex >= max) {
1483 int index = startIndex;
1505 } while (index != startIndex);
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolPatch.java198 Object[] getOriginalCP(final int startIndex, argument
201 final Object[] cpArray = new Object[endIndex - startIndex];
205 if (index < startIndex || index >= endIndex) return;
207 cpArray[index - startIndex] = value;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_InputTextInfor.cpp67 int startIndex = 0, endIndex = 0; local
70 startIndex = START_COMPSTR;
83 startIndex = START_RESULTSTR;
92 for (int i = startIndex, j = 0; i <= endIndex; i++, j++) {
H A Dawt_Palette.cpp282 int startIndex = 0, endIndex = numEntries-1; local
300 startIndex = 10;
307 for (i = startIndex; i <= endIndex; i++) {
/openjdk7/jdk/test/demo/zipfs/
H A DPathOps.java114 PathOps subpath(int startIndex, int endIndex, String expected) { argument
115 out.format("test subpath(%d,%d)\n", startIndex, endIndex);
117 check(path.subpath(startIndex, endIndex), expected);
/openjdk7/jdk/test/java/nio/file/Path/
H A DPathOps.java111 PathOps subpath(int startIndex, int endIndex, String expected) { argument
112 out.format("test subpath(%d,%d)\n", startIndex, endIndex);
114 check(path.subpath(startIndex, endIndex), expected);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAbstractWriter.java547 protected void write(char[] chars, int startIndex, int length) argument
552 int lastIndex = startIndex;
553 int endIndex = startIndex + length;
554 int newlineIndex = indexOf(chars, NEWLINE, startIndex, endIndex);
569 int lastIndex = startIndex;
570 int endIndex = startIndex + length;
703 private int indexOf(char[] chars, char sChar, int startIndex, argument
705 while(startIndex < endIndex) {
706 if (chars[startIndex] == sChar) {
707 return startIndex;
[all...]
H A DDefaultStyledDocument.java2214 * This starts at <code>startIndex</code> in <code>changed</code>,
2221 void fractureFrom(ElemChanges[] changed, int startIndex, argument
2224 ElemChanges change = changed[startIndex];
2229 if((startIndex + 1) == changeLength)
2249 while(++startIndex < endFractureIndex) {
2250 boolean isEnd = ((startIndex + 1) == endFractureIndex);
2251 boolean isEndLeaf = ((startIndex + 1) == changeLength);
2256 change = changed[startIndex];
H A DJTextComponent.java3185 * @param startIndex the starting index in the text
3190 public String getTextRange(int startIndex, int endIndex) { argument
3192 int p0 = Math.min(startIndex, endIndex);
3193 int p1 = Math.max(startIndex, endIndex);
3208 * @param startIndex the starting index in the text
3212 public void delete(int startIndex, int endIndex) { argument
3215 int p0 = Math.min(startIndex, endIndex);
3216 int p1 = Math.max(startIndex, endIndex);
3231 * @param startIndex the starting index in the text
3235 public void cut(int startIndex, in argument
3247 paste(int startIndex) argument
3261 replaceText(int startIndex, int endIndex, String s) argument
3273 selectText(int startIndex, int endIndex) argument
3286 setAttributes(int startIndex, int endIndex, AttributeSet as) argument
3686 getTextBounds(int startIndex, int endIndex) argument
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp451 idx_t startIndex = word_index(leftOffset); local
453 for (idx_t index = startIndex, offset = leftOffset;
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerBase.java843 * This is equivalent to setIndexOnly(startIndex)).
898 * @deprecated ICU 2.2. Use startIndex() instead.
900 * @see #startIndex
1131 int[] startIndex) {
1136 startIndex[0] = buffer.length;
1143 if(startIndex[0] < (chars[1]==0 ? 1 : 2)) {
1148 System.arraycopy(buffer,startIndex[0],newBuf,
1149 newBuf.length-(buffer.length-startIndex[0]),
1150 buffer.length-startIndex[0]);
1151 //adjust the startIndex
1126 findPreviousIterationBoundary(UCharacterIterator src, IsPrevBoundary obj, int minC, int mask, char[] buffer, int[] startIndex) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DFixedHeightLayoutCache.java1019 protected void adjustRowBy(int amount, int startIndex) { argument
1022 // children following startIndex.
1023 for(int counter = getChildCount() - 1; counter >= startIndex;
1494 int startIndex) {
1496 this.nextIndex = startIndex;
1493 VisibleFHTreeStateNodeEnumeration(FHTreeStateNode parent, int startIndex) argument
H A DVariableHeightLayoutCache.java1667 int startIndex) {
1669 this.nextIndex = startIndex;
1666 VisibleTreeStateNodeEnumeration(TreeStateNode parent, int startIndex) argument

Completed in 4497 milliseconds