HomeSort by relevance Sort by last modified time
    Searched full:peek (Results 26 - 50 of 262) sorted by null

12 3 4 5 6 7 8 91011

  /dalvik/libcore/luni/src/main/java/java/util/
AbstractQueue.java 22 * {@code element} are based on {@code offer, poll}, and {@code peek} except
110 E o = peek();
  /external/stlport/src/details/
fstream_win32io.cpp 416 else { // last char is CR, peek for LF
417 char peek = ' '; local
419 ReadFile(_M_file_id, (LPVOID)&peek, 1, &NumberOfBytesPeeked, 0);
421 if (peek != _STLP_LF) { //not a <CR><LF> combination
423 if ((to < buf + n) && (peek != _STLP_CR))
424 //We have enough place to store peek and it is no a special
426 *to++ = peek;
437 * - put peek back in the file but this would then generate an infinite loop
  /external/v8/src/
parser.cc 246 INLINE(Token::Value peek()) { return scanner_.peek(); } function in class:v8::internal::Parser
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
INetworkSystem.java 101 boolean peek) throws IOException;
105 boolean peek) throws IOException;
109 boolean peek) throws IOException;
113 int receiveTimeout, boolean peek) throws IOException;
  /external/guava/javadoc/com/google/common/collect/
PeekingIterator.html 136 <TD><CODE><B><A HREF="../../../../com/google/common/collect/PeekingIterator.html#peek()">peek</A></B>()</CODE>
172 <A NAME="peek()"><!-- --></A><H3>
173 peek</H3>
175 <A HREF="../../../../com/google/common/collect/PeekingIterator.html" title="type parameter in PeekingIterator">E</A> <B>peek</B>()</PRE>
179 <p>Calls to <code>peek()</code> should not change the state of the iteration,
202 <p>The objects returned by consecutive calls to <A HREF="../../../../com/google/common/collect/PeekingIterator.html#peek()"><CODE>peek()</CODE></A> then <A HREF="../../../../com/google/common/collect/PeekingIterator.html#next()"><CODE>next()</CODE></A> are guaranteed to be equal to each other.
220 <p>Implementations may or may not support removal when a call to <A HREF="../../../../com/google/common/collect/PeekingIterator.html#peek()"><CODE>peek()</CODE></A> has occurred since the most recent call to <A HREF="../../../../com/google/common/col (…)
    [all...]
AbstractIterator.html 208 <TD><CODE><B><A HREF="../../../../com/google/common/collect/AbstractIterator.html#peek()">peek</A></B>()</CODE>
212 according to the contract of <A HREF="../../../../com/google/common/collect/PeekingIterator.html#peek()"><CODE>PeekingIterator.peek()</CODE></A>.</TD>
281 <code>next</code>, or <A HREF="../../../../com/google/common/collect/AbstractIterator.html#peek()"><CODE>peek()</CODE></A> methods on this instance; if it does, an
291 <code>peek()</code> invocation that invoked this method. Any further
336 <A NAME="peek()"><!-- --></A><H3>
337 peek</H3>
339 public final <A HREF="../../../../com/google/common/collect/AbstractIterator.html" title="type parameter in AbstractIterator">T</A> <B>peek</B>()</PRE
    [all...]
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
ConcurrentLinkedQueueTest.java 253 * peek returns next element, or null if empty
258 assertEquals(i, ((Integer)q.peek()).intValue());
260 assertTrue(q.peek() == null ||
261 i != ((Integer)q.peek()).intValue());
263 assertNull(q.peek());
PriorityQueueTest.java 292 * peek returns next element, or null if empty
297 assertEquals(i, ((Integer)q.peek()).intValue());
299 assertTrue(q.peek() == null ||
300 i != ((Integer)q.peek()).intValue());
302 assertNull(q.peek());
DelayQueueTest.java 590 * peek returns next element, or null if empty
595 assertEquals(new PDelay(i), ((PDelay)q.peek()));
598 assertNull(q.peek());
600 assertTrue(i != ((PDelay)q.peek()).intValue());
602 assertNull(q.peek());
891 * peek of a non-empty queue returns non-null even if not expired
896 assert(q.peek() != null);
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
PriorityQueueTest.java 649 * @tests java.util.PriorityQueue#peek()
654 method = "peek",
664 assertEquals(new Integer(array[0]), integerQueue.peek());
665 assertEquals(new Integer(array[0]), integerQueue.peek());
669 * @tests java.util.PriorityQueue#peek()
673 notes = "Verifies peek method for empty queue.",
674 method = "peek",
680 assertNull(queue.peek());
681 assertNull(queue.peek());
957 Object o = destStringQueue.peek();
    [all...]
AbstractQueueTest.java 105 public E peek() { method in class:AbstractQueueTest
302 assertNull(queue.peek());
319 assertNull(queue.peek());
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
NamespaceMappings.java 143 uri = ((MappingRecord) stack.peek()).m_uri;
154 ((MappingRecord) stack.peek()) : null;
242 MappingRecord mr = (MappingRecord)stack.peek();
271 MappingRecord map = (MappingRecord) (m_nodeStack.peek());
284 MappingRecord nm2 = (MappingRecord) prefixStack.peek();
421 public Object peek() { method in class:NamespaceMappings.Stack
431 public Object peek(int idx) { method in class:NamespaceMappings.Stack
  /bionic/libc/regex/
regcomp.c 113 #define PEEK() (*p->next)
117 #define SEE(c) (MORE() && PEEK() == (c))
118 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))
127 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
129 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
260 while (MORE() && (c = PEEK()) != '|' && c != stop)
368 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
377 c = PEEK();
409 if (isdigit((uch)PEEK())) {
418 while (MORE() && PEEK() != '}'
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
MsgMgr.java 171 // ((Locator)m_stylesheetLocatorStack.peek());
255 // ((Locator)m_stylesheetLocatorStack.peek());
306 // ((Locator)m_stylesheetLocatorStack.peek());
  /dalvik/libcore/json/src/main/java/org/json/
JSONStringer.java 189 Scope context = peek();
205 private Scope peek() throws JSONException { method in class:JSONStringer
384 Scope context = peek();
404 Scope context = peek();
  /external/skia/include/core/
SkReader32.h 45 const void* peek() const { return fCurr; } function in class:SkReader32
  /external/webkit/WebKitTools/android/flex-2.5.4a/
README 5 Read the file "INSTALL" for general installation directives. Peek near
  /frameworks/base/include/media/
IMediaPlayerService.h 49 // Take a peek at currently playing audio, for visualization purposes.
  /dalvik/libcore/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
ObjectStack.java 123 public Object peek() method in class:ObjectStack
141 public Object peek(int n) method in class:ObjectStack
  /external/webkit/JavaScriptCore/jit/
JITStubCall.h 149 m_jit->peek(payload, stackIndex);
150 m_jit->peek(tag, stackIndex + 1);
  /frameworks/base/core/java/android/webkit/
SslErrorHandler.java 144 if (loader == mLoaderQueue.peek()) {
186 LoadListener loader = mLoaderQueue.peek();
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/net/
PlainDatagramSocketImpl.java 228 protected int peek(InetAddress sender) throws IOException { method in class:PlainDatagramSocketImpl
240 .getLength(), receiveTimeout, true); // peek
253 // do not peek
396 .getLength(), receiveTimeout, true); // peek
401 .getLength(), receiveTimeout, true); // peek
  /external/webkit/JavaScriptCore/wrec/
WRECGenerator.cpp 50 peek(input, 3);
51 peek(index, 4);
52 peek(length, 5);
53 peek(output, 6);
58 peek(output, 3);
88 peek(index);
643 peek(index);
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
StylesheetHandler.java 793 if(!(m_elems.peek() instanceof ElemForEach))
797 ElemForEach elem = (ElemForEach)m_elems.peek();
    [all...]

Completed in 548 milliseconds

12 3 4 5 6 7 8 91011