Home
last modified time | relevance | path

Searched defs:call_args (Results 1 – 9 of 9) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
Decma-builtin-typedarray-prototype.c228 ecma_value_t call_args[] = { get_value, current_index, this_arg }; in ecma_builtin_typedarray_prototype_exec_routine() local
476 ecma_value_t call_args[] = { get_value, current_index, this_arg }; in ecma_builtin_typedarray_prototype_map() local
603 ecma_value_t call_args[] = { accumulator, get_value, current_index, this_arg }; in ecma_builtin_typedarray_prototype_reduce_with_direction() local
737 ecma_value_t call_args[] = { get_value, current_index, this_arg }; in ecma_builtin_typedarray_prototype_filter() local
1625 ecma_value_t call_args[] = { element_value, ecma_make_uint32_value (buffer_index), this_arg }; in ecma_builtin_typedarray_prototype_find_helper() local
/third_party/node/src/
Dinspector_js_api.cc183 SlicedArguments call_args(args, /* start */ 2); in CallAndPauseOnStart() local
198 SlicedArguments call_args(info, /* start */ 2); in InspectorConsoleCall() local
Dnode_perf.cc333 SlicedArguments call_args(args); in TimerFunctionCall() local
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-array-prototype.c1902 ecma_value_t call_args[] = { get_value, current_index, ecma_make_object_value (obj_p) }; in ecma_builtin_array_apply() local
2003 ecma_value_t call_args[] = { current_value, current_index, ecma_make_object_value (obj_p) }; in ecma_builtin_array_prototype_object_map() local
2098 ecma_value_t call_args[] = { get_value, current_index, ecma_make_object_value (obj_p) }; in ecma_builtin_array_prototype_object_filter() local
2241 …ecma_value_t call_args[] = {accumulator, current_value, current_index, ecma_make_object_value (obj… in ecma_builtin_array_reduce_from() local
2399 ecma_value_t call_args[] = { get_value, current_index, ecma_make_object_value (obj_p) }; in ecma_builtin_array_prototype_object_find() local
Decma-builtin-json.c1148 ecma_value_t call_args[] = { key_value }; in ecma_builtin_json_serialize_property() local
1170 ecma_value_t call_args[] = { key_value, value }; in ecma_builtin_json_serialize_property() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DStatepoint.h186 iterator_range<arg_iterator> call_args() const { in call_args() function
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-container-object.c861 ecma_value_t call_args[] = { value_arg, key_arg, this_arg }; in ecma_op_container_foreach() local
Decma-typedarray-object.c707 ecma_value_t call_args[] = { current_value, current_index }; in ecma_op_typedarray_from_helper() local
/third_party/python/Lib/unittest/
Dmock.py550 call_args = _delegating_property('call_args') variable in NonCallableMock