HomeSort by relevance Sort by last modified time
    Searched refs:peek (Results 151 - 175 of 417) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Camera2/jni/feature_stab/src/dbregtest/
PgmImage.cpp 127 while ( in.peek() == '#' )
132 while ( in.peek() == '#' )
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
PgmImage.cpp 127 while ( in.peek() == '#' )
132 while ( in.peek() == '#' )
  /external/clang/lib/AST/
CommentParser.cpp 64 char peek() const { function in class:clang::comments::TextTokenRetokenizer
115 if (isWhitespace(peek()))
156 const char C = peek();
190 const char C = peek();
199 C = peek();
  /external/chromium_org/v8/tools/
SourceMap.js 257 if (stringCharIterator.peek() === ",")
260 while (stringCharIterator.peek() === ";") {
270 if (this._isSeparator(stringCharIterator.peek())) {
282 if (!this._isSeparator(stringCharIterator.peek()))
359 peek: function()
  /external/chromium_org/media/ffmpeg/
ffmpeg_unittest.cc 51 AVPacket* peek() { function in class:media::AVPacketQueue
233 memcpy(&packet, audio_packets_.peek(), sizeof(packet));
287 memcpy(&packet, video_packets_.peek(), sizeof(packet));
  /external/chromium_org/v8/src/
preparser.h 85 INLINE(Token::Value peek()) { function in class:v8::internal::ParserBase
87 return scanner()->peek();
95 // Any further calls to Next or peek will return the illegal token.
97 // have been peek'ed.
112 Token::Value next = peek();
  /external/v8/src/
preparser.h 580 i::Token::Value peek() { function in class:v8::preparser::PreParser
582 return scanner_->peek();
590 // Further calls to peek/Next will return illegal token.
592 // have been seen using peek.
624 i::Token::Value next = peek();
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/Ruby/lib/antlr3/tree/
debug.rb 134 def peek( i = 1 ) method in class:ANTLR3.Debug.TreeNodeStream
  /external/chromium_org/third_party/WebKit/Source/wtf/
RefPtrHashMap.h 256 return MappedTraits::peek(MappedTraits::emptyValue());
257 return MappedTraits::peek(entry->value);
266 return MappedTraits::peek(MappedTraits::emptyValue());
267 return MappedTraits::peek(entry->value);
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 116 public Type peek() { method in class:Frame
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/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
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketImplFactoryTest.java 173 public int peek(InetAddress arg0) throws IOException { method in class:OldDatagramSocketImplFactoryTest.TestDatagramSocketImpl
  /packages/apps/Email/tests/src/com/android/email/
ThrottleTest.java 201 Entry e = mTasks.peek();
  /libcore/luni/src/main/java/java/util/
Formatter.java     [all...]
  /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/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 371 int c = in->peek();
385 int c = in->peek();
659 while ( in->good() && in->peek() != '>' )
946 if ( in->good() && in->peek() != '<' )
960 assert( in->peek() == '<' );
971 int c = in->peek();
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
FragmentedMp4Builder.java 319 long curEntryLeft = timeQueue.peek().getCount();
323 curEntryLeft = timeQueue.peek().getCount();
331 long compositionTimeEntriesLeft = compositionTimeQueue != null ? compositionTimeQueue.peek().getCount() : -1;
380 entry.setSampleDuration(timeQueue.peek().getDelta());
383 curEntryLeft = timeQueue.peek().getCount();
387 entry.setSampleCompositionTimeOffset(compositionTimeQueue.peek().getOffset());
  /external/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 371 int c = in->peek();
385 int c = in->peek();
659 while ( in->good() && in->peek() != '>' )
946 if ( in->good() && in->peek() != '<' )
960 assert( in->peek() == '<' );
971 int c = in->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/chromium_org/third_party/icu/source/i18n/
regexcmp.cpp     [all...]
  /external/icu4c/i18n/
regexcmp.cpp     [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
RopeByteString.java 649 if (prefixesStack.isEmpty() || prefixesStack.peek().size() >= binEnd) {
657 && prefixesStack.peek().size() < binStart) {
669 if (prefixesStack.peek().size() < binEnd) {
    [all...]

Completed in 538 milliseconds

1 2 3 4 5 67 8 91011>>