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

12 3 4 5 6 7 8

  /external/chromium_org/third_party/icu/source/common/
uvector.h 321 void* peek(void) const;
402 inline void* UStack::peek(void) const { function in class:UStack
  /external/chromium_org/v8/src/
dateparser-inl.h 115 if (scanner.Peek().IsSymbol('.')) scanner.Next();
119 if (!scanner.Peek().IsNumber()) return false;
129 DateToken peek = scanner.Peek(); local
130 if (!peek.IsEndOfInput() &&
131 !peek.IsWhiteSpace() &&
132 !peek.IsKeywordZ() &&
133 !peek.IsAsciiSign()) return false;
154 if (scanner.Peek().IsNumber()) return false;
161 if (scanner.Peek().IsNumber())
    [all...]
  /external/v8/src/
dateparser-inl.h 114 if (scanner.Peek().IsSymbol('.')) scanner.Next();
118 if (!scanner.Peek().IsNumber()) return false;
128 DateToken peek = scanner.Peek(); local
129 if (!peek.IsEndOfInput() &&
130 !peek.IsWhiteSpace() &&
131 !peek.IsKeywordZ() &&
132 !peek.IsAsciiSign()) return false;
157 if (scanner.Peek().IsNumber()) {
162 if (scanner.Peek().IsSymbol(':'))
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
PatternScanner.java 78 public boolean peek(Pattern pattern) { method in class:PatternScanner
  /libcore/luni/src/main/java/java/net/
DatagramSocketImpl.java 181 protected abstract int peek(InetAddress sender) throws IOException; method in class:DatagramSocketImpl
  /libcore/luni/src/main/java/java/util/concurrent/
BlockingDeque.java 151 * <td>{@link #peek() peek()}</td>
534 * This method differs from {@link #peek peek} only in that it throws an
553 E peek(); method in interface:BlockingDeque
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 192 * {@code n == 0} means to peek at the top of the stack. Note that
196 * @param n {@code >= 0;} which element to peek at
200 public TypeBearer peek(int n) { method in class:ExecutionStack
216 * @param n {@code >= 0;} which element to peek at
236 * for {@code peek(n).getType()}.
238 * @see #peek
241 return peek(n).getType();
253 TypeBearer result = peek(0);
  /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/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/chromium_org/third_party/skia/include/core/
SkReader32.h 40 const void* peek() const { return fCurr; } function in class:SkReader32
110 size_t size = path->readFromMemory(this->peek());
116 size_t size = matrix->readFromMemory(this->peek());
127 size_t size = rgn->readFromMemory(this->peek());
SkStream.h 343 size_t peek() const { return fOffset; } function in class:SkMemoryStream
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 116 public Type peek() { method in class:Frame
  /external/qemu/
json-parser.c 272 QObject *key, *token = NULL, *value, *peek; local
275 peek = qlist_peek(working);
278 parse_error(ctxt, peek, "key is not a string in object");
314 QObject *token, *peek; local
326 peek = qlist_peek(working);
327 if (!token_is_operator(peek, '}')) {
370 QObject *token, *peek; local
382 peek = qlist_peek(working);
383 if (!token_is_operator(peek, ']')) {
  /external/skia/include/core/
SkReader32.h 40 const void* peek() const { return fCurr; } function in class:SkReader32
110 size_t size = path->readFromMemory(this->peek());
116 size_t size = matrix->readFromMemory(this->peek());
127 size_t size = rgn->readFromMemory(this->peek());
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameQueue.java 83 public Frame peek(); method in interface:FrameQueue.QueueImpl
111 public Frame peek() { method in class:FrameQueue.SingleFrameQueueImpl
166 public Frame peek() { method in class:FrameQueue
167 return mQueueImpl.peek();
  /libcore/luni/src/main/java/java/util/
Deque.java 104 * <td>{@link java.util.Queue#peek peek()}</td>
105 * <td>{@link #peek peekFirst()}</td>
130 * <td>{@link #peek peek()}</td>
135 * <p>Note that the {@link #peek peek} method works equally well when
426 * This method differs from {@link #peek peek} only in that it throws an
446 E peek(); method in interface:Deque
    [all...]
  /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 137 Runnable peek = p.first; local
138 if (peek instanceof IdleRunnable) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
AbstractQueueTest.java 97 public E peek() { method in class:AbstractQueueTest
220 assertNull(queue.peek());
231 assertNull(queue.peek());
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingQueueTest.java 97 @Override public T peek() { method in class:ForwardingQueueTest.StandardImplForwardingQueue
191 forward.peek();
192 assertEquals("[peek]", getCalls());
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractQueueTest.java 99 public E peek() { method in class:AbstractQueueTest
236 assertNull(queue.peek());
247 assertNull(queue.peek());
  /cts/libs/json/src/com/android/json/stream/
JsonWriter.java 226 JsonScope context = peek();
242 private JsonScope peek() { method in class:JsonWriter
348 if (peek() != JsonScope.NONEMPTY_DOCUMENT) {
421 JsonScope context = peek();
440 switch (peek()) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
RubyTarget.java 149 char peek; local
169 peek = value.charAt( i + 2 );
170 if ( Character.isLowerCase( peek ) ) {
171 /* if next is the start of word (indicated when peek is lowercase)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DatagramSocketImplTest.java 111 protected int peek(InetAddress sender) throws IOException { method in class:MockDatagramSocketImpl

Completed in 1049 milliseconds

12 3 4 5 6 7 8