HomeSort by relevance Sort by last modified time
    Searched full:appendlocked (Results 1 - 1 of 1) sorted by null

  /frameworks/base/core/java/com/android/internal/util/
FastPrintWriter.java 297 private void appendLocked(char c) throws IOException {
307 private void appendLocked(String str, int i, final int length) throws IOException {
313 appendLocked(str, i, next < end ? BUFFER_LEN : (end - i));
327 private void appendLocked(char[] buf, int i, final int length) throws IOException {
333 appendLocked(buf, i, next < end ? BUFFER_LEN : (end - i));
453 appendLocked(charArray, 0, charArray.length);
472 appendLocked(ch);
497 appendLocked(str, 0, str.length());
530 appendLocked(mSeparator, 0, mSeparator.length());
598 appendLocked(buf, offset, count)
    [all...]

Completed in 160 milliseconds