/external/mockwebserver/src/main/java/com/google/mockwebserver/ |
H A D | Dispatcher.java | 35 public MockResponse peek() { method in class:Dispatcher
|
H A D | QueueDispatcher.java | 40 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 D | 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/ |
H A D | 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()}
|
H A D | 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
|
H A D | 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 164 * according to the contract of {@link PeekingIterator#peek()}. 169 public final T peek() { method in class:AbstractIterator
|
H A D | BinaryTreeTraverser.java | 121 public T peek() { method in class:BinaryTreeTraverser.PreOrderIterator
|
H A D | TreeTraverser.java | 204 public T peek() { method in class:TreeTraverser.BreadthFirstIterator
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
H A D | Dispatcher.java | 33 public MockResponse peek() { method in class:Dispatcher
|
H A D | QueueDispatcher.java | 38 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 D | StackExtensions.cs | 51 public static T peek<T>( this Stack<T> stack ) method in class:Antlr.Runtime.JavaExtensions.StackExtensions
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/ |
H A D | jsmin.c | 71 /* 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 D | IntStack.java | 120 public final int peek() method in class:IntStack 138 public int peek(int n) method in class:IntStack
|
H A D | ObjectStack.java | 123 public Object peek() method in class:ObjectStack 141 public Object peek(int n) method in class:ObjectStack
|
H A D | BoolStack.java | 142 public final boolean peek() method in class:BoolStack
|
H A D | StringVector.java | 219 public final String peek() method in class:StringVector
|
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/ |
H A D | NDC.java | 79 public static String peek() { method in class:NDC
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/ |
H A D | debug.rb | 134 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 D | TreeTraverser.java | 196 public T peek() { method in class:TreeTraverser.BreadthFirstIterator
|
/external/icu/icu4c/source/common/ |
H A D | uvector.h | 312 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 D | RandomAccessFileBuffer.java | 104 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 D | SkTDPQueue.h | 35 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 D | streams.rb | 90 === 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/boringssl/src/ssl/ |
H A D | d1_pkt.c | 188 int dtls1_read_app_data(SSL *ssl, uint8_t *buf, int len, int peek) { argument 189 return dtls1_read_bytes(ssl, SSL3_RT_APPLICATION_DATA, buf, len, peek); 195 1 /* len */, 0 /* no peek */); 235 int dtls1_read_bytes(SSL *ssl, int type, unsigned char *buf, int len, int peek) { argument 243 (peek && type != SSL3_RT_APPLICATION_DATA)) { 291 * 'peek' mode) */ 327 if (!peek) {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | SynchronizedQueueTest.java | 62 public E peek() { method in class:SynchronizedQueueTest.TestQueue 64 return delegate.peek(); 158 create().peek();
|