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

/libcore/ojluni/src/main/java/java/lang/
H A DStringBuffer.java461 public synchronized String substring(int start) { method in class:StringBuffer
462 return substring(start, count);
471 return super.substring(start, end);
479 public synchronized String substring(int start, int end) { method in class:StringBuffer
480 return super.substring(start, end);
H A DAbstractStringBuilder.java756 * Removes the characters in a substring of this sequence.
757 * The substring begins at the specified {@code start} and extends to
849 * Replaces the characters in a substring of this sequence
850 * with characters in the specified {@code String}. The substring
854 * characters in the substring are removed and then the specified
891 * substring begins at the specified index and extends to the end of
899 public String substring(int start) { method in class:AbstractStringBuilder
900 return substring(start, count);
914 * sb.substring(begin,&nbsp;end)}</pre>
931 return substring(star
948 public String substring(int start, int end) { method in class:AbstractStringBuilder
[all...]
H A DString.java65 * String c = "abc".substring(2,3);
66 * String d = cde.substring(1, 2);
724 * and the substring starting with {@code index} has fewer
726 * or if {@code codePointOffset} is negative and the substring
1248 * A substring of this {@code String} object is compared to a substring
1250 * represent identical character sequences. The substring of this
1252 * and has length {@code len}. The substring of other to be compared
1298 * A substring of this {@code String} object is compared to a substring
1993 public String substring(int beginIndex) { method in class:String
2027 public String substring(int beginIndex, int endIndex) { method in class:String
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DURI.java1857 dontquote = authority.substring(0 , end + 1);
1858 doquote = authority.substring(end + 1);
1894 dontquote = opaquePart.substring(0,end+1);
1895 doquote = opaquePart.substring(end+1);
2011 path = base.substring(0, i + 1);
2016 sb.append(base.substring(0, i + 1));
2162 bp = bp.substring(0, bp.lastIndexOf('/') + 1);
2170 v.path = cp.substring(bp.length());
2728 sb.append(s.substring(0, i));
2740 sb.append(s.substring(
2912 private String substring(int start, int end) { method in class:URI.Parser
[all...]

Completed in 119 milliseconds