Home
last modified time | relevance | path

Searched refs:PassthroughFormat (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h191 template <typename T, char F> struct PassthroughFormat { struct
196 template <> struct PythonFormat<char *> : PassthroughFormat<char *, 's'> {}; argument
198 PassthroughFormat<const char *, 's'> {};
199 template <> struct PythonFormat<char> : PassthroughFormat<char, 'b'> {};
201 struct PythonFormat<unsigned char> : PassthroughFormat<unsigned char, 'B'> {};
202 template <> struct PythonFormat<short> : PassthroughFormat<short, 'h'> {};
204 struct PythonFormat<unsigned short> : PassthroughFormat<unsigned short, 'H'> {};
205 template <> struct PythonFormat<int> : PassthroughFormat<int, 'i'> {};
206 template <> struct PythonFormat<bool> : PassthroughFormat<bool, 'p'> {};
208 struct PythonFormat<unsigned int> : PassthroughFormat<unsigned int, 'I'> {};
[all …]