Home | History | Annotate | Download | only in cpp

Lines Matching refs:Function

65 using v8::Function;
127 Handle<Function> Constructor() const {
129 return handle_->GetInternalField(2).As<Function>();
142 // from = function(arr) { this.f0 = arr[0]; this.f1 = arr[1]; ... }
143 // to = function() { return [ this.f0, this.f1, ... ] }
146 from << "(function(arr) { if(arr) {";
147 to << "(function() { return [ ";
167 Handle<Function> constructor =
168 Script::Compile(String::New(from.str().c_str()))->Run().As<Function>();
171 Handle<Function> bind =
173 "(function(self) {"
175 " return function(arg) {"
178 "})"))->Run().As<Function>();
403 Handle<Function> to_array = handle_->GetInternalField(3).As<Function>();
495 Handle<Function>();