/third_party/node/deps/v8/src/date/ |
H A D | dateparser-inl.h | 92 if (scanner.Peek().IsSymbol('.')) scanner.Next(); in Parse() 96 if (!scanner.Peek().IsNumber()) return false; in Parse() 106 DateToken peek = scanner.Peek(); in Parse() 131 if (scanner.Peek().IsNumber()) return false; in Parse() 140 if (scanner.Peek().IsNumber()) { in Parse() 147 if (scanner.Peek().IsSymbol(':')) { in Parse() 245 if (scanner->Peek().IsAsciiSign()) { in ParseES5DateTime() 249 if (!scanner->Peek().IsFixedLengthNumber(6)) return sign_token; in ParseES5DateTime() 254 } else if (scanner->Peek().IsFixedLengthNumber(4)) { in ParseES5DateTime() 260 if (!scanner->Peek() in ParseES5DateTime() [all...] |
/third_party/node/test/cctest/ |
H A D | test_sockaddr.cc | 103 CHECK_NOT_NULL(lru.Peek(addr1)); in TEST() 104 CHECK_EQ(lru.Peek(addr1), lru.Peek(addr4)); in TEST() 105 CHECK_EQ(lru.Peek(addr1)->c, 1); in TEST() 106 CHECK_EQ(lru.Peek(addr1)->expired, false); in TEST() 112 CHECK_NOT_NULL(lru.Peek(addr2)); in TEST() 113 CHECK_EQ(lru.Peek(addr2)->c, 2); in TEST() 121 CHECK_NOT_NULL(lru.Peek(addr3)); in TEST() 122 CHECK_EQ(lru.Peek(addr3)->c, 3); in TEST() 127 CHECK_NULL(lru.Peek(addr in TEST() [all...] |
/third_party/node/deps/v8/src/asmjs/ |
H A D | asm-parser.cc | 271 } else if (!Peek('}') && !scanner_.IsPrecededByNewline()) { in SkipSemicolon() 343 while (Peek(TOK(function))) { in ValidateModule() 346 while (Peek(TOK(var))) { in ValidateModule() 390 if (!Peek(')')) { in ValidateModuleParameters() 395 if (!Peek(')')) { in ValidateModuleParameters() 404 if (!Peek(')')) { in ValidateModuleParameters() 421 while (Peek(TOK(var)) || Peek(TOK(const))) { in ValidateModuleVars() 487 } else if (Peek(foreign_name_) || Peek(' in ValidateModuleVar() [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | csa-generator.cc | 21 parameters.Peek(i)); in EmitGraph() 31 if (block->InputDefinitions().Peek(i).IsPhiFromBlock(block)) { in EmitGraph() 33 out() << block->InputTypes().Peek(i)->GetGeneratedTNodeTypeName(); in EmitGraph() 74 const auto& def = block->InputDefinitions().Peek(i); in EmitBlock() 78 << block->InputTypes().Peek(i)->GetGeneratedTNodeTypeName() in EmitBlock() 449 if (input_definitions.Peek(i).IsPhiFromBlock( in EmitInstruction() 452 << (i < stack->AboveTop() ? stack->Peek(i) : results[i.offset]); in EmitInstruction() 469 if (label_definitions.Peek(i).IsPhiFromBlock( in EmitInstruction() 471 out() << ", " << stack->Peek(i); in EmitInstruction() 475 if (label_definitions.Peek( in EmitInstruction() [all...] |
H A D | cc-generator.cc | 21 parameters.Peek(i)); in EmitGraph() 58 const auto& def = block->InputDefinitions().Peek(i); in EmitBlock() 62 << (is_cc_debug_ ? block->InputTypes().Peek(i)->GetDebugType() in EmitBlock() 63 : block->InputTypes().Peek(i)->GetRuntimeType()) in EmitBlock() 307 DefinitionLocation def = destination_definitions.Peek(i); in EmitGoto() 310 << stack->Peek(i) << ";\n"; in EmitGoto() 488 all_fields.push_back(values.Peek(result.stack_range().begin())); in CollectAllFields()
|
H A D | cfg.cc | 47 left = input_types.Peek(BottomOffset{static_cast<size_t>(i)}); in SetInputTypes() 50 right = input_types_->Peek(BottomOffset{static_cast<size_t>(i)}); in SetInputTypes() 114 StackRange CfgAssembler::Peek(StackRange range, in Peek() function in v8::internal::torque::CfgAssembler
|
H A D | cfg.h | 67 auto& current = input_definitions_->Peek(i); in MergeInputDefinitions() 68 auto& input = input_definitions.Peek(i); in MergeInputDefinitions() 201 StackRange Peek(StackRange range, base::Optional<const Type*> type);
|
H A D | torque-code-generator.cc | 49 stack->Push(stack->Peek(instruction.slot)); in EmitInstruction()
|
/third_party/rust/crates/syn/src/ |
H A D | lookahead.rs | 103 pub fn peek<T: Peek>(&self, token: T) -> bool { in peek() 147 pub trait Peek: Sealed { traits 153 impl<F: Copy + FnOnce(TokenMarker) -> T, T: Token> Peek for F {
|
H A D | parse.rs | 204 pub use crate::lookahead::{Lookahead1, Peek}; 576 pub fn peek<T: Peek>(&self, token: T) -> bool { in peek() 615 pub fn peek2<T: Peek>(&self, token: T) -> bool { in peek2() 630 pub fn peek3<T: Peek>(&self, token: T) -> bool { in peek3() 745 P: Peek, in parse_terminated()
|
H A D | ext.rs | 4 use crate::parse::Peek; 103 impl Peek for private::PeekFn {
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | bytestream.cc | 44 StringPiece fragment = Peek(); in CopyTo() 152 StringPiece ArrayByteSource::Peek() { in Peek() function in google::protobuf::strings::ArrayByteSource 175 StringPiece LimitByteSource::Peek() { in Peek() function in google::protobuf::strings::LimitByteSource 176 StringPiece piece(source_->Peek()); in Peek()
|
H A D | bytestream.h | 102 // StringPiece data = source->Peek(); 128 virtual StringPiece Peek() = 0; 131 // call to Peek(). 294 // assert(source.Peek() == "Hello"); 301 virtual StringPiece Peek() override; 325 // assert(limit.Peek() == "Hello"); 333 virtual StringPiece Peek() override;
|
H A D | bytestream_unittest.cc | 54 StringPiece Peek() { in Peek() function in google::protobuf::strings::__anon17053::MockByteSource 83 EXPECT_EQ("!", source.Peek()); in TEST()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | function-body-decoder-impl.h | 2716 Value ref_object = Peek(0); in DECODE() 2754 Value ref_object = Peek(0, 0, kWasmAnyRef); in DECODE() 2840 Value cond = Peek(0, 0, kWasmI32); in DECODE() 2930 Value cond = Peek(0, 2, kWasmI32); in DECODE() 2931 Value fval = Peek(1); in DECODE() 2932 Value tval = Peek(2, 0, fval.type); in DECODE() 2951 Value cond = Peek(0, 2, kWasmI32); in DECODE() 2952 Value fval = Peek(1, 1, imm.type); in DECODE() 2953 Value tval = Peek(2, 0, imm.type); in DECODE() 2977 Value cond = Peek( in DECODE() 5201 V8_INLINE Value Peek(int depth, int index, ValueType expected) { Peek() function in v8::internal::wasm::WasmFullDecoder 5210 V8_INLINE Value Peek(int depth) { Peek() function in v8::internal::wasm::WasmFullDecoder [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_wire/ |
H A D | BufferConsumer.h | 53 WireResult Peek(T** data); 70 using BufferConsumer::Peek;
|
H A D | BufferConsumer_impl.h | 27 WireResult BufferConsumer<BufferT>::Peek(T** data) { in Peek() function in dawn_wire::BufferConsumer
|
/third_party/vixl/examples/aarch64/ |
H A D | swap-int32.cc | 48 __ Peek(w1, 0); in GenerateSwapInt32() 49 __ Peek(w0, 4); in GenerateSwapInt32()
|
H A D | swap4.cc | 43 __ Peek(x3, 0); in GenerateSwap4() 44 __ Peek(x2, 8); in GenerateSwap4()
|
/third_party/node/deps/v8/src/profiler/ |
H A D | circular-queue.h | 40 T* Peek();
|
/third_party/node/deps/v8/src/utils/ |
H A D | locked-queue.h | 31 inline bool Peek(Record* record) const;
|
/third_party/skia/src/core/ |
H A D | SkXfermodePriv.h | 35 static SkXfermode* Peek(SkBlendMode mode) { in Peek() function in SkXfermode
|
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/containers/ |
H A D | mru_cache.h | 133 iterator Peek(const KeyType &key) in Peek() function in angle::base::MRUCacheBase 141 const_iterator Peek(const KeyType &key) const in Peek() function in angle::base::MRUCacheBase
|
/third_party/node/deps/v8/src/parsing/ |
H A D | scanner.h | 53 inline base::uc32 Peek() { in Peek() function in v8::internal::Utf16CharacterStream 66 base::uc32 result = Peek(); in Advance() 561 base::uc32 Peek() const { return source_->Peek(); } in Peek() function in v8::internal::Scanner
|
/third_party/node/deps/v8/src/builtins/arm64/ |
H A D | builtins-arm64.cc | 106 __ Peek(x2, 0); in Generate_JSBuiltinsConstructStubHelper() 226 __ Peek(x2, 0); in Generate_JSConstructStubGeneric() 279 __ Peek(x3, 0 * kSystemPointerSize); in Generate_JSConstructStubGeneric() 371 __ Peek(x0, 0 * kSystemPointerSize); in Generate_JSConstructStubGeneric() 2155 __ Peek(receiver, 0); in Generate_FunctionPrototypeApply() 2158 __ Peek(this_arg, kSystemPointerSize); in Generate_FunctionPrototypeApply() 2160 __ Peek(arg_array, 2 * kSystemPointerSize); in Generate_FunctionPrototypeApply() 2204 __ Peek(function, __ ReceiverOperand(argc)); in Generate_FunctionPrototypeCall() 2292 __ Peek(target, kSystemPointerSize); in Generate_ReflectApply() 2294 __ Peek(this_argumen in Generate_ReflectApply() [all...] |