Home
last modified time | relevance | path

Searched refs:new_bindings (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/v8/src/
Ddebug.cc1235 Handle<FixedArray> new_bindings(function->function_bindings()); in FloodBoundFunctionWithOneShot() local
1236 Handle<Object> bindee(new_bindings->get(JSFunction::kBoundFunctionIndex), in FloodBoundFunctionWithOneShot()
Druntime.cc8214 Handle<FixedArray> new_bindings; in RUNTIME_FUNCTION() local
8220 new_bindings = in RUNTIME_FUNCTION()
8226 new_bindings->set(i, old_bindings->get(i)); in RUNTIME_FUNCTION()
8230 new_bindings = isolate->factory()->NewFixedArray(array_size); in RUNTIME_FUNCTION()
8231 new_bindings->set(JSFunction::kBoundFunctionIndex, *bindee); in RUNTIME_FUNCTION()
8232 new_bindings->set(JSFunction::kBoundThisIndex, *this_object); in RUNTIME_FUNCTION()
8237 new_bindings->set(i, *arguments[j + 1]); in RUNTIME_FUNCTION()
8239 new_bindings->set_map_no_write_barrier( in RUNTIME_FUNCTION()
8241 bound_function->set_function_bindings(*new_bindings); in RUNTIME_FUNCTION()