Lines Matching refs:PushFunction
80 void PushFunction(int (T::*handler)()) { in PushFunction() function
81 PushFunction(std::bind(handler, static_cast<T*>(this))); in PushFunction()
85 void PushFunction(const F& func) const { in PushFunction() function
110 PushFunction(func); in PushLazyObject()
224 PushFunction([this, length, item_callback, key_callback]() { in PushIterator()
235 PushFunction([this, length, item_callback]() { in PushIterator()
246 PushFunction([this, length]() { return Iterator::Length(this, length); }); in CreateIteratorMetatable()
248 PushFunction([this, length, item_callback]() { in CreateIteratorMetatable()
252 PushFunction([this, length, item_callback]() { in CreateIteratorMetatable()
305 PushFunction(func);
394 env->PushFunction([env, callback, length, pos = 0]() mutable { in IterItems()