Searched defs:Py_None (Results 1 - 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/eager/
H A Dpywrap_tfe_src.cc178 if (py_value != Py_None) {
203 if (py_value == Py_None) {
217 if (inner_py_value == Py_None) {
382 if (py_value == Py_None) {
401 if (inner_py_value == Py_None) {
512 if (attrs == Py_None) return;
553 if (attr_value == Py_None) {
912 if (list == Py_None) {
940 if (tensors == Py_None) {
1168 CHECK(gradient_tensors[i] != Py_None);
1217 Py_INCREF(Py_None); variable
[all...]
/external/python/cpython2/Include/
H A Dobject.h874 #define Py_None (&_Py_NoneStruct) macro
876 /* Macro for returning Py_None from a function */
877 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
/external/python/cpython2/Modules/
H A Dflmodule.c164 Py_INCREF(Py_None);
165 return Py_None;
172 Py_INCREF(Py_None);
173 return Py_None;
243 Py_INCREF(Py_None);
244 return Py_None;
414 Py_INCREF(Py_None);
415 return Py_None;
428 Py_INCREF(Py_None);
429 return Py_None;
1457 Py_INCREF(Py_None); variable
[all...]
/external/python/cpython3/Include/
H A Dobject.h910 #define Py_None (&_Py_NoneStruct) macro
912 /* Macro for returning Py_None from a function */
913 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None

Completed in 160 milliseconds