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

12345

/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.java35 * <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()}
H A DForwardingQueue.java70 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
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
162 * according to the contract of {@link PeekingIterator#peek()}.
167 public final T peek() { method in class:AbstractIterator
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DDispatcher.java33 public MockResponse peek() { method in class:Dispatcher
37 /** @deprecated replaced with {@link #peek}. */
39 throw new UnsupportedOperationException("This API is obsolete. Override peek() instead!");
H A DQueueDispatcher.java39 if (failFastResponse != null && responseQueue.peek() == null) {
47 @Override public MockResponse peek() { method in class:QueueDispatcher
48 MockResponse peek = responseQueue.peek();
49 if (peek != null) return peek;
51 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/third_party/pywebsocket/src/mod_pywebsocket/
H A Dhttp_header_util.py61 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/css/parser/
H A DMediaQueryInputStream.cpp18 UChar MediaQueryInputStream::peek(unsigned lookaheadOffset) function in class:blink::MediaQueryInputStream
/external/chromium_org/third_party/WebKit/Source/platform/
H A DSharedBufferChunkReader.cpp124 size_t SharedBufferChunkReader::peek(Vector<char>& data, size_t requestedSize) function in class:blink::SharedBufferChunkReader
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DLinkedStack.h48 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/
H A Dhttp_header_util.py61 def peek(state, pos=0): function
92 if c != peek(state, pos):
114 c = peek(state, pos)
141 c = peek(state, pos)
/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/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DInputStreamPreprocessor.h52 // The only way we can fail to peek is if there are no more
54 ALWAYS_INLINE bool peek(SegmentedString& source) function in class:blink::InputStreamPreprocessor
76 return peek(source);
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapLinkedStack.h47 const T& peek();
94 inline const T& HeapLinkedStack<T>::peek() function in class:blink::HeapLinkedStack
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicStringHash.h57 static PeekOutType peek(const WTF::AtomicString& value) { return value; } function in struct:WTF::HashTraits
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DScanning.pxd44 cdef peek(self) member in class:PyrexScanner
/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/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dheadlesscodemirror.js22 peek: function() {return this.string.charAt(this.pos) || null;},
/external/chromium_org/third_party/icu/source/common/
H A Duvector.h312 void* peek(void) const;
393 inline void* UStack::peek(void) const { function in class:UStack

Completed in 3443 milliseconds

12345