Home
last modified time | relevance | path

Searched refs:call_args (Results 1 - 25 of 29) sorted by relevance

12

/third_party/node/src/
H A Dinspector_js_api.cc186 SlicedArguments call_args(args, /* start */ 2); in CallAndPauseOnStart()
190 call_args.length(), call_args.out()); in CallAndPauseOnStart()
201 SlicedArguments call_args(info, /* start */ 2); in InspectorConsoleCall()
210 call_args.length(), in InspectorConsoleCall()
211 call_args.out()); in InspectorConsoleCall()
222 call_args.length(), in InspectorConsoleCall()
223 call_args.out())); in InspectorConsoleCall()
/third_party/python/Lib/test/
H A Dtest_script_helper.py50 popen_command = mock_popen.call_args[0][0]
67 popen_command = mock_popen.call_args[0][0]
112 check_call_command = mock_check_call.call_args[0][0]
H A Dtest_ensurepip.py100 additional_paths = self.run_pip.call_args[0][1]
320 additional_paths = self.run_pip.call_args[0][1]
H A Dtest_webbrowser.py44 popen_args = subprocess.Popen.call_args[0][0]
H A D_test_multiprocessing.py2457 call_args = self.manager.list() if self.TYPE == 'manager' else []
2459 callback=call_args.append,
2460 error_callback=call_args.append).wait()
2461 self.assertEqual(1, len(call_args))
2462 self.assertEqual([1], call_args[0])
2464 callback=call_args.append,
2465 error_callback=call_args.append).wait()
2466 self.assertEqual(2, len(call_args))
2467 self.assertIsInstance(call_args[1], ValueError)
H A Dtest_compileall.py265 self.assertEqual(pool_mock.call_args[1]['max_workers'], None)
837 self.assertEqual(compile_dir.call_args[-1]['workers'], 0)
H A Dtest_shutil.py2381 self.assertEqual(m.call_args[0][2], 1 * 1024 * 1024)
2391 self.assertEqual(m.call_args[0][2], 3)
2588 blocksize = m.call_args[0][3]
2598 blocksize = m.call_args[0][3]
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
H A Decma-builtin-typedarray-prototype.c228 ecma_value_t call_args[] = { get_value, current_index, this_arg }; in ecma_builtin_typedarray_prototype_exec_routine() local
230 ecma_value_t call_value = ecma_op_function_call (func_object_p, cb_this_arg, call_args, 3); in ecma_builtin_typedarray_prototype_exec_routine()
476 ecma_value_t call_args[] = { get_value, current_index, this_arg }; in ecma_builtin_typedarray_prototype_map() local
478 ecma_value_t mapped_value = ecma_op_function_call (func_object_p, cb_this_arg, call_args, 3); in ecma_builtin_typedarray_prototype_map()
603 ecma_value_t call_args[] = { accumulator, get_value, current_index, this_arg }; in ecma_builtin_typedarray_prototype_reduce_with_direction() local
609 call_args, in ecma_builtin_typedarray_prototype_reduce_with_direction()
737 ecma_value_t call_args[] = { get_value, current_index, this_arg }; in ecma_builtin_typedarray_prototype_filter() local
739 ecma_value_t call_value = ecma_op_function_call (func_object_p, cb_this_arg, call_args, 3); in ecma_builtin_typedarray_prototype_filter()
1625 ecma_value_t call_args[] = { element_value, ecma_make_uint32_value (buffer_index), this_arg }; in ecma_builtin_typedarray_prototype_find_helper() local
1627 ecma_value_t call_value = ecma_op_function_call (func_object_p, predicate_this_arg, call_args, in ecma_builtin_typedarray_prototype_find_helper()
[all...]
/third_party/python/Lib/unittest/test/testmock/
H A Dtestmock.py68 self.assertEqual(mock.call_args, None,
69 "call_args not initialised correctly")
260 self.assertEqual(mock.call_args, None, "call_args not reset")
303 self.assertEqual(mock.call_args, ((sentinel.Arg,), {}),
304 "call_args not set")
305 self.assertEqual(mock.call_args.args, (sentinel.Arg,),
306 "call_args not set")
307 self.assertEqual(mock.call_args.kwargs, {},
308 "call_args no
[all...]
H A Dtesthelpers.py284 self.assertEqual(mock.call_args, call(1, 2, a=3, b=4))
285 self.assertNotEqual(mock.call_args, call(1, 2, 3))
/third_party/python/Lib/test/test_asyncio/
H A Dtest_selector_events.py177 fd, mask, (r, w) = self.loop._selector.register.call_args[0]
194 fd, mask, (r, w) = self.loop._selector.modify.call_args[0]
209 fd, mask, (r, w) = self.loop._selector.modify.call_args[0]
234 self.loop._selector.modify.call_args[0])
247 fd, mask, (r, w) = self.loop._selector.register.call_args[0]
264 fd, mask, (r, w) = self.loop._selector.modify.call_args[0]
289 self.loop._selector.modify.call_args[0])
1132 self.sock.sendto.call_args[0], (data, ('0.0.0.0', 1234)))
1140 self.sock.sendto.call_args[0], (data, ('0.0.0.0', 1234)))
1148 self.sock.sendto.call_args[
[all...]
H A Dtest_base_events.py371 t = self.loop._selector.select.call_args[0][0]
1294 _, kwargs = m_socket.socket.call_args
1309 [address] = sock.connect.call_args[0]
1313 _, kwargs = m_socket.socket.call_args
1336 _, kwargs = m_socket.socket.call_args
1366 _, kwargs = m_socket.socket.call_args
1907 fmt, *args = m_logger.warning.call_args[0]
1915 fmt, *args = m_logger.warning.call_args[0]
H A Dtest_subprocess.py70 self.assertEqual(protocol.connection_lost.call_args[0], (None,))
H A Dtest_proactor_events.py833 loop = call_soon.call_args[0][0]
857 loop = call_soon.call_args[0][0]
H A Dtest_tasks.py2197 message = m_log.error.call_args[0][0]
2520 exc = exc_handler.call_args[0][0]['exception']
2546 exc = exc_handler.call_args[0][0]['exception']
3278 (loop, context), kwargs = callback.call_args
H A Dtest_unix_events.py185 (signal.SIGHUP, m_signal.SIG_DFL), m_signal.signal.call_args[0])
203 m_signal.signal.call_args[0])
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A 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
1904 ecma_value_t call_value = ecma_op_function_call (func_object_p, arg2, call_args, 3); in ecma_builtin_array_apply()
2003 ecma_value_t call_args[] = { current_value, current_index, ecma_make_object_value (obj_p) }; in ecma_builtin_array_prototype_object_map() local
2005 ecma_value_t mapped_value = ecma_op_function_call (func_object_p, arg2, call_args, 3); in ecma_builtin_array_prototype_object_map()
2098 ecma_value_t call_args[] = { get_value, current_index, ecma_make_object_value (obj_p) }; in ecma_builtin_array_prototype_object_filter() local
2100 ecma_value_t call_value = ecma_op_function_call (func_object_p, arg2, call_args, 3); in ecma_builtin_array_prototype_object_filter()
2241 ecma_value_t call_args[] = {accumulator, current_value, current_index, ecma_make_object_value (obj_p)}; in ecma_builtin_array_reduce_from() local
2245 call_args, in ecma_builtin_array_reduce_from()
2399 ecma_value_t call_args[] = { get_value, current_index, ecma_make_object_value (obj_p) }; in ecma_builtin_array_prototype_object_find() local
2401 ecma_value_t call_value = ecma_op_function_call (func_object_p, predicate_this_arg, call_args, in ecma_builtin_array_prototype_object_find()
[all...]
H A Decma-builtin-json.c1148 ecma_value_t call_args[] = { key_value }; in ecma_builtin_json_serialize_property() local
1151 ecma_value_t result = ecma_op_function_call (to_json_obj_p, value, call_args, 1); in ecma_builtin_json_serialize_property()
1170 ecma_value_t call_args[] = { key_value, value }; in ecma_builtin_json_serialize_property() local
1172 ecma_value_t result = ecma_op_function_call (context_p->replacer_function_p, holder_value, call_args, 2); in ecma_builtin_json_serialize_property()
/third_party/python/Lib/unittest/
H A Dmock.py235 funcopy.call_args = None
569 call_args = _delegating_property('call_args') variable in NonCallableMock
605 self.call_args = None
827 call_args = self.call_args
828 actual_string = self._format_mock_call_signature(*call_args)
925 if self.call_args is None:
936 actual = self._call_matcher(self.call_args)
1134 # handle call_args
[all...]
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_squeezer.py346 tooltip_text = MockHovertip.call_args[0][1]
446 self.assertEqual(mock_view_text.call_args[0][2], 'TEXT')
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DStatepoint.h186 iterator_range<arg_iterator> call_args() const {
/third_party/jerryscript/jerry-core/ecma/operations/
H A Decma-container-object.c861 ecma_value_t call_args[] = { value_arg, key_arg, this_arg }; in ecma_op_container_foreach() local
862 ecma_value_t call_value = ecma_op_function_call (func_object_p, predicate_this_arg, call_args, 3); in ecma_op_container_foreach()
H A Decma-typedarray-object.c707 ecma_value_t call_args[] = { current_value, current_index }; in ecma_op_typedarray_from_helper() local
709 ecma_value_t cb_value = ecma_op_function_call (func_object_p, this_val, call_args, 2); in ecma_op_typedarray_from_helper()
/third_party/node/deps/v8/src/compiler/
H A Dbytecode-graph-builder.cc2435 Node* const* call_args = GetCallArgumentsFromRegisters(callee, receiver_node, in ProcessCallVarArgs() local
2437 return call_args; in ProcessCallVarArgs()
2453 Node* const* call_args = in BuildCallVarArgs() local
2455 BuildCall(receiver_mode, call_args, JSCallNode::ArityForArgc(arg_count), in BuildCallVarArgs()
2584 Node* const* call_args = ProcessCallVarArgs( in VisitCallJSRuntime() local
2586 Node* value = MakeNode(call, arity, call_args); in VisitCallJSRuntime()
/third_party/node/deps/v8/src/parsing/
H A Dparser.cc3510 ScopedPtrList<Expression> call_args(pointer_buffer()); in CloseTemplateLiteral()
3511 call_args.Add(template_object); in CloseTemplateLiteral()
3512 call_args.AddAll(expressions->ToConstVector()); in CloseTemplateLiteral()
3513 return factory()->NewTaggedTemplate(tag, call_args, pos); in CloseTemplateLiteral()

Completed in 60 milliseconds

12