Lines Matching defs:GetPythonValueFormatString
1689 template <> const char *GetPythonValueFormatString(char *) { return "s"; } in GetPythonValueFormatString() function
1690 template <> const char *GetPythonValueFormatString(char) { return "b"; } in GetPythonValueFormatString() function
1691 template <> const char *GetPythonValueFormatString(unsigned char) { in GetPythonValueFormatString() function
1694 template <> const char *GetPythonValueFormatString(short) { return "h"; } in GetPythonValueFormatString() function
1695 template <> const char *GetPythonValueFormatString(unsigned short) { in GetPythonValueFormatString() function
1698 template <> const char *GetPythonValueFormatString(int) { return "i"; } in GetPythonValueFormatString() function
1699 template <> const char *GetPythonValueFormatString(unsigned int) { return "I"; } in GetPythonValueFormatString() function
1700 template <> const char *GetPythonValueFormatString(long) { return "l"; } in GetPythonValueFormatString() function
1701 template <> const char *GetPythonValueFormatString(unsigned long) { in GetPythonValueFormatString() function
1704 template <> const char *GetPythonValueFormatString(long long) { return "L"; } in GetPythonValueFormatString() function
1705 template <> const char *GetPythonValueFormatString(unsigned long long) { in GetPythonValueFormatString() function
1708 template <> const char *GetPythonValueFormatString(float t) { return "f"; } in GetPythonValueFormatString() function
1709 template <> const char *GetPythonValueFormatString(double t) { return "d"; } in GetPythonValueFormatString() function