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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/ipc/
sync_socket_unittest.cc 148 EXPECT_EQ(kHelloStringLength, socket_->Peek());
153 EXPECT_EQ(0U, socket_->Peek());
178 EXPECT_EQ(0U, pair[0].Peek());
179 EXPECT_EQ(0U, pair[1].Peek());
292 size_t bytes_in_buffer = pair[1].Peek();
298 EXPECT_EQ(bytes_in_buffer, pair[1].Peek());
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashTraits.h 92 static PeekType peek(const T& value) { return value; } function in struct:WTF::GenericHashTraits
93 static T& peek(T& value) { return value; } // Overloaded to avoid copying of non-temporary values. function in struct:WTF::GenericHashTraits
143 static PeekType peek(const OwnPtr<P>& value) { return value.get(); } function in struct:WTF::HashTraits
144 static PeekType peek(std::nullptr_t) { return 0; } function in struct:WTF::HashTraits
158 static PeekType peek(const RefPtr<P>& value) { return value.get(); } function in struct:WTF::HashTraits
159 static PeekType peek(P* value) { return value; } function in struct:WTF::HashTraits
  /external/v8/src/
string.js 306 var peek = %_StringCharCodeAt(string, position);
307 if (peek == 36) { // $$
310 } else if (peek == 38) { // $& - match
314 } else if (peek == 96) { // $` - prefix
317 } else if (peek == 39) { // $' - suffix
320 } else if (peek >= 48 && peek <= 57) { // $n, 0 <= n <= 9
322 var n = peek - 48;
324 peek = %_StringCharCodeAt(string, position);
326 if (n != 0 && peek == 48 || peek >= 49 && peek <= 57)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
UnbufferedTokenStream.cs 101 return _realTokens.Peek();
115 _realTokens.Push(_realTokens.Peek());
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
shell.js 56 if(!/\w/.test(stream.peek())) {
62 if (stream.peek() === '=' && /\w+/.test(cur)) return 'def';
  /external/chromium_org/third_party/skia/include/core/
SkReader32.h 40 const void* peek() const { return fCurr; } function in class:SkReader32
140 size_t size = obj->readFromMemory(this->peek(), this->available());
  /external/skia/include/core/
SkReader32.h 40 const void* peek() const { return fCurr; } function in class:SkReader32
140 size_t size = obj->readFromMemory(this->peek(), this->available());
  /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
  /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
  /packages/apps/Launcher2/src/com/android/launcher2/
DeferredHandler.java 137 Runnable peek = p.first; local
138 if (peek instanceof IdleRunnable) {
  /packages/apps/Launcher3/src/com/android/launcher3/
DeferredHandler.java 138 Runnable peek = p.first; local
139 if (peek instanceof IdleRunnable) {
  /cts/libs/json/src/com/android/json/stream/
JsonToken.java 78 * JsonReader#peek()} to signal that the JSON-encoded value has no more
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
filter.rb 21 @input.peek == ANTLR3::EOF and return ANTLR3::EOF_TOKEN
  /external/arduino/hardware/arduino/cores/arduino/
HardwareSerial.h 54 virtual int peek(void);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
http_header_util.py 61 def peek(state, pos=0): function
92 if c != peek(state, pos):
114 c = peek(state, pos)
141 c = peek(state, pos)
  /external/chromium_org/base/containers/
mru_cache_unittest.cc 43 EXPECT_TRUE(cache.Peek(0) == cache.end());
57 found = cache.Peek(kItem1Key);
138 // Check that Peek doesn't change ordering
140 Cache::iterator peekiter = cache.Peek(kItem1Key);
  /external/chromium_org/media/base/
byte_queue.cc 62 void ByteQueue::Peek(const uint8** data, int* size) const {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
http_header_util.py 61 def peek(state, pos=0): function
92 if c != peek(state, pos):
114 c = peek(state, pos)
141 c = peek(state, pos)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 7 match Stream.peek stream with
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 9 match Stream.peek stream with
  /frameworks/base/core/java/android/util/
JsonToken.java 78 * JsonReader#peek()} to signal that the JSON-encoded value has no more
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
Stack.java 63 public T peek() { method in class:Stack
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
AwaitableCompletionListener.java 55 if (mQueue.peek() != null) {
AwaitableErrorListener.java 63 if (mQueue.peek() != null) {
  /frameworks/wilhelm/src/desktop/
SDL.c 28 // A peek lock would be risky if output mixes are dynamic, so we use SDL_PauseAudio to

Completed in 563 milliseconds

1 2 34 5 6 7 8 91011>>