HomeSort by relevance Sort by last modified time
    Searched refs:peek (Results 251 - 275 of 403) sorted by null

<<11121314151617

  /libcore/luni/src/main/java/java/util/concurrent/
LinkedBlockingQueue.java 472 public E peek() { method in class:LinkedBlockingQueue
  /prebuilts/devtools/tools/lib/
kxml2-2.3.0.jar 
  /prebuilts/misc/common/kxml2/
kxml2-2.3.0.jar 
  /prebuilts/tools/common/kxml2-tools/
kxml2-2.3.0.jar 
  /prebuilts/tools/common/m2/repository/net/sf/kxml/kxml2/2.3.0/
kxml2-2.3.0.jar 
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 90 === consume / look / peek
95 <tt>stream.peek(k = 1)</tt> is used to quickly retrieve the object of interest
103 look-ahead position specified by <tt>k</tt>. While <tt>peek</tt> provides the
111 <b>Note:</b> in most ANTLR runtime APIs for other languages, <tt>peek</tt> is
115 un-Ruby-like. Thus, I chose <tt>peek</tt> and <tt>look</tt> to represent a
116 quick-look (peek) and a full-fledged look-ahead operation (look). If this causes
176 # :method: peek( k = 1 )
180 abstract :peek
294 Then, all <tt>peek</tt>, <tt>look</tt>, and <tt>consume</tt> operations only
349 #peek method returns the integer character value at look-ahead positio
497 def peek( k = 1 ) method in class:ANTLR3.that.StringStream
925 def peek( k = 1 ) method in class:ANTLR3.that.CommonTokenStream
    [all...]
debug.rb 353 def peek( steps = 1 ) method in class:ANTLR3.Debug.TokenStream
446 # triggered by both peek and look calls. The debugger will want to know
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTokenizer.cpp 191 || !m_inputStreamPreprocessor.peek(source)) \
224 if (source.isEmpty() || !m_inputStreamPreprocessor.peek(source))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashMap.h 376 return MappedTraits::peek(MappedTraits::emptyValue());
377 return MappedTraits::peek(entry->value);
  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_locl.h 905 int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek);
    [all...]
  /external/chromium_org/v8/src/
parser.h 713 INLINE(Token::Value peek()) { function in class:v8::internal::BASE_EMBEDDED
715 return scanner().peek();
726 // Any further calls to Next or peek will return the illegal token.
728 // have been peek'ed.
  /external/openssl/ssl/
ssl_locl.h 903 int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek);
    [all...]
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationAccess.java 508 return reader.peek() == EncodedValueReader.ENCODED_NULL
527 return reader.peek() == EncodedValueReader.ENCODED_NULL;
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 1017 public Object peek() {
3673 public ReferenceEntry<K, V> peek() { method in class:LocalCache.WriteQueue
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar 
  /bionic/libc/kernel/tools/
cpp.py 159 def peek(self): member in class:TokenCursor
186 tok = self.peek()
261 """try to peek the next n chars on the same line"""
868 def peek(self): member in class:ExprParser
927 macroname = self.peek().value
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
CPP.stg     [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Java.stg     [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
Perl5.stg     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
RuleSet.cpp 440 builder.append(pendingRules->peek());
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_from_sm4.cpp     [all...]
nv50_ir_ssa.cpp 420 return reinterpret_cast<LValue *>(stack[val->id].peek().u.p);
nv50_ir_util.h 275 inline Item& peek() { assert(size); return array[size - 1]; } function in class:nv50_ir::Stack
  /external/guava/guava-tests/test/com/google/common/cache/
LocalLoadingCacheTest.java 276 assertSame(one, segment.recencyQueue.peek().getKey());

Completed in 1458 milliseconds

<<11121314151617