Lines Matching defs:add_func
117 TNode<JSFunction> add_func = GetInitialAddFunction(variant, native_context);
120 add_func));
140 AddConstructorEntry(variant, context, collection, add_func, element,
167 AddConstructorEntry(variant, context, collection, add_func, entry);
189 TNode<Object> add_func = GetAddFunction(variant, context, collection);
207 AddConstructorEntry(variant, context, collection, add_func, next_value,
325 TNode<Object> add_func = GetProperty(context, collection, add_func_name);
328 GotoIf(TaggedIsSmi(add_func), &if_notcallable);
329 GotoIfNot(IsCallable(CAST(add_func)), &if_notcallable);
333 ThrowTypeError(context, MessageTemplate::kPropertyNotFunction, add_func,
337 return add_func;