Home
last modified time | relevance | path

Searched refs:receiver_type (Results 1 – 4 of 4) sorted by relevance

/third_party/rust/crates/cxx/macro/src/
Dexpand.rs453 let receiver_type = receiver.ty(); in expand_cxx_function_decl() localVariable
454 quote!(_: #receiver_type) in expand_cxx_function_decl()
972 let receiver_type = receiver.ty(); in expand_rust_function_shim_impl() localVariable
973 quote!(#receiver_var #colon #receiver_type) in expand_rust_function_shim_impl()
1163 let receiver_type = receiver.ty(); in expand_rust_function_shim_super() localVariable
1164 quote!(#receiver_var: #receiver_type) in expand_rust_function_shim_super()
1190 let receiver_type = &receiver.ty.rust; in expand_rust_function_shim_super() localVariable
1191 quote_spanned!(span=> #receiver_type::#invoke) in expand_rust_function_shim_super()
/third_party/node/deps/v8/src/compiler/
Djs-typed-lowering.cc1111 Type receiver_type = NodeProperties::GetType(receiver); in ReduceJSToObject() local
1116 if (receiver_type.Is(Type::Receiver())) { in ReduceJSToObject()
1150 if (receiver_type.Maybe(Type::NullOrUndefined()) && in ReduceJSToObject()
1175 Type receiver_type = NodeProperties::GetType(receiver); in ReduceJSLoadNamed() local
1179 if (name.equals(length_str) && receiver_type.Is(Type::String())) { in ReduceJSLoadNamed()
1688 Type receiver_type = NodeProperties::GetType(receiver); in ReduceJSCall() local
1693 if (receiver_type.Is(Type::NullOrUndefined())) { in ReduceJSCall()
1695 } else if (!receiver_type.Maybe(Type::NullOrUndefined())) { in ReduceJSCall()
1732 !receiver_type.Is(Type::Receiver())) { in ReduceJSCall()
/third_party/node/deps/v8/src/torque/
Dimplementation-visitor.h709 const AggregateType* receiver_type,
Dimplementation-visitor.cc2119 const std::string& name, const AggregateType* receiver_type, in LookupMethod() argument
2122 types.insert(types.begin(), receiver_type); in LookupMethod()
2123 return Method::cast(LookupCallable({{}, name}, receiver_type->Methods(name), in LookupMethod()