Lines Matching defs:GetPythonValueFormatString
24 template <> const char *GetPythonValueFormatString(char *) { return "s"; } in GetPythonValueFormatString() function
25 template <> const char *GetPythonValueFormatString(char) { return "b"; } in GetPythonValueFormatString() function
26 template <> const char *GetPythonValueFormatString(unsigned char) { in GetPythonValueFormatString() function
29 template <> const char *GetPythonValueFormatString(short) { return "h"; } in GetPythonValueFormatString() function
30 template <> const char *GetPythonValueFormatString(unsigned short) { in GetPythonValueFormatString() function
33 template <> const char *GetPythonValueFormatString(int) { return "i"; } in GetPythonValueFormatString() function
34 template <> const char *GetPythonValueFormatString(unsigned int) { return "I"; } in GetPythonValueFormatString() function
35 template <> const char *GetPythonValueFormatString(long) { return "l"; } in GetPythonValueFormatString() function
36 template <> const char *GetPythonValueFormatString(unsigned long) { in GetPythonValueFormatString() function
39 template <> const char *GetPythonValueFormatString(long long) { return "L"; } in GetPythonValueFormatString() function
40 template <> const char *GetPythonValueFormatString(unsigned long long) { in GetPythonValueFormatString() function
43 template <> const char *GetPythonValueFormatString(float) { return "f"; } in GetPythonValueFormatString() function
44 template <> const char *GetPythonValueFormatString(double) { return "d"; } in GetPythonValueFormatString() function