/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
StateManager.java | 193 if (state != mStack.peek().activityState) { 200 + mStack.peek().activityState); 207 ActivityState top = !mStack.isEmpty() ? mStack.peek().activityState : null; 228 if (oldState != mStack.peek().activityState) { 231 + mStack.peek().activityState); 326 return mStack.peek().activityState;
|
/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/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/chromium_org/media/mp4/ |
offset_byte_queue_unittest.cc | 41 queue_->Peek(&buf, &size); 80 queue_->Peek(&buf, &size);
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
fifo_char.cc | 59 size_t FIFOChar::Peek(void* buf, size_t len) { 84 size_t read_len = Peek(buf, len);
|
fifo_char.h | 33 size_t Peek(void* buf, size_t len);
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
LinkedStack.h | 48 const T& peek(); 91 inline const T& LinkedStack<T>::peek() function in class:WTF::LinkedStack
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.manip/ |
ws.pass.cpp | 50 assert(is.peek() == '1'); 57 assert(is.peek() == L'1');
|
/external/valgrind/main/coregrind/m_demangle/ |
cp-demangle.c | 1157 char peek = d_peek_char (di); local 1219 char peek = d_peek_char (di); local 1339 char peek; local 1418 char peek; local 1485 char peek; local 2090 char peek; local 2349 char peek; local 2448 char peek = d_peek_char (di); local 2485 char peek; local 2528 char peek; local 2572 char peek; local 2810 char peek; local 3314 char peek; local [all...] |
/external/gcc-demangle/ |
cp-demangle.c | 1119 char peek = d_peek_char (di); local 1181 char peek = d_peek_char (di); local 1300 char peek; local 1370 char peek; local 1437 char peek; local 2014 char peek; local 2272 char peek; local 2348 char peek = d_peek_char (di); local 2385 char peek; local 2428 char peek; local 2472 char peek; local 2710 char peek; local 3179 char peek; local [all...] |
/cts/libs/json/src/com/android/json/stream/ |
JsonReader.java | 58 * <p>If a value may be null, you should first check using {@link #peek()}. 115 * } else if (name.equals("geo") && reader.peek() != JsonToken.NULL) { 197 * The type of the next token to be returned by {@link #peek} and {@link 198 * #advance}. If null, peek() will assign a value. 287 peek(); method 289 throw new IllegalStateException("Expected " + expected + " but was " + peek()); 298 peek(); method 305 public JsonToken peek() throws IOException { method in class:JsonReader 342 peek(); method 359 peek(); method 377 peek(); method 395 peek(); method 413 peek(); method 429 peek(); method 450 peek(); method 481 peek(); method 725 char peek = buffer[pos]; local [all...] |
/frameworks/base/core/java/android/util/ |
JsonReader.java | 60 * <p>If a value may be null, you should first check using {@link #peek()}. 121 * } else if (name.equals("geo") && reader.peek() != JsonToken.NULL) { 211 * The type of the next token to be returned by {@link #peek} and {@link 212 * #advance}. If null, peek() will assign a value. 308 peek(); method 310 throw new IllegalStateException("Expected " + expected + " but was " + peek()); 319 peek(); method 326 public JsonToken peek() throws IOException { method in class:JsonReader 371 peek(); method 388 peek(); method 406 peek(); method 424 peek(); method 442 peek(); method 458 peek(); method 479 peek(); method 510 peek(); method 794 char peek = buffer[pos]; local [all...] |
/external/arduino/hardware/arduino/cores/arduino/ |
Stream.h | 31 virtual int peek() = 0;
|
/external/chromium_org/base/memory/ |
discardable_memory_provider.cc | 72 DCHECK(allocations_.Peek(discardable) == allocations_.end()); 79 AllocationMap::iterator it = allocations_.Peek(discardable); 156 AllocationMap::const_iterator it = allocations_.Peek(discardable); 163 AllocationMap::const_iterator it = allocations_.Peek(discardable);
|
/external/chromium_org/base/ |
sync_socket_nacl.cc | 54 size_t SyncSocket::Peek() {
|
/external/chromium_org/chrome/browser/net/ |
timed_cache.cc | 30 return mru_cache_.end() != mru_cache_.Peek(url);
|
/external/guava/guava/src/com/google/common/collect/ |
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 162 * according to the contract of {@link PeekingIterator#peek()}. 167 public final T peek() { method in class:AbstractIterator
|
/external/mockito/src/org/mockito/internal/stubbing/ |
StubbedInvocationMatcher.java | 32 a = answers.size() == 1 ? answers.peek() : answers.poll();
|
/frameworks/base/core/jni/android/graphics/ |
NinePatchPeeker.h | 43 virtual bool peek(const char tag[], const void* data, size_t length);
|
/libcore/dex/src/main/java/com/android/dex/ |
EncodedValueReader.java | 76 public int peek() { method in class:EncodedValueReader 222 switch (peek()) { 282 if (peek() != expected) { 284 String.format("Expected %x but was %x", expected, peek()));
|
/libcore/luni/src/main/java/java/util/ |
EmptyStackException.java | 22 * An {@code EmptyStackException} is thrown if the pop/peek method of a stack is
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istream.iterator/istream.iterator.cons/ |
istream.pass.cpp | 25 assert(inf.peek() == ' ');
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
KeyboardRow.java | 120 keyAttr, mRowAttributesStack.peek(), mParams.mBaseWidth); 129 return mRowAttributesStack.peek().mDefaultKeyWidth; 133 return mRowAttributesStack.peek().mDefaultKeyLabelFlags; 137 return mRowAttributesStack.peek().mDefaultBackgroundType;
|
/packages/apps/Email/src/com/android/email/mail/store/imap/ |
ImapResponseParser.java | 109 * Peek next one byte. 114 private int peek() throws IOException { method in class:ImapResponseParser 115 final int next = mIn.peek(); 259 final int ch = peek(); 289 if (peek() == ' ') { 295 final int next = peek(); 298 if (peek() == ' ') { // Skip following space 331 final int next = peek(); 366 final int ch = peek(); 406 final int next = peek(); [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
DelayQueue.java | 112 if (q.peek() == e) { 158 E first = q.peek(); 180 E first = q.peek(); 203 if (leader == null && q.peek() != null) 225 E first = q.peek(); 254 if (leader == null && q.peek() != null) 270 public E peek() { method in class:DelayQueue 274 return q.peek(); 296 E first = q.peek();
|