Searched refs:CheckArgType (Results 1 – 2 of 2) sorted by relevance
65 bool ParseArg(va_list* args, const CheckArgType** fmt, std::string* s) { in ParseArg()66 if (**fmt == CheckArgType::kEnd) in ParseArg()70 case CheckArgType::kInt: in ParseArg()73 case CheckArgType::kLong: in ParseArg()76 case CheckArgType::kLongLong: in ParseArg()79 case CheckArgType::kUInt: in ParseArg()82 case CheckArgType::kULong: in ParseArg()85 case CheckArgType::kULongLong: in ParseArg()88 case CheckArgType::kDouble: in ParseArg()91 case CheckArgType::kLongDouble: in ParseArg()[all …]
102 enum class CheckArgType : int8_t { enum128 const CheckArgType* fmt,136 template <CheckArgType N, typename T>138 static constexpr CheckArgType Type() { return N; } in Type()147 static constexpr CheckArgType Type() { return CheckArgType::kStdString; } in Type()152 inline Val<CheckArgType::kInt, int> MakeVal(int x) { in MakeVal()155 inline Val<CheckArgType::kLong, long> MakeVal(long x) { in MakeVal()158 inline Val<CheckArgType::kLongLong, long long> MakeVal(long long x) { in MakeVal()161 inline Val<CheckArgType::kUInt, unsigned int> MakeVal(unsigned int x) { in MakeVal()164 inline Val<CheckArgType::kULong, unsigned long> MakeVal(unsigned long x) { in MakeVal()[all …]