Home
last modified time | relevance | path

Searched refs:call_str (Results 1 – 3 of 3) sorted by relevance

/external/libcxx/utils/libcxx/test/
Dtracing.py18 call_str = '{}({})'.format(function.func_name, arg_str)
23 print('{}: Calling {}'.format(label, call_str))
26 print('{}: {} -> {}'.format(label, call_str, res))
30 print('{}: {} raised {}'.format(label, call_str, type(ex)))
/external/tensorflow/tensorflow/tools/compatibility/
Dtf_upgrade_v2_test.py60 def get_func_and_args_from_str(call_str): argument
70 open_paren_index = six.ensure_str(call_str).find("(")
71 close_paren_index = call_str.rfind(")")
73 function_name = call_str[:six.ensure_str(call_str).find("(")]
74 args = six.ensure_str(call_str[open_paren_index +
/external/python/cpython2/Objects/
Dtypeobject.c5602 static PyObject *call_str; local
5603 PyObject *meth = lookup_method(self, "__call__", &call_str);