Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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
197 template <> struct PythonFormat<char> : PassthroughFormat<char, 'b'> {};
199 struct PythonFormat<unsigned char> : PassthroughFormat<unsigned char, 'B'> {};
200 template <> struct PythonFormat<short> : PassthroughFormat<short, 'h'> {};
202 struct PythonFormat<unsigned short> : PassthroughFormat<unsigned short, 'H'> {};
203 template <> struct PythonFormat<int> : PassthroughFormat<int, 'i'> {};
205 struct PythonFormat<unsigned int> : PassthroughFormat<unsigned int, 'I'> {};
206 template <> struct PythonFormat<long> : PassthroughFormat<long, 'l'> {};
208 struct PythonFormat<unsigned long> : PassthroughFormat<unsigned long, 'k'> {};
[all …]