Searched defs:peek (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Email/src/com/android/email/
H A DPeekableInputStream.java24 * client of this stream can call peek() to see the next available byte in the stream
46 public int peek() throws IOException { method in class:PeekableInputStream
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DDequeMap.java72 * @see Deque#peek()
77 public V peek(K key) { method in class:DequeMap
82 return pile.peek();
/packages/apps/Email/src/com/android/email/mail/store/imap/
H A DImapResponseParser.java114 private int peek() throws IOException { method in class:ImapResponseParser
115 final int next = mIn.peek();
259 final int ch = peek();
289 if (peek() == ' ') {
295 final int next = peek();
298 if (peek() == ' ') { // Skip following space
331 final int next = peek();
366 final int ch = peek();
406 final int next = peek();

Completed in 68 milliseconds