reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
3531 return PyInt_FromLong((long) value); 3562 PyLong_FromUnsignedLongLong(value) : PyInt_FromLong(static_cast< long >(value)); 4024 PyLong_FromUnsignedLong(value) : PyInt_FromLong(static_cast< long >(value)); 4211 return SWIG_From_long (value); 4218 return SWIG_From_long (value); 4227 PyLong_FromLongLong(value) : PyInt_FromLong(static_cast< long >(value)); 40309 PyObject* item = PyInt_FromLong(arg2[j]);tools/lldb/scripts/Python/python-swigsafecast.swig
34 return PyInt_FromLong(*c_int);
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp 174 PyObject *py_int = PyInt_FromLong(12);