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

1 2 3 4 5 6 7 8 91011>>

  /external/mockwebserver/src/main/java/com/google/mockwebserver/
Dispatcher.java 35 public MockResponse peek() { method in class:Dispatcher
QueueDispatcher.java 40 if (failFastResponse != null && responseQueue.peek() == null) {
48 @Override public MockResponse peek() { method in class:QueueDispatcher
49 MockResponse peek = responseQueue.peek(); local
50 if (peek != null) return peek;
52 return super.peek();
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
Dispatcher.java 33 public MockResponse peek() { method in class:Dispatcher
QueueDispatcher.java 40 if (failFastResponse != null && responseQueue.peek() == null) {
48 @Override public MockResponse peek() { method in class:QueueDispatcher
49 MockResponse peek = responseQueue.peek(); local
50 if (peek != null) return peek;
52 return super.peek();
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
binary.cpp 160 uint32_t peek() const { return peekAt(_.word_index); } function in class:__anon104951::Parser
273 const uint32_t first_word = peek();
420 const uint32_t word = peek();
    [all...]
  /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 39 * <p>Calls to {@code peek()} should not change the state of the iteration,
46 E peek(); method in interface:PeekingIterator
51 * <p>The objects returned by consecutive calls to {@link #peek()} then {@link
61 * #peek()} has occurred since the most recent call to {@link #next()}.
63 * @throws IllegalStateException if there has been a call to {@link #peek()}
ForwardingQueue.java 69 public E peek() { method in class:ForwardingQueue
70 return delegate().peek();
94 * A sensible definition of {@link #peek} in terms of {@link #element}. If you
95 * override {@link #element}, you may wish to override {@link #peek} to
  /libcore/ojluni/src/main/java/java/util/
Queue.java 74 * <td>{@link Queue#peek peek()}</td>
107 * <p>The {@link #element()} and {@link #peek()} methods return, but do
194 * differs from {@link #peek peek} only in that it throws an exception
208 E peek(); method in interface:Queue
Stack.java 33 * method to <tt>peek</tt> at the top item on the stack, a method to test
84 obj = peek();
98 public synchronized E peek() { method in class:Stack
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslTokenStream.cpp 82 EHlslTokenClass HlslTokenStream::peek() const function in class:glslang::HlslTokenStream
91 return peek() == tokenClass;
  /frameworks/av/media/libstagefright/webm/
LinkedBlockingQueue.h 63 T peek() { function in class:android::LinkedBlockingQueue
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
Stack.java 63 public T peek() { method in class:Stack
  /hardware/libhardware/modules/sensors/
SensorEventQueue.cpp 69 sensors_event_t* SensorEventQueue::peek() { function in class:SensorEventQueue
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
PeekableInputStream.java 24 * this stream can call peek() to see the next available byte in the stream and a subsequent read
46 public int peek() throws IOException { method in class:PeekableInputStream
  /packages/apps/Email/provider_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
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
IntegerArrayStream.java 34 public int peek() { method in class:IntegerArrayStream
76 * will return false, and stream.peek() will return 3 since it is the first element that did not
87 if (value != peek()) {
  /system/bt/osi/test/
ringbuffer_test.cc 23 uint8_t peek[10] = {0}; local
24 size_t peeked = ringbuffer_peek(rb, 0, peek, 10);
28 ASSERT_TRUE(0 == memcmp(buffer, peek, peeked));
38 uint8_t peek[5] = {0}; local
50 size_t peeked = ringbuffer_peek(rb, 0, peek, 5);
55 ASSERT_TRUE(0 == memcmp(aa, peek, peeked));
80 uint8_t peek[16] = {0}; local
81 size_t peeked = ringbuffer_peek(rb, 0, peek, 16);
83 ASSERT_TRUE(0 == memcmp(content, peek, peeked));
99 peeked = ringbuffer_peek(rb, 0, peek, 7)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/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/guava/guava-tests/test/com/google/common/collect/
AbstractIteratorTest.java 103 assertEquals(0, (int) iter.peek());
104 assertEquals(0, (int) iter.peek());
106 assertEquals(0, (int) iter.peek());
109 assertEquals(1, (int) iter.peek());
113 iter.peek();
114 fail("peek() should throw NoSuchElementException at end");
119 iter.peek();
120 fail("peek() should continue to throw NoSuchElementException at end");
131 iter.peek();
132 fail("peek() should still throw NoSuchElementException after next()")
    [all...]
  /device/google/marlin/camera/QCamera2/util/
QCameraQueue.cpp 214 * FUNCTION : peek
222 void* QCameraQueue::peek() function in class:qcamera::QCameraQueue
  /device/huawei/angler/camera/QCamera2/util/
QCameraQueue.cpp 207 * FUNCTION : peek
215 void* QCameraQueue::peek() function in class:qcamera::QCameraQueue
  /device/lge/bullhead/camera/QCamera2/util/
QCameraQueue.cpp 207 * FUNCTION : peek
215 void* QCameraQueue::peek() function in class:qcamera::QCameraQueue
  /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

Completed in 911 milliseconds

1 2 3 4 5 6 7 8 91011>>