/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/ |
H A D | CharacterArrayCharacterIterator.java | 45 /** @return a substring */ 46 public String substring(int beginIndex, int endIndex) method in class:CharacterArrayCharacterIterator 59 /** @return a substring */ 60 public String substring(int beginIndex) method in class:CharacterArrayCharacterIterator 62 return substring(beginIndex, len);
|
H A D | CharacterIterator.java | 31 /** @return a substring */ 32 String substring(int beginIndex, int endIndex); method in interface:CharacterIterator 34 /** @return a substring */ 35 String substring(int beginIndex); method in interface:CharacterIterator
|
H A D | StringCharacterIterator.java | 39 /** @return a substring */ 40 public String substring(int beginIndex, int endIndex) method in class:StringCharacterIterator 42 return src.substring(beginIndex, endIndex); 45 /** @return a substring */ 46 public String substring(int beginIndex) method in class:StringCharacterIterator 48 return src.substring(beginIndex);
|
H A D | ReaderCharacterIterator.java | 50 /** @return a substring */ 51 public String substring(int beginIndex, int endIndex) method in class:ReaderCharacterIterator 56 return buff.toString().substring(beginIndex, endIndex); 64 /** @return a substring */ 65 public String substring(int beginIndex) method in class:ReaderCharacterIterator 70 return buff.toString().substring(beginIndex);
|
H A D | StreamCharacterIterator.java | 50 /** @return a substring */ 51 public String substring(int beginIndex, int endIndex) method in class:StreamCharacterIterator 56 return buff.toString().substring(beginIndex, endIndex); 64 /** @return a substring */ 65 public String substring(int beginIndex) method in class:StreamCharacterIterator 70 return buff.toString().substring(beginIndex);
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | SpinnerListModel.java | 223 * Returns the next object that starts with <code>substring</code>. 225 * @param substring the string to be matched 228 Object findNextMatch(String substring) { argument 240 if (string != null && string.startsWith(substring)) {
|
/openjdk7/jdk/test/javax/management/query/ |
H A D | QuerySubstringTest.java | 82 String substring, 100 System.out.println("\n" + querySubString + " = " + substring + "\n"); 111 Query.value(substring)); 115 Query.value(substring)); 119 Query.value(substring)); 80 query(MBeanServer mbs, int type, String substring, String[][] data) argument
|
/openjdk7/jdk/make/tools/swing-beans/ |
H A D | GenDocletBeanInfo.java | 187 Introspector.decapitalize((methods[j].name()).substring(startPos)); 257 value = getValue((text).substring(index),ATTRIBUTE_NAMES[j]); 305 * Parses the substring and returns the cleaned up value for the attribute. 306 * @param substring Full String of the attrib tag. 309 private static String getValue(String substring, String prop) { argument 324 t = new StringTokenizer(substring, " :\n"); 339 t = new StringTokenizer(substring, ":"); 353 t = new StringTokenizer(substring, ":"); 368 t = new StringTokenizer(substring, ":\n");
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/ |
H A D | REUtil.java | 53 static final String substring(CharacterIterator iterator, int begin, int end) { method in class:REUtil 106 throw new ParseException("Unknown Option: "+opts.substring(i), -1); 316 if (i > 0) buffer.append(literal.substring(0, i));
|
/openjdk7/jdk/src/share/classes/sun/security/krb5/ |
H A D | Realm.java | 132 result = temp.substring(i + 1, temp.length()); 159 result = temp.substring(i + 1, temp.length()); 593 String commonPart = substring(cRealm, cCommonStart); 597 commonPart = substring(sRealm, sCommonStart); 626 sTemp = substring(cRealm, cCount+1); 627 //cTemp = substring(cRealm, cCount); 638 sTemp = substring(sRealm, sCount-1); 639 //cTemp = substring(sRealm, sCount); 650 private static String substring(String realm, int componentIndex) method in class:Realm 660 return realm.substring( [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/ |
H A D | XMLString.java | 230 * argument is a prefix of the substring of this object starting 251 * argument is a prefix of the substring of this object starting 422 * specified substring. The integer returned is the smallest value 430 * @return if the string argument occurs as a substring within this 432 * such substring is returned; if it does not occur as a 433 * substring, <code>-1</code> is returned. 441 * specified substring. The integer returned is the smallest value 449 * @return if the string argument occurs as a substring within this 451 * such substring is returned; if it does not occur as a 452 * substring, <cod 545 public abstract XMLString substring(int beginIndex); method in interface:XMLString 563 public abstract XMLString substring(int beginIndex, int endIndex); method in interface:XMLString [all...] |
H A D | XMLStringDefault.java | 275 * argument is a prefix of the substring of this object starting 299 * argument is a prefix of the substring of this object starting 497 * specified substring. The integer returned is the smallest value 505 * @return if the string argument occurs as a substring within this 507 * such substring is returned; if it does not occur as a 508 * substring, <code>-1</code> is returned. 519 * specified substring. The integer returned is the smallest value 527 * @return if the string argument occurs as a substring within this 529 * such substring is returned; if it does not occur as a 530 * substring, <cod 635 public XMLString substring(int beginIndex) method in class:XMLStringDefault 656 public XMLString substring(int beginIndex, int endIndex) method in class:XMLStringDefault [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/ |
H A D | XString.java | 494 * argument is a prefix of the substring of this object starting 537 * argument is a prefix of the substring of this object starting 737 * specified substring. The integer returned is the smallest value 745 * @return if the string argument occurs as a substring within this 747 * such substring is returned; if it does not occur as a 748 * substring, <code>-1</code> is returned. 759 * specified substring. The integer returned is the smallest value 767 * @return if the string argument occurs as a substring within this 769 * such substring is returned; if it does not occur as a 770 * substring, <cod 875 public XMLString substring(int beginIndex) method in class:XString 896 public XMLString substring(int beginIndex, int endIndex) method in class:XString [all...] |
H A D | XStringForFSB.java | 155 // str = str.substring(0, 600); 598 * argument is a prefix of the substring of this object starting 738 * Returns a new string that is a substring of this string. The 739 * substring begins with the character at the specified index and 743 * "unhappy".substring(2) returns "happy" 744 * "Harbison".substring(3) returns "bison" 745 * "emptiness".substring(9) returns "" (an empty string) 749 * @return the specified substring. 754 public XMLString substring(int beginIndex) method in class:XStringForFSB 770 * Returns a new string that is a substring o 785 public XMLString substring(int beginIndex, int endIndex) method in class:XStringForFSB [all...] |
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | AbstractStringBuilder.java | 679 * Removes the characters in a substring of this sequence. 680 * The substring begins at the specified {@code start} and extends to 769 * Replaces the characters in a substring of this sequence 770 * with characters in the specified <code>String</code>. The substring 774 * characters in the substring are removed and then the specified 810 * substring begins at the specified index and extends to the end of 818 public String substring(int start) { method in class:AbstractStringBuilder 819 return substring(start, count); 833 * sb.substring(begin, end)</pre></blockquote> 849 return substring(star 866 public String substring(int start, int end) { method in class:AbstractStringBuilder [all...] |
H A D | StringBuffer.java | 395 public synchronized String substring(int start) { method in class:StringBuffer 396 return substring(start, count); 404 return super.substring(start, end); 411 public synchronized String substring(int start, int end) { method in class:StringBuffer 412 return super.substring(start, end);
|
H A D | String.java | 60 * String c = "abc".substring(2,3); 61 * String d = cde.substring(1, 2); 763 * and the substring starting with <code>index</code> has fewer 765 * or if <code>codePointOffset</code> is negative and the substring 1226 * A substring of this <tt>String</tt> object is compared to a substring 1228 * represent identical character sequences. The substring of this 1230 * and has length <tt>len</tt>. The substring of other to be compared 1277 * A substring of this <tt>String</tt> object is compared to a substring 1869 public String substring(int beginIndex) { method in class:String 1902 public String substring(int beginIndex, int endIndex) { method in class:String [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/ |
H A D | BasisLibrary.java | 173 return result.substring(0, length-2); 266 * XSLT Standard function substring(). Must take a double because of 281 return value.substring(istart); 283 runTimeError(RUN_TIME_INTERNAL_ERR, "substring()"); 289 * XSLT Standard function substring(). Must take a double because of 314 return value.substring(istart); 316 return value.substring(istart, isum); 318 runTimeError(RUN_TIME_INTERNAL_ERR, "substring()"); 324 * XSLT Standard function substring-after(). 326 public static String substring_afterF(String value, String substring) { argument 337 substring_beforeF(String value, String substring) argument [all...] |
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | URI.java | 1843 dontquote = authority.substring(0 , end + 1); 1844 doquote = authority.substring(end + 1); 1880 dontquote = opaquePart.substring(0,end+1); 1881 doquote = opaquePart.substring(end+1); 1997 path = base.substring(0, i + 1); 2002 sb.append(base.substring(0, i + 1)); 2128 v.path = cp.substring(bp.length()); 2665 sb.append(s.substring(0, i)); 2677 sb.append(s.substring(0, i)); 2847 // Return a substring o 2849 private String substring(int start, int end) { method in class:URI.Parser [all...] |