Lines Matching defs:name
658 TNode<Dictionary> properties, TNode<Name> name,
663 NameDictionaryLookup<Dictionary>(properties, name, &dictionary_found,
705 Comment("key is unique name");
737 // have a property with that name.
747 TNode<Name> name = CAST(CallBuiltin(Builtin::kToName, context, key));
748 GotoIf(IsPrivateSymbol(name), &slow);
749 TailCallBuiltin(Builtin::kProxyDeleteProperty, context, receiver, name,
1272 TNode<Object> name = CallBuiltin(Builtin::kToName, context, key);
1274 // The {object} is a JSProxy instance, look up the {name} on it, passing
1275 // {object} both as receiver and holder. If {name} is absent we can safely
1277 TailCallBuiltin(Builtin::kProxyGetProperty, context, object, name, object,
1337 TNode<Name> name = CAST(CallBuiltin(Builtin::kToName, context, key));
1340 GotoIf(IsPrivateSymbol(name), &if_slow);
1342 // The {object} is a JSProxy instance, look up the {name} on it, passing
1343 // {object} both as receiver and holder. If {name} is absent we can safely
1345 TailCallBuiltin(Builtin::kProxyGetProperty, context, object, name, receiver,