Searched defs:substring (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DAbstractStringBuilder.java706 * Removes the characters in a substring of this sequence.
707 * The substring begins at the specified {@code start} and extends to
799 * Replaces the characters in a substring of this sequence
800 * with characters in the specified <code>String</code>. The substring
804 * characters in the substring are removed and then the specified
841 * substring begins at the specified index and extends to the end of
849 public String substring(int start) { method in class:AbstractStringBuilder
850 return substring(start, count);
864 * sb.substring(begin,&nbsp;end)</pre></blockquote>
880 return substring(star
897 public String substring(int start, int end) { method in class:AbstractStringBuilder
[all...]
H A DStringBuffer.java395 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 DString.java65 * String c = "abc".substring(2,3);
66 * String d = cde.substring(1, 2);
678 * and the substring starting with <code>index</code> has fewer
680 * or if <code>codePointOffset</code> is negative and the substring
1154 * A substring of this <tt>String</tt> object is compared to a substring
1156 * represent identical character sequences. The substring of this
1158 * and has length <tt>len</tt>. The substring of other to be compared
1203 * A substring of this <tt>String</tt> object is compared to a substring
1891 public String substring(int beginIndex) { method in class:String
1924 public String substring(int beginIndex, int endIndex) { method in class:String
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DURI.java1837 dontquote = authority.substring(0 , end + 1);
1838 doquote = authority.substring(end + 1);
1874 dontquote = opaquePart.substring(0,end+1);
1875 doquote = opaquePart.substring(end+1);
1991 path = base.substring(0, i + 1);
1996 sb.append(base.substring(0, i + 1));
2134 bp = bp.substring(0, bp.lastIndexOf('/') + 1);
2142 v.path = cp.substring(bp.length());
2691 sb.append(s.substring(0, i));
2703 sb.append(s.substring(
2875 private String substring(int start, int end) { method in class:URI.Parser
[all...]

Completed in 110 milliseconds