Searched refs:FastAssign (Results 1 – 2 of 2) sorted by relevance
205 void FastAssign(const T& source) { value_ = source; } in FastAssign() function207 void FastAssign(T&& source) { value_ = std::move(source); } in FastAssign() function277 typed_ptr->FastAssign(std::forward<T>(value)); in Assign()
1482 MUST_USE_RESULT Maybe<bool> FastAssign(Handle<JSReceiver> to, in FastAssign() function1577 Maybe<bool> fast_assign = FastAssign(to, next_source); in BUILTIN()