Home
last modified time | relevance | path

Searched refs:PyObject_CallFunctionObjArgs (Results 1 – 25 of 89) sorted by relevance

1234

/external/libchrome/third_party/markupsafe/
D_speedups.c129 return PyObject_CallFunctionObjArgs(markup, text, NULL); in escape()
156 rv = PyObject_CallFunctionObjArgs(markup, (PyObject*)s, NULL); in escape()
167 return PyObject_CallFunctionObjArgs(markup, NULL); in escape_silent()
/external/python/cpython2/Modules/
D_json.c402 return PyObject_CallFunctionObjArgs(joinfn, lst, NULL); in join_list_unicode()
976 val = PyObject_CallFunctionObjArgs(s->pairs_hook, pairs, NULL); in _parse_object_str()
984 rval = PyObject_CallFunctionObjArgs((PyObject *)(&PyDict_Type), in _parse_object_str()
992 val = PyObject_CallFunctionObjArgs(s->object_hook, rval, NULL); in _parse_object_str()
1103 val = PyObject_CallFunctionObjArgs(s->pairs_hook, pairs, NULL); in _parse_object_unicode()
1111 rval = PyObject_CallFunctionObjArgs((PyObject *)(&PyDict_Type), in _parse_object_unicode()
1119 val = PyObject_CallFunctionObjArgs(s->object_hook, rval, NULL); in _parse_object_unicode()
1288 rval = PyObject_CallFunctionObjArgs(s->parse_constant, cstr, NULL); in _parse_constant()
1373 rval = PyObject_CallFunctionObjArgs(s->parse_float, numstr, NULL); in _match_number_str()
1386 rval = PyObject_CallFunctionObjArgs(s->parse_int, numstr, NULL); in _match_number_str()
[all …]
Ditertoolsmodule.c87 newkey = PyObject_CallFunctionObjArgs(gbo->keyfunc, newvalue, NULL); in groupby_step()
901 good = PyObject_CallFunctionObjArgs(lz->func, item, NULL); in dropwhile_next()
1043 good = PyObject_CallFunctionObjArgs(lz->func, item, NULL); in takewhile_next()
3019 good = PyObject_CallFunctionObjArgs(lz->func, in ifilter_next()
3164 good = PyObject_CallFunctionObjArgs(lz->func, in ifilterfalse_next()
/external/python/cpython3/Modules/
D_asynciomodule.c141 PyObject *res = PyObject_CallFunctionObjArgs( in _is_coroutine()
1287 return PyObject_CallFunctionObjArgs( in _asyncio_Future__repr_info_impl()
1377 PyObject *res = PyObject_CallFunctionObjArgs(func, context, NULL); in FutureObj_finalize()
2102 ret = PyObject_CallFunctionObjArgs(current_task_func, loop, NULL); in _asyncio_Task_current_task_impl()
2108 ret = PyObject_CallFunctionObjArgs(current_task_func, loop, NULL); in _asyncio_Task_current_task_impl()
2144 res = PyObject_CallFunctionObjArgs(all_tasks_func, loop, NULL); in _asyncio_Task_all_tasks_impl()
2157 return PyObject_CallFunctionObjArgs( in _asyncio_Task__repr_info_impl()
2250 return PyObject_CallFunctionObjArgs( in _asyncio_Task_get_stack_impl()
2275 return PyObject_CallFunctionObjArgs( in _asyncio_Task_print_stack_impl()
2358 PyObject *res = PyObject_CallFunctionObjArgs(func, context, NULL); in TaskObj_finalize()
[all …]
D_elementtree.c2549 res = PyObject_CallFunctionObjArgs(self->events_append, event, NULL); in treebuilder_append_event()
2579 node = PyObject_CallFunctionObjArgs(self->element_factory, in treebuilder_handle_start()
2584 node = PyObject_CallFunctionObjArgs(self->element_factory, in treebuilder_handle_start()
2910 error = PyObject_CallFunctionObjArgs(st->parseerror_obj, errmsg, NULL); in expat_set_error()
2973 res = PyObject_CallFunctionObjArgs(self->handle_data, value, NULL); in expat_default_handler()
3055 res = PyObject_CallFunctionObjArgs(self->handle_start, in expat_start_handler()
3084 res = PyObject_CallFunctionObjArgs(self->handle_data, data, NULL); in expat_data_handler()
3111 res = PyObject_CallFunctionObjArgs(self->handle_end, tag, NULL); in expat_end_handler()
3170 res = PyObject_CallFunctionObjArgs(self->handle_comment, in expat_comment_handler()
3222 res = PyObject_CallFunctionObjArgs(self->handle_doctype, in expat_start_doctype_handler()
[all …]
D_json.c815 val = PyObject_CallFunctionObjArgs(s->object_pairs_hook, rval, NULL); in _parse_object_unicode()
822 val = PyObject_CallFunctionObjArgs(s->object_hook, rval, NULL); in _parse_object_unicode()
928 rval = PyObject_CallFunctionObjArgs(s->parse_constant, cstr, NULL); in _parse_constant()
1027 rval = PyObject_CallFunctionObjArgs(custom_func, numstr, NULL); in _match_number_unicode()
1437 encoded = PyObject_CallFunctionObjArgs(s->encoder, obj, NULL); in encoder_encode_string()
1523 newobj = PyObject_CallFunctionObjArgs(s->defaultfn, obj, NULL); in encoder_listencode_obj()
D_testbuffer.c315 structobj = PyObject_CallFunctionObjArgs(Struct, format, NULL); in pack_from_list()
409 structobj = PyObject_CallFunctionObjArgs(Struct, format, NULL); in pack_single()
623 x = PyObject_CallFunctionObjArgs(unpack_from, mview, NULL); in unpack_rec()
699 structobj = PyObject_CallFunctionObjArgs(Struct, format, NULL); in ndarray_as_list()
791 tmp = PyObject_CallFunctionObjArgs(calcsize, format, NULL); in get_itemsize()
D_collectionsmodule.c542 result = PyObject_CallFunctionObjArgs((PyObject *)(Py_TYPE(deque)), in deque_copy()
2022 return PyObject_CallFunctionObjArgs((PyObject*)Py_TYPE(dd), Py_None, dd, NULL); in defdict_copy()
2023 return PyObject_CallFunctionObjArgs((PyObject*)Py_TYPE(dd), in defdict_copy()
2341 oldval = PyObject_CallFunctionObjArgs(bound_get, key, _PyLong_Zero, NULL); in _count_elements()
/external/python/cpython2/Modules/_sqlite/
Dmicroprotocols.c92 PyObject *adapted = PyObject_CallFunctionObjArgs(adapter, obj, NULL); in pysqlite_microprotocols_adapt()
/external/python/cpython3/Modules/_sqlite/
Dmicroprotocols.c92 PyObject *adapted = PyObject_CallFunctionObjArgs(adapter, obj, NULL); in pysqlite_microprotocols_adapt()
Dconnection.c313 cursor = PyObject_CallFunctionObjArgs(factory, (PyObject *)self, NULL); in pysqlite_connection_cursor()
950 ret = PyObject_CallFunctionObjArgs((PyObject*)user_arg, py_statement, NULL); in _trace_callback()
1364 retval = PyObject_CallFunctionObjArgs(callback, string1, string2, NULL); in pysqlite_collation_callback()
/external/python/cpython3/Python/
D_warnings.c448 msg = PyObject_CallFunctionObjArgs(warnmsg_cls, message, category, in call_show_warning()
455 res = PyObject_CallFunctionObjArgs(show_fn, msg, NULL); in call_show_warning()
516 message = PyObject_CallFunctionObjArgs(category, message, NULL); in warn_explicit()
911 source = PyObject_CallFunctionObjArgs(get_source, module_name, NULL); in get_source_line()
1194 PyObject *res = PyObject_CallFunctionObjArgs(fn, coro, NULL); in _PyErr_WarnUnawaitedCoroutine()
/external/tensorflow/tensorflow/python/lib/core/
Dpy_util.cc72 PyObject* ret_val = PyObject_CallFunctionObjArgs(format_exception, ptype, in TryAppendTraceback()
/external/python/cpython2/Modules/_multiprocessing/
Dconnection.h269 pickled_string = PyObject_CallFunctionObjArgs(pickle_dumps, obj, in connection_send_obj()
326 result = PyObject_CallFunctionObjArgs(pickle_loads, in connection_recv_obj()
/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c265 CDataObject *obj = (CDataObject *)PyObject_CallFunctionObjArgs(cnv, NULL); in _CallPythonObject()
549 result = PyObject_CallFunctionObjArgs(func, in Call_GetClassObject()
Dcallproc.c950 v = PyObject_CallFunctionObjArgs(checker, retval, NULL); in GetResult()
1144 v = PyObject_CallFunctionObjArgs(converter, in _ctypes_callproc()
1882 return PyObject_CallFunctionObjArgs(typ, arg, NULL); in pointer()
1886 result = PyObject_CallFunctionObjArgs(typ, arg, NULL); in pointer()
/external/python/cpython3/Modules/_ctypes/
Dcallproc.c933 v = PyObject_CallFunctionObjArgs(checker, retval, NULL); in GetResult()
1126 v = PyObject_CallFunctionObjArgs(converter, arg, NULL); in _ctypes_callproc()
1768 return PyObject_CallFunctionObjArgs(typ, arg, NULL); in pointer()
1772 result = PyObject_CallFunctionObjArgs(typ, arg, NULL); in pointer()
/external/python/cpython2/Objects/
Dabstract.c120 ro = PyObject_CallFunctionObjArgs(hintmeth, NULL); in _PyObject_LengthHint()
760 result = PyObject_CallFunctionObjArgs(bound_method,
812 result = PyObject_CallFunctionObjArgs(format_method,
838 result = PyObject_CallFunctionObjArgs(method, format_spec, NULL);
2757 PyObject_CallFunctionObjArgs(PyObject *callable, ...) function
2974 res = PyObject_CallFunctionObjArgs(checker, inst, NULL);
3052 res = PyObject_CallFunctionObjArgs(checker, derived, NULL);
Denumobject.c258 PyObject *res = PyObject_CallFunctionObjArgs(reversed_meth, NULL); in reversed_new()
/external/python/cpython3/Objects/
Dgenobject.c59 res = PyObject_CallFunctionObjArgs(finalizer, self, NULL); in _PyGen_Finalize()
441 ret = PyObject_CallFunctionObjArgs(meth, typ, val, tb, NULL); in _gen_throw()
572 e = PyObject_CallFunctionObjArgs(PyExc_StopIteration, value, NULL); in _PyGen_SetStopIterationValue()
1285 res = PyObject_CallFunctionObjArgs(firstiter, o, NULL); in async_gen_init_hooks()
Ddescrobject.c1384 res = PyObject_CallFunctionObjArgs(func, obj, NULL); in property_descr_set()
1386 res = PyObject_CallFunctionObjArgs(func, obj, value, NULL); in property_descr_set()
1423 new = PyObject_CallFunctionObjArgs(type, get, set, del, doc, NULL); in property_copy()
Dfileobject.c137 result = PyObject_CallFunctionObjArgs(writer, value, NULL); in PyFile_WriteObject()
/external/python/cpython3/Modules/cjkcodecs/
Dcjkcodecs.h292 r = PyObject_CallFunctionObjArgs(cofunc, codecobj, NULL); in getcodec()
/external/python/cpython2/Modules/cjkcodecs/
Dcjkcodecs.h289 r = PyObject_CallFunctionObjArgs(cofunc, codecobj, NULL); in getcodec()
/external/python/cpython2/Include/
Dabstract.h358 PyAPI_FUNC(PyObject *) PyObject_CallFunctionObjArgs(PyObject *callable,

1234