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

1 2 34 5 6 7 8 9

  /ndk/sources/cxx-stl/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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
LinkedListTest.java 328 * @tests {@link java.util.LinkedList#peek()}
333 assertNull("Should return null if this list is empty", list.peek());
335 assertEquals("Returned incorrect first element", ll.peek(),objArray[0]);
336 assertEquals("Peek remove the head (first element) of this list", ll.getFirst(), objArray[0]);
696 assertEquals(testObjOne, testList.peek());
699 assertEquals(testObjOne, testList.peek());
702 assertEquals(testObjTwo, testList.peek());
714 assertEquals(testObjOne, testList.peek());
717 assertEquals(testObjOne, testList.peek());
720 assertEquals(testObjOne, testList.peek());
    [all...]
  /external/apache-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/v8/src/
string.js 262 var peek = %_StringCharCodeAt(string, position);
263 if (peek == 36) { // $$
266 } else if (peek == 38) { // $& - match
270 } else if (peek == 96) { // $` - prefix
273 } else if (peek == 39) { // $' - suffix
276 } else if (peek >= 48 && peek <= 57) { // $n, 0 <= n <= 9
278 var n = peek - 48;
280 peek = %_StringCharCodeAt(string, position);
282 if (n != 0 && peek == 48 || peek >= 49 && peek <= 57)
    [all...]
  /frameworks/base/media/java/android/media/
AudioService.java     [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RouteSpecificPool.java 284 return this.waitingThreads.peek();
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 52 match Stream.peek stream with
68 match Stream.peek stream with
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 52 match Stream.peek stream with
68 match Stream.peek stream with
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 52 match Stream.peek stream with
68 match Stream.peek stream with
  /external/skia/include/core/
SkReader32.h 45 const void* peek() const { return fCurr; } function in class:SkReader32
SkStream.h 191 size_t peek() const { return fOffset; } function in class:SkMemoryStream
  /external/webkit/Source/JavaScriptCore/heap/
Local.h 111 ExternalType peek() const function in class:JSC::LocalStack
  /system/media/mca/filterfw/java/android/filterfw/io/
PatternScanner.java 78 public boolean peek(Pattern pattern) { method in class:PatternScanner
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java     [all...]
  /external/icu4c/common/
uvector.h 321 void* peek(void) const;
402 inline void* UStack::peek(void) const { function in class:UStack
  /external/skia/src/core/
SkFlattenable.cpp 8 size_t size = matrix->unflatten(reader->peek());
20 size_t size = rgn->unflatten(reader->peek());
  /external/webkit/Source/JavaScriptCore/jit/
JITStubCall.h 151 m_jit->peek(payload, stackIndex);
152 m_jit->peek(tag, stackIndex + 1);
  /external/webkit/Source/JavaScriptCore/parser/
Lexer.cpp 284 ALWAYS_INLINE int Lexer::peek(int offset) function in class:JSC::Lexer
294 int char1 = peek(1);
295 int char2 = peek(2);
296 int char3 = peek(3);
479 if (isASCIIHexDigit(m_current) && isASCIIHexDigit(peek(1))) {
791 if (m_current == '!' && peek(1) == '-' && peek(2) == '-') {
989 if ((m_current | 0x20) == 'x' && isASCIIHexDigit(peek(1))) {
    [all...]
Lexer.h 101 ALWAYS_INLINE int peek(int offset);
  /packages/apps/Camera/jni/feature_stab/src/dbregtest/
PgmImage.cpp 127 while ( in.peek() == '#' )
132 while ( in.peek() == '#' )
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 116 public Type peek() { method in class:Frame
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 88 match Stream.peek stream with
104 match Stream.peek stream with
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 99 match Stream.peek stream with
115 match Stream.peek stream with
  /external/skia/include/images/
SkImageDecoder.h 103 virtual bool peek(const char tag[], const void* data, size_t length) = 0;
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketImplFactoryTest.java 173 public int peek(InetAddress arg0) throws IOException { method in class:OldDatagramSocketImplFactoryTest.TestDatagramSocketImpl

Completed in 403 milliseconds

1 2 34 5 6 7 8 9