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

1234

/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DDispatcher.java35 public MockResponse peek() { method in class:Dispatcher
H A DQueueDispatcher.java40 if (failFastResponse != null && responseQueue.peek() == null) {
48 @Override public MockResponse peek() { method in class:QueueDispatcher
49 MockResponse peek = responseQueue.peek();
50 if (peek != null) return peek;
52 return super.peek();
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Dinteractive.rb98 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/
H A DPeekingIterator.java39 * <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()}
H A DForwardingQueue.java69 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
H A DAbstractIterator.java103 * {@code next}, or {@link #peek()} methods on this instance; if it does, an
110 * {@code peek()} invocation that invoked this method. Any further
164 * according to the contract of {@link PeekingIterator#peek()}.
169 public final T peek() { method in class:AbstractIterator
H A DBinaryTreeTraverser.java120 public T peek() { method in class:BinaryTreeTraverser.PreOrderIterator
H A DTreeTraverser.java203 public T peek() { method in class:TreeTraverser.BreadthFirstIterator
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DDispatcher.java33 public MockResponse peek() { method in class:Dispatcher
H A DQueueDispatcher.java38 if (failFastResponse != null && responseQueue.peek() == null) {
46 @Override public MockResponse peek() { method in class:QueueDispatcher
47 MockResponse peek = responseQueue.peek();
48 if (peek != null) return peek;
50 return super.peek();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStackExtensions.cs51 public static T peek<T>( this Stack<T> stack ) method in class:Antlr.Runtime.JavaExtensions.StackExtensions
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
H A Djsmin.c71 /* peek -- get the next character without getting it.
75 peek() function
82 /* next -- get the next character, excluding comments. peek() is used to see
91 switch (peek()) {
104 if (peek() == '/') {
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DIntStack.java120 public final int peek() method in class:IntStack
138 public int peek(int n) method in class:IntStack
H A DObjectStack.java123 public Object peek() method in class:ObjectStack
141 public Object peek(int n) method in class:ObjectStack
H A DBoolStack.java142 public final boolean peek() method in class:BoolStack
H A DStringVector.java219 public final String peek() method in class:StringVector
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DNDC.java79 public static String peek() { method in class:NDC
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Ddebug.rb134 def peek( i = 1 ) method in class:ANTLR3.Debug.TreeNodeStream
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DTreeTraverser.java196 public T peek() { method in class:TreeTraverser.BreadthFirstIterator
/external/icu/icu4c/source/common/
H A Duvector.h312 void* peek(void) const;
393 inline void* UStack::peek(void) const { function in class:UStack
/external/jetty/src/java/org/eclipse/jetty/io/nio/
H A DRandomAccessFileBuffer.java104 public byte peek() method in class:RandomAccessFileBuffer
121 public byte peek(int index) method in class:RandomAccessFileBuffer
137 public int peek(int index, byte[] b, int offset, int length) method in class:RandomAccessFileBuffer
/external/skia/src/core/
H A DSkTDPQueue.h35 const T& peek() const { return fArray[0]; } function in class:SkTDPQueue
36 T& peek() { return fArray[0]; } function in class:SkTDPQueue
96 to peek(). Otherwise, there is no guarantee about ordering of elements in the queue. */
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb90 === consume / look / peek
95 <tt>stream.peek(k = 1)</tt> is used to quickly retrieve the object of interest
103 look-ahead position specified by <tt>k</tt>. While <tt>peek</tt> provides the
111 <b>Note:</b> in most ANTLR runtime APIs for other languages, <tt>peek</tt> is
115 un-Ruby-like. Thus, I chose <tt>peek</tt> and <tt>look</tt> to represent a
116 quick-look (peek) and a full-fledged look-ahead operation (look). If this causes
176 # :method: peek( k = 1 )
180 abstract :peek
294 Then, all <tt>peek</tt>, <tt>look</tt>, and <tt>consume</tt> operations only
349 #peek metho
497 def peek( k = 1 ) method in class:ANTLR3.that.StringStream
925 def peek( k = 1 ) method in class:ANTLR3.that.CommonTokenStream
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedQueueTest.java62 public E peek() { method in class:SynchronizedQueueTest.TestQueue
64 return delegate.peek();
158 create().peek();
/external/javassist/src/main/javassist/bytecode/analysis/
H A DFrame.java116 public Type peek() { method in class:Frame

Completed in 2634 milliseconds

1234