Home
last modified time | relevance | path

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

/freebsd-14.2/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
197 template <> struct PythonFormat<char> : PassthroughFormat<char, 'b'> {};
200 template <> struct PythonFormat<short> : PassthroughFormat<short, 'h'> {};
203 template <> struct PythonFormat<int> : PassthroughFormat<int, 'i'> {};
204 template <> struct PythonFormat<bool> : PassthroughFormat<bool, 'p'> {};
206 struct PythonFormat<unsigned int> : PassthroughFormat<unsigned int, 'I'> {};
207 template <> struct PythonFormat<long> : PassthroughFormat<long, 'l'> {};
211 struct PythonFormat<long long> : PassthroughFormat<long long, 'L'> {};
214 : PassthroughFormat<unsigned long long, 'K'> {};
[all …]