/external/openssl/crypto/pqueue/ |
pqueue.c | 192 #if 0 /* find works in peek mode */
|
/external/webkit/JavaScriptCore/assembler/ |
MacroAssembler.h | 76 void peek(RegisterID dest, int index = 0) function in class:JSC::MacroAssembler
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyLoader.java | 103 final ViewNode parent = stack.peek();
|
/dalvik/libcore/xml/src/main/java/org/apache/xpath/ |
XPathContext.java | 444 return (SourceLocator) m_saxLocations.peek(); 683 return (DTMIterator) m_contextNodeLists.peek(); 736 return m_currentNodes.peek(); 869 return m_predicatePos.peek(); 889 return m_currentExpressionNodes.peek(); 922 return (PrefixResolver) m_prefixResolvers.peek(); 1005 ? null : (SubContextList) m_axesIteratorStack.peek(); [all...] |
/external/guava/javadoc/com/google/common/collect/ |
ForwardingQueue.html | 177 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ForwardingQueue.html#peek()">peek</A></B>()</CODE> 336 <A NAME="peek()"><!-- --></A><H3> 337 peek</H3> 339 public <A HREF="../../../../com/google/common/collect/ForwardingQueue.html" title="type parameter in ForwardingQueue">E</A> <B>peek</B>()</PRE> 342 <DT><B>Specified by:</B><DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/util/Queue.html?is-external=true#peek()" title="class or interface in java.util">peek</A></CODE> in interface <CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/util/Queue.html?is-external=true" title="class or interface in java.util">Queue</A><<A HREF="../../../../com/google/common/collect/ForwardingQueue.html" title="type parameter in ForwardingQueue">E</A>></CODE></DL>
|
/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/guava/src/com/google/common/collect/ |
Iterators.java | 976 public E peek() { 988 * <p>Calls to the {@code peek} method with no intervening calls to {@code [all...] |
/external/kernel-headers/original/linux/ |
skbuff.h | 556 * @list_: list to peek at 558 * Peek an &sk_buff. Unlike most other operations you _MUST_ 559 * be careful with this one. A peek leaves the buffer on the 577 * @list_: list to peek at 579 * Peek an &sk_buff. Unlike most other operations you _MUST_ 580 * be careful with this one. A peek leaves the buffer on the [all...] |
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
BlockingQueue.java | 57 * <td>{@link #peek peek()}</td>
|
ConcurrentLinkedQueue.java | 312 public E peek() { method in class:ConcurrentLinkedQueue 332 * another variant of poll/peek; here returning out the first 333 * node, not element (so we cannot collapse with peek() without
|
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
SynchronousQueueTest.java | 513 * peek returns null 517 assertNull(q.peek());
|
/external/icu4c/common/ |
uvector.h | 321 void* peek(void) const; 402 inline void* UStack::peek(void) const { function in class:UStack
|
/external/openssl/patches/ |
handshake_cutthrough.patch | 135 static int ssl3_read_internal(SSL *s, void *buf, int len, int peek) 156 ret=s->method->ssl_read_bytes(s,SSL3_RT_APPLICATION_DATA,buf,len,peek);
|
/external/openssl/ssl/ |
d1_pkt.c | 126 int len, int peek); 693 int dtls1_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek) 707 (peek && (type != SSL3_RT_APPLICATION_DATA))) 714 if ( (ret = have_handshake_fragment(s, type, buf, len, peek))) 793 * (even in 'peek' mode) */ 822 if (!peek) [all...] |
s3_pkt.c | 831 int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek) 843 (peek && (type != SSL3_RT_APPLICATION_DATA))) 856 /* peek == 0 */ 911 * (even in 'peek' mode) */ 940 if (!peek) [all...] |
/external/v8/src/ |
scanner.h | 276 Token::Value peek() const { return next_.token; } function in class:v8::internal::Scanner 278 // Returns true if there was a line terminator before the peek'ed token.
|
/cts/tools/dasm/src/java_cup/runtime/ |
virtual_parse_stack.java | 115 return ((Integer)vstack.peek()).intValue();
|
/external/icu4c/test/intltest/ |
uvectest.cpp | 151 TEST_ASSERT(strcmp("cde", (const char *)a->peek()) == 0);
|
/external/opencore/fileformats/mp4/parser/utils/mp4recognizer/include/ |
atomutils.h | 205 // peek to a new offset (MBDS only), read pointer does not change
|
/external/skia/include/core/ |
SkStream.h | 185 size_t peek() const { return fOffset; } function in class:SkMemoryStream
|
/dalvik/libcore/json/src/main/java/org/json/ |
JSONTokener.java | 126 char peek = in.charAt(pos); local 127 switch (peek) { 349 /* Peek to see if this is the empty object. */
|
/external/v8/benchmarks/ |
richards.js | 530 var peek, next = queue; 531 while ((peek = next.link) != null) 532 next = peek;
|
/external/webkit/SunSpider/tests/v8-v4/ |
v8-richards.js | 525 var peek, next = queue; 526 while ((peek = next.link) != null) 527 next = peek;
|
/external/icu4c/i18n/ |
regexcmp.cpp | [all...] |
/packages/apps/Email/src/com/android/email/mail/store/ |
ImapStore.java | 825 * Envelope - UID FETCH ([FLAGS] INTERNALDATE UID RFC822.SIZE FLAGS BODY.PEEK[HEADER.FIELDS (date subject from content-type to cc) (…) [all...] |