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.py58 def get_func_and_args_from_str(call_str): argument
68 open_paren_index = call_str.find("(")
69 close_paren_index = call_str.rfind(")")
71 function_name = call_str[:call_str.find("(")]
72 args = call_str[open_paren_index+1:close_paren_index].split(",")
/external/python/cpython2/Objects/
Dtypeobject.c5602 static PyObject *call_str; local
5603 PyObject *meth = lookup_method(self, "__call__", &call_str);