Home
last modified time | relevance | path

Searched defs:is_method (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/python/eager/
Dfunction_spec.py149 is_method, argument
213 def is_method(self): member in FunctionSpec
/external/tensorflow/tensorflow/core/protobuf/
Dsaved_object_graph.proto214 bool is_method = 2; field
/external/python/cpython3/Objects/
Dcall.c871 int is_method = _PyObject_GetMethod(obj, name, &callable); in PyObject_CallMethodObjArgs() local
901 int is_method = _PyObject_GetMethod(obj, oname, &callable); in _PyObject_CallMethodIdObjArgs() local
/external/rust/crates/bindgen/ir/
Dfunction.rs511 let is_method = kind == CXCursor_CXXMethod; in from_ty() localVariable
/external/python/cpython3/Python/
Dceval.c1629 #define is_method(stack_pointer, args) (PEEK((args)+2) != NULL) macro