Lines Matching refs:buffer
2 * @fileoverview A buffer implementation that can decode data for protobufs.
51 return BufferDecoder.fromArrayBuffer(bytesArray.buffer);
81 * Returns the start index of the underlying buffer.
89 * Returns the end index of the underlying buffer.
97 * Returns the length of the underlying buffer.
311 * Returns the buffer as a string.
318 new DataView(this.dataView_.buffer, this.startIndex_, this.length());
323 * Returns the buffer as a ByteString.
332 * underlying buffer.
339 this.dataView_.buffer, this.startIndex_, this.length());