HomeSort by relevance Sort by last modified time
    Searched refs:Peek (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/v8/src/
dateparser-inl.h 92 if (scanner.Peek().IsSymbol('.')) scanner.Next();
96 if (!scanner.Peek().IsNumber()) return false;
106 DateToken peek = scanner.Peek(); local
107 if (!peek.IsEndOfInput() &&
108 !peek.IsWhiteSpace() &&
109 !peek.IsKeywordZ() &&
110 !peek.IsAsciiSign()) return false;
131 if (scanner.Peek().IsNumber()) return false;
138 if (scanner.Peek().IsNumber())
    [all...]
unbound-queue.h 30 INLINE(Record* Peek() const);
circular-queue.h 39 T* Peek();
circular-queue-inl.h 26 T* SamplingCircularQueue<T, L>::Peek() {
unbound-queue-inl.h 74 Record* UnboundQueue<Record>::Peek() const {
  /external/v8/test/cctest/
test-circular-queue.cc 45 CHECK_EQ(NULL, scq.Peek());
57 CHECK_NE(NULL, scq.Peek());
61 CHECK_NE(NULL, scq.Peek());
66 Record* rec = reinterpret_cast<Record*>(scq.Peek());
69 CHECK_EQ(rec, reinterpret_cast<Record*>(scq.Peek()));
71 CHECK_NE(rec, reinterpret_cast<Record*>(scq.Peek()));
74 CHECK_EQ(NULL, scq.Peek());
77 CHECK_EQ(NULL, scq.Peek());
86 CHECK_NE(NULL, scq.Peek());
88 Record* rec = reinterpret_cast<Record*>(scq.Peek());
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
ListStack`1.cs 40 public T Peek()
42 return Peek(0);
45 public T Peek(int depth)
FastQueue.cs 118 public virtual T Peek()
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
StackList.cs 72 public object Peek()
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
ParseTreeBuilder.cs 61 return callStack.Peek();
94 ParseTree parentRuleNode = callStack.Peek();
104 ParseTree ruleNode = callStack.Peek();
116 ParseTree ruleNode = callStack.Peek();
134 ParseTree ruleNode = callStack.Peek();
Profiler.cs 178 string g = currentGrammarFileName.Peek();
185 descriptor.fileName = currentGrammarFileName.Peek();
186 descriptor.ruleName = currentRuleName.Peek();
187 descriptor.line = currentLine.Peek();
188 descriptor.pos = currentPos.Peek();
363 return decisionStack.Peek();
714 currentGrammarFileName.Peek(),
715 currentRuleName.Peek(),
716 currentLine.Peek(),
717 currentPos.Peek());
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
ParseTreeBuilder.cs 84 ParseTree parentRuleNode = callStack.Peek();
93 ParseTree ruleNode = callStack.Peek();
103 ParseTree ruleNode = callStack.Peek();
119 ParseTree ruleNode = callStack.Peek();
Profiler.cs 166 string g = currentGrammarFileName.Peek();
172 descriptor.fileName = currentGrammarFileName.Peek();
173 descriptor.ruleName = currentRuleName.Peek();
174 descriptor.line = currentLine.Peek();
175 descriptor.pos = currentPos.Peek();
330 return decisionStack.Peek();
654 currentGrammarFileName.Peek(),
655 currentRuleName.Peek(),
656 currentLine.Peek(),
657 currentPos.Peek());
    [all...]
  /external/vixl/examples/
swap-int32.cc 35 // as the stack pointer (via peek, poke, push, etc).
46 __ Peek(w1, 0);
47 __ Peek(w0, 4);
swap4.cc 41 __ Peek(x3, 0);
42 __ Peek(x2, 8);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StackExtensions.cs 51 public static T peek<T>( this Stack<T> stack ) method in class:Antlr.Runtime.JavaExtensions.StackExtensions
53 return stack.Peek();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
UnbufferedTokenStream.cs 101 return _realTokens.Peek();
115 _realTokens.Push(_realTokens.Peek());
  /art/compiler/optimizing/
pretty_printer.h 81 PrintInt(predecessors.Peek()->GetBlockId());
90 PrintInt(successors.Peek()->GetBlockId());
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
FastQueue.cs 108 public virtual T Peek() {
  /external/lldb/source/Utility/
StringExtractor.h 123 Peek ()
  /external/v8/src/arm64/
builtins-arm64.cc 470 __ Peek(x14, 2 * kXRegSize);
541 __ Peek(x4, 2 * kXRegSize);
561 __ Peek(x10, 2 * kXRegSize);
581 __ Peek(constructor, 2 * kXRegSize); // Load constructor.
582 __ Peek(argc, 3 * kXRegSize); // Load number of arguments.
657 __ Peek(x0, 0);
666 __ Peek(x1, 2 * kXRegSize);
    [all...]
deoptimizer-arm64.cc 139 __ Peek(bailout_id, kSavedRegistersAreaSize);
175 __ Peek(x2, i * kPointerSize);
187 __ Peek(x2, src_offset);
full-codegen-arm64.cc 130 __ Peek(x10, receiver_offset);
    [all...]
  /art/compiler/utils/
growable_array.h 153 T Peek() const {
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 126 CheckEquals(FIStackList.Peek, 'Item 2');

Completed in 1384 milliseconds

1 2 3