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

1 2 3 4

  /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/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
56 * #peek()} has occurred since the most recent call to {@link #next()}.
58 * @throws IllegalStateException if there has been a call to {@link #peek()}
ForwardingQueue.java 51 public E peek() { method in class:ForwardingQueue
52 return delegate().peek();
AbstractIterator.java 97 * {@code next}, or {@link #peek()} methods on this instance; if it does, an
104 * {@code peek()} invocation that invoked this method. Any further
154 * according to the contract of {@link PeekingIterator#peek()}.
159 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
Deque.java 105 * <td>{@link java.util.Queue#peek peek()}</td>
106 * <td>{@link #peek peekFirst()}</td>
131 * <td>{@link #peek peek()}</td>
136 * <p>Note that the {@link #peek peek} method works equally well when
427 * This method differs from {@link #peek peek} only in that it throws an
447 E peek(); method in interface:Deque
    [all...]
  /external/webkit/Source/WebKit/chromium/scripts/
jsmin.py 107 def peek(self): member in class:JavaScriptMinifier
113 """ get the next character, excluding comments. peek() is used to see
118 peek = self.peek()
119 if peek == '/':
124 elif peek == '*':
129 if self.peek() == '/':
  /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/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/webkit/Source/JavaScriptCore/heap/
Local.h 111 ExternalType peek() const function in class:JSC::LocalStack
  /external/icu4c/common/
uvector.h 321 void* peek(void) const;
402 inline void* UStack::peek(void) const { function in class:UStack
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssembler.h 86 void peek(RegisterID dest, int index = 0) function in class:JSC::MacroAssembler
  /libcore/luni/src/main/java/java/net/
DatagramSocketImpl.java 189 protected abstract int peek(InetAddress sender) throws IOException; method in class:DatagramSocketImpl
  /libcore/luni/src/main/java/java/util/concurrent/
BlockingDeque.java 151 * <td>{@link #peek() peek()}</td>
530 * This method differs from {@link #peek peek} only in that it throws an
549 E peek(); method in interface:BlockingDeque
  /packages/apps/Launcher2/src/com/android/launcher2/
DeferredHandler.java 103 Runnable peek = mQueue.getFirst(); local
104 if (peek instanceof IdleRunnable) {
  /system/media/mca/filterfw/java/android/filterfw/io/
PatternScanner.java 78 public boolean peek(Pattern pattern) { method in class:PatternScanner
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 192 * {@code n == 0} means to peek at the top of the stack. Note that
196 * @param n {@code >= 0;} which element to peek at
200 public TypeBearer peek(int n) { method in class:ExecutionStack
216 * @param n {@code >= 0;} which element to peek at
236 * for {@code peek(n).getType()}.
238 * @see #peek
241 return peek(n).getType();
253 TypeBearer result = peek(0);
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 116 public Type peek() { method in class:Frame
  /external/qemu/
json-parser.c 272 QObject *key, *token = NULL, *value, *peek; local
275 peek = qlist_peek(working);
278 parse_error(ctxt, peek, "key is not a string in object");
314 QObject *token, *peek; local
326 peek = qlist_peek(working);
327 if (!token_is_operator(peek, '}')) {
370 QObject *token, *peek; local
382 peek = qlist_peek(working);
383 if (!token_is_operator(peek, ']')) {
  /external/skia/include/core/
SkReader32.h 45 const void* peek() const { return fCurr; } function in class:SkReader32

Completed in 703 milliseconds

1 2 3 4