Searched refs:peek (Results 51 - 75 of 195) sorted by relevance

12345678

/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dparse-js.js270 function peek() { return S.text.charAt(S.pos); };
287 return !S.peek();
323 while (HOP(WHITESPACE_CHARS, peek()))
328 var ret = "", ch = peek(), i = 0;
331 ch = peek();
468 if (!peek()) return op;
469 var bigger = op + peek();
483 switch (peek()) {
498 return is_digit(peek())
528 var ch = peek();
[all...]
/external/apache-harmony/support/src/test/java/tests/util/
H A DCallVerificationStack.java96 return this.callStack.peek().getClassName();
105 return this.callStack.peek().getMethodName();
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dcommon.py266 if http_header_util.peek(state) is None:
273 http_header_util.peek(state))
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingQueueTest.java97 @Override public T peek() { method in class:ForwardingQueueTest.StandardImplForwardingQueue
191 forward.peek();
192 assertEquals("[peek]", getCalls());
H A DMinMaxPriorityQueueTest.java240 assertEquals(1, (int) mmHeap.peek());
243 assertEquals(1, (int) mmHeap.peek());
246 assertNull(mmHeap.peek());
256 assertEquals(1, (int) mmHeap.peek());
259 assertEquals(2, (int) mmHeap.peek());
262 assertEquals(3, (int) mmHeap.peek());
265 assertNull(mmHeap.peek());
474 assertEquals("bar", mmHeap.peek());
496 assertEquals("sergey", mmHeap.peek());
505 assertEquals(68, (int) mmHeap.peek());
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml10 match Stream.peek stream with
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoplevel.ml10 match Stream.peek stream with
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoplevel.ml10 match Stream.peek stream with
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoplevel.ml10 match Stream.peek stream with
/external/webkit/Source/WebCore/html/parser/
H A DHTMLTokenizer.h189 // The only way we can fail to peek is if there are no more
191 ALWAYS_INLINE bool peek(SegmentedString& source, int& lineNumber) function in class:WebCore::HTMLTokenizer::InputStreamPreprocessor
241 return peek(source, lineNumber);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRPtrBuffer.h80 - (id) peek;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
H A Dfilter.rb21 @input.peek == ANTLR3::EOF and return ANTLR3::EOF_TOKEN
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DDatagramSocketImplTest.java111 protected int peek(InetAddress sender) throws IOException { method in class:MockDatagramSocketImpl
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DStringVector.java219 public final String peek() method in class:StringVector
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
H A DNioEndpoint.java149 return outbound.peek();
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Drecognizers.rb387 if @input.peek == type
659 if follow.include?( @input.peek )
689 @input.peek( 2 ) == type
700 if follow.include?( @input.peek ) or follow.include?( EOR_TOKEN_TYPE )
815 type = @input.peek
818 type = @input.peek
1031 @input.peek == EOF and return EOF_TOKEN
1080 unless @input.peek == char
1089 unless @input.peek == expected
1105 char = @input.peek
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java793 if(!(m_elems.peek() instanceof ElemForEach))
797 ElemForEach elem = (ElemForEach)m_elems.peek();
1177 ? null : (Stylesheet) m_stylesheets.peek();
1262 return (XSLTElementProcessor) m_processors.peek();
1318 return (ElemTemplateElement) m_elems.peek();
1421 ? null : m_baseIdentifiers.peek());
1459 return ((SAXSourceLocator) m_stylesheetLocatorStack.peek());
1521 return (String) m_importStack.peek();
1526 return (Source) m_importSourceStack.peek();
1572 return (NamespaceSupport) m_nsSupportStack.peek();
[all...]
/external/stlport/src/details/
H A Dfstream_win32io.cpp416 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/
H A DLinkedListTest.java328 * @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]);
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());
732 assertEquals(testObjOne, testList.peek());
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathContext.java444 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();
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
H A DRuby.stg737 if @input.peek == DOWN
764 look_<decisionNumber>_<stateNumber> = @input.peek( <k> )<\n>
788 look_<decisionNumber>_<stateNumber> = @input.peek( <k> )<\n>
803 look_<decisionNumber>_<stateNumber> = @input.peek( <k> )<\n>
834 case look_<decisionNumber> = @input.peek( <k> )
852 case look_<decisionNumber> = @input.peek( <k> )
858 case look_<decisionNumber> = @input.peek( <k> )
968 look_<decisionNumber>_<stateNumber> = @input.peek
1015 isolatedLookaheadTest(atom, k, atomAsInt) ::= "@input.peek(<k>) == <atom>"
1022 @input.peek( <
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
H A DSymbolTableParser.m272 /* scopeSetAttributeRef */((Symbols_Scope *)[Symbols_stack peek]).names = [ANTLRPtrBuffer newANTLRPtrBufferWithLen:10];
309 NSLog( @"globals: %@", [((Symbols_Scope *)[Symbols_stack peek]).names toString] );
392 /* scopeSetAttributeRef */((Symbols_Scope *)[Symbols_stack peek]).names = [ANTLRPtrBuffer newANTLRPtrBufferWithLen:10];
463 NSLog( @"level %d symbols: %@", level, [((Symbols_Scope *)[Symbols_stack peek]).names toString] );
579 [((Symbols_Scope *)[Symbols_stack peek]).names addObject:ID1];
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
H A DSymbolTableParser.m297 ((Symbols_Scope *)[gStack peek]).names = [ANTLRHashMap newANTLRHashMapWithLen:101];
332 ((Symbols_Scope *)[gStack peek]).names);
400 ((Symbols_Scope *)[gStack peek]).names = [ANTLRHashMap newANTLRHashMapWithLen:101];
464 ((Symbols_Scope *)[gStack peek]).names);
559 ((Symbols_Scope *)[gStack peek]).names addObject:ID1]; /* element() */
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DRubyTarget.java149 char peek;
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/v8/benchmarks/
H A Drichards.js530 var peek, next = queue;
531 while ((peek = next.link) != null)
532 next = peek;

Completed in 1525 milliseconds

12345678