HomeSort by relevance Sort by last modified time
    Searched refs:peek (Results 101 - 125 of 201) sorted by null

1 2 3 45 6 7 8 9

  /packages/apps/Email/tests/src/com/android/email/
ThrottleTest.java 198 Entry e = mTasks.peek();
  /development/tools/a3dconvert/
ObjLoader.cpp 38 while(is.good() && isWhitespace(is.peek())) {
47 while(is.good() && !isWhitespace(is.peek())) {
  /libcore/luni/src/main/java/java/util/
Formatter.java     [all...]
PriorityQueue.java 216 public E peek() { method in class:PriorityQueue
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PriorityQueueTest.java 489 * @tests java.util.PriorityQueue#peek()
498 assertEquals(new Integer(array[0]), integerQueue.peek());
499 assertEquals(new Integer(array[0]), integerQueue.peek());
503 * @tests java.util.PriorityQueue#peek()
508 assertNull(queue.peek());
509 assertNull(queue.peek());
698 Object o = destStringQueue.peek();
716 Object o = destStringQueue.peek();
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 252 Type type = frame.peek();
256 frame.push(frame.peek());
261 Type type = frame.peek();
284 Type type2 = frame.peek();
480 verifyAssignable(Type.INTEGER, frame.peek());
    [all...]
  /external/tinyxml/
tinyxmlparser.cpp 362 int c = in->peek();
376 int c = in->peek();
636 while ( in->good() && in->peek() != '>' )
928 if ( in->good() && in->peek() != '<' )
942 assert( in->peek() == '<' );
953 int c = in->peek();
1414 int c = in->peek();
    [all...]
  /external/icu4c/i18n/
regexcmp.cpp     [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
LinkedListTest.java 625 assertEquals("should remove the head", objArray[0], ll.peek());
626 assertEquals("should remove the head", objArray[0], ll.peek());
630 assertNull("should return 'null' if list is empty", ll.peek());
  /external/openssl/ssl/
d1_pkt.c 170 int len, int peek);
732 int dtls1_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek)
746 (peek && (type != SSL3_RT_APPLICATION_DATA)))
753 if ( (ret = have_handshake_fragment(s, type, buf, len, peek)))
832 * (even in 'peek' mode) */
861 if (!peek)
    [all...]
s2_pkt.c 127 static int ssl2_read_internal(SSL *s, void *buf, int len, int peek)
159 if (!peek)
  /external/chromium/third_party/libjingle/source/talk/base/
network.cc 98 char ch = ist.peek();
123 if (ist.peek() == ',')
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 382 genericDeclaration = currentMethod.peek();
385 genericDeclaration = currentConstructor.peek();
466 genericDeclaration = currentMethod.peek();
468 genericDeclaration = currentConstructor.peek();
  /external/icu4c/test/intltest/
uvectest.cpp 151 TEST_ASSERT(strcmp("cde", (const char *)a->peek()) == 0);
  /external/javassist/src/main/javassist/convert/
TransformAccessArrayField.java 121 CtClass clazz = frame.peek().getCtClass();
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
parser.ml 113 match Stream.peek stream with
129 match Stream.peek stream with
  /external/skia/src/core/
SkWriter32.cpp 195 const uint8_t* base = (const uint8_t*)this->peek();
  /external/webkit/Source/JavaScriptCore/runtime/
JSONObject.cpp 675 JSArray* array = arrayStack.peek();
701 JSArray* array = arrayStack.peek();
738 JSObject* object = objectStack.peek();
766 JSObject* object = objectStack.peek();
  /libcore/luni/src/main/java/java/net/
PlainDatagramSocketImpl.java 151 protected int peek(InetAddress sender) throws IOException { method in class:PlainDatagramSocketImpl
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyLoader.java 103 final ViewNode parent = stack.peek();
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java     [all...]
  /system/core/adb/
sysdeps_win32.c 1292 int (*peek) ( EventHook hook ); member in struct:EventHookRec_
    [all...]
  /external/v8/src/
parser.h 579 INLINE(Token::Value peek()) { function in class:v8::internal::Parser
581 return scanner().peek();
592 // Any further calls to Next or peek will return the illegal token.
594 // have been peek'ed.
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 481 Delayed head = (Delayed) super.getQueue().peek();
965 public RunnableScheduledFuture peek() { method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 429 m_currentNode = m_elemStack.isEmpty() ? null : (Node)m_elemStack.peek();

Completed in 717 milliseconds

1 2 3 45 6 7 8 9