HomeSort by relevance Sort by last modified time
    Searched defs:peek (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/base/core/jni/android/graphics/
NinePatchPeeker.cpp 23 bool NinePatchPeeker::peek(const char tag[], const void* data, size_t length) { function in class:NinePatchPeeker
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StackExtensions.cs 51 public static T peek<T>( this Stack<T> stack ) method in class:Antlr.Runtime.JavaExtensions.StackExtensions
53 return stack.Peek();
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
interactive.rb 98 def peek( i = 1 ) method in class:ANTLR3.InteractiveStringStream
107 peek( i )
113 peek( i ).chr rescue EOF
  /external/guava/guava/src/com/google/common/collect/
PeekingIterator.java 35 * <p>Calls to {@code peek()} should not change the state of the iteration,
42 E peek(); method in interface:PeekingIterator
47 * <p>The objects returned by consecutive calls to {@link #peek()} then {@link
57 * #peek()} has occurred since the most recent call to {@link #next()}.
59 * @throws IllegalStateException if there has been a call to {@link #peek()}
ForwardingQueue.java 70 public E peek() { method in class:ForwardingQueue
71 return delegate().peek();
95 * A sensible definition of {@link #peek} in terms of {@link #element}. If you
96 * override {@link #element}, you may wish to override {@link #peek} to
AbstractIterator.java 103 * {@code next}, or {@link #peek()} methods on this instance; if it does, an
110 * {@code peek()} invocation that invoked this method. Any further
162 * according to the contract of {@link PeekingIterator#peek()}.
167 public final T peek() { method in class:AbstractIterator
  /libcore/luni/src/main/java/java/util/
Queue.java 45 * <td>{@link #peek peek()}</td>
78 * <p>The {@link #element()} and {@link #peek()} methods return, but do
173 * differs from {@link #peek peek} only in that it throws an exception
187 E peek(); method in interface:Queue
Stack.java 53 public synchronized E peek() { method in class:Stack
67 * @see #peek
88 * @see #peek
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
http_header_util.py 61 def peek(state, pos=0): function
92 if c != peek(state, pos):
114 c = peek(state, pos)
141 c = peek(state, pos)
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
InputStreamPreprocessor.h 52 // The only way we can fail to peek is if there are no more
54 ALWAYS_INLINE bool peek(SegmentedString& source) function in class:WebCore::InputStreamPreprocessor
76 return peek(source);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
SharedBufferChunkReader.cpp 124 size_t SharedBufferChunkReader::peek(Vector<char>& data, size_t requestedSize) function in class:WebCore::SharedBufferChunkReader
  /external/chromium_org/third_party/WebKit/Source/wtf/
LinkedStack.h 48 const T& peek();
91 inline const T& LinkedStack<T>::peek() function in class:WTF::LinkedStack
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
http_header_util.py 61 def peek(state, pos=0): function
92 if c != peek(state, pos):
114 c = peek(state, pos)
141 c = peek(state, pos)
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
QueueDispatcher.java 40 if (failFastResponse != null && responseQueue.peek() == null) {
49 MockResponse peek = responseQueue.peek(); local
50 if (peek == null) {
55 return peek.getSocketPolicy();
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
Stack.java 63 public T peek() { method in class:Stack
  /packages/apps/Email/src/com/android/email/
PeekableInputStream.java 24 * 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
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractIteratorTest.java 100 assertEquals(0, (int) iter.peek());
101 assertEquals(0, (int) iter.peek());
103 assertEquals(0, (int) iter.peek());
106 assertEquals(1, (int) iter.peek());
110 iter.peek();
111 fail("peek() should throw NoSuchElementException at end");
116 iter.peek();
117 fail("peek() should continue to throw NoSuchElementException at end");
128 iter.peek();
129 fail("peek() should still throw NoSuchElementException after next()")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
IntStack.java 120 public final int peek() method in class:IntStack
138 public int peek(int n) method in class:IntStack
BoolStack.java 142 public final boolean peek() method in class:BoolStack
ObjectStack.java 123 public Object peek() method in class:ObjectStack
141 public Object peek(int n) method in class:ObjectStack
StringVector.java 219 public final String peek() method in class:StringVector
  /external/icu4c/common/
uvector.h 312 void* peek(void) const;
393 inline void* UStack::peek(void) const { function in class:UStack
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
DequeMap.java 72 * @see Deque#peek()
77 public V peek(K key) { method in class:DequeMap
82 return pile.peek();
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
debug.rb 134 def peek( i = 1 ) method in class:ANTLR3.Debug.TreeNodeStream
  /external/arduino/hardware/arduino/cores/arduino/
HardwareSerial.cpp 237 int HardwareSerial::peek(void) function in class:HardwareSerial

Completed in 644 milliseconds

1 2 3 4 5 6 7 8