Searched refs:Peek (Results 1 - 25 of 70) sorted by relevance

123

/external/v8/src/
H A Ddateparser-inl.h95 if (scanner.Peek().IsSymbol('.')) scanner.Next();
99 if (!scanner.Peek().IsNumber()) return false;
109 DateToken peek = scanner.Peek();
135 if (scanner.Peek().IsNumber()) return false;
144 if (scanner.Peek().IsNumber()) {
151 if (scanner.Peek().IsSymbol(':')) {
252 if (scanner->Peek().IsAsciiSign()) {
256 if (!scanner->Peek().IsFixedLengthNumber(6)) return sign_token;
261 } else if (scanner->Peek().IsFixedLengthNumber(4)) {
267 if (!scanner->Peek()
[all...]
H A Dlocked-queue.h27 inline bool Peek(Record* record) const;
/external/libchrome/base/
H A Dsync_socket_unittest.cc27 ASSERT_EQ(socket_->Peek(), 0u);
54 ASSERT_EQ(0u, socket_a->Peek());
55 ASSERT_EQ(0u, socket_b->Peek());
60 ASSERT_EQ(sizeof(kSending), socket_b->Peek());
64 ASSERT_EQ(0u, socket_a->Peek());
65 ASSERT_EQ(0u, socket_b->Peek());
70 ASSERT_EQ(sizeof(kSending), socket_a->Peek());
74 ASSERT_EQ(0u, socket_a->Peek());
75 ASSERT_EQ(0u, socket_b->Peek());
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DListStack`1.cs40 public T Peek() method in class:Antlr.Runtime.Misc.ListStack
42 return Peek(0);
45 public T Peek(int depth) method in class:Antlr.Runtime.Misc.ListStack
H A DFastQueue.cs118 public virtual T Peek() method in class:Antlr.Runtime.Misc.FastQueue
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DStackList.cs72 public object Peek() method in class:Antlr.Runtime.Collections.StackList
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DParseTreeBuilder.cs61 return callStack.Peek();
94 ParseTree parentRuleNode = callStack.Peek();
104 ParseTree ruleNode = callStack.Peek();
116 ParseTree ruleNode = callStack.Peek();
134 ParseTree ruleNode = callStack.Peek();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DParseTreeBuilder.cs84 ParseTree parentRuleNode = callStack.Peek();
93 ParseTree ruleNode = callStack.Peek();
103 ParseTree ruleNode = callStack.Peek();
119 ParseTree ruleNode = callStack.Peek();
H A DProfiler.cs166 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/tensorflow/tensorflow/core/lib/strings/
H A Dproto_text_util.cc41 const char quote = scanner->Peek();
H A Dproto_text_util.h124 if (scanner->Peek() != '#') return;
126 while (scanner->Peek('\n') != '\n') scanner->One(Scanner::ALL);
/external/v8/src/profiler/
H A Dcircular-queue.h39 T* Peek();
H A Dunbound-queue.h30 INLINE(Record* Peek() const);
H A Dcircular-queue-inl.h26 T* SamplingCircularQueue<T, L>::Peek() { function in class:v8::internal::SamplingCircularQueue
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DUnbufferedTokenStream.cs101 return _realTokens.Peek();
115 _realTokens.Push(_realTokens.Peek());
/external/vixl/examples/aarch64/
H A Dswap-int32.cc45 __ Peek(w1, 0);
46 __ Peek(w0, 4);
H A Dswap4.cc40 __ Peek(x3, 0);
41 __ Peek(x2, 8);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStackExtensions.cs53 return stack.Peek();
/external/protobuf/src/google/protobuf/stubs/
H A Dbytestream.cc42 StringPiece fragment = Peek();
150 StringPiece ArrayByteSource::Peek() { function in class:google::protobuf::strings::ArrayByteSource
173 StringPiece LimitByteSource::Peek() { function in class:google::protobuf::strings::LimitByteSource
174 StringPiece piece(source_->Peek());
H A Dbytestream.h101 // StringPiece data = source->Peek();
127 virtual StringPiece Peek() = 0;
130 // call to Peek().
293 // assert(source.Peek() == "Hello");
300 virtual StringPiece Peek();
324 // assert(limit.Peek() == "Hello");
332 virtual StringPiece Peek();
H A Dbytestream_unittest.cc54 StringPiece Peek() { function in class:google::protobuf::strings::__anon19067::MockByteSource
83 EXPECT_EQ("!", source.Peek());
/external/skia/src/core/
H A DSkXfermodePriv.h35 static SkXfermode* Peek(SkBlendMode mode) { function in class:SkXfermode
/external/skqp/src/core/
H A DSkXfermodePriv.h35 static SkXfermode* Peek(SkBlendMode mode) { function in class:SkXfermode
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DFastQueue.cs108 public virtual T Peek() { method in class:Antlr.Runtime.Misc.FastQueue
/external/tensorflow/tensorflow/core/framework/
H A Dshape_inference_testutil.cc240 while (scanner.Peek() != ']') {
241 if (scanner.Peek() == '?') {
257 if (scanner.Peek() == ',') {
259 } else if (scanner.Peek() != ']') {

Completed in 559 milliseconds

123