Searched refs:strbuf (Results 1 - 1 of 1) sorted by path

/libcore/luni/src/main/java/java/lang/
H A DString.java1688 * Returns whether the characters in the StringBuffer {@code strbuf} are the
1691 * @param strbuf
1693 * @return {@code true} if the characters in {@code strbuf} are identical to
1697 * if {@code strbuf} is {@code null}.
1700 public boolean contentEquals(StringBuffer strbuf) { argument
1701 synchronized (strbuf) {
1702 int size = strbuf.length();
1706 return regionMatches(0, new String(0, size, strbuf.getValue()), 0,

Completed in 47 milliseconds