Searched refs:buff (Results 1 – 2 of 2) sorted by relevance
62 StringBuffer buff = new StringBuffer(); in read() local64 buff.append((char) c); in read()65 String str = mMap.get(buff.toString()); in read()
769 public ByteBuffer ExpandIf(ByteBuffer buff, int extra) { in ExpandIf() argument770 if (extra <= buff.remaining()) { in ExpandIf()771 return buff; in ExpandIf()773 ByteBuffer ret = ByteBuffer.allocate(buff.position() + extra); in ExpandIf()774 ret.order(buff.order()); in ExpandIf()775 ret.put(buff.array(), 0, buff.position()); in ExpandIf()