• Home
  • Raw
  • Download

Lines Matching defs:GetPythonValueFormatString

1922 const char *GetPythonValueFormatString(T t)  in GetPythonValueFormatString()  function
1927 template <> const char *GetPythonValueFormatString (char *) { return "s"; } in GetPythonValueFormatString() function
1928 template <> const char *GetPythonValueFormatString (char) { return "b"; } in GetPythonValueFormatString() function
1929 template <> const char *GetPythonValueFormatString (unsigned char) { return "B"; } in GetPythonValueFormatString() function
1930 template <> const char *GetPythonValueFormatString (short) { return "h"; } in GetPythonValueFormatString() function
1931 template <> const char *GetPythonValueFormatString (unsigned short) { return "H"; } in GetPythonValueFormatString() function
1932 template <> const char *GetPythonValueFormatString (int) { return "i"; } in GetPythonValueFormatString() function
1933 template <> const char *GetPythonValueFormatString (unsigned int) { return "I"; } in GetPythonValueFormatString() function
1934 template <> const char *GetPythonValueFormatString (long) { return "l"; } in GetPythonValueFormatString() function
1935 template <> const char *GetPythonValueFormatString (unsigned long) { return "k"; } in GetPythonValueFormatString() function
1936 template <> const char *GetPythonValueFormatString (long long) { return "L"; } in GetPythonValueFormatString() function
1937 template <> const char *GetPythonValueFormatString (unsigned long long) { return "K"; } in GetPythonValueFormatString() function
1938 template <> const char *GetPythonValueFormatString (float t) { return "f"; } in GetPythonValueFormatString() function
1939 template <> const char *GetPythonValueFormatString (double t) { return "d"; } in GetPythonValueFormatString() function