Lines Matching defs:AlphaNum
216 AlphaNum(int x) // NOLINT(runtime/explicit) in AlphaNum() function
219 AlphaNum(unsigned int x) // NOLINT(runtime/explicit) in AlphaNum() function
222 AlphaNum(long x) // NOLINT(*) in AlphaNum() function
225 AlphaNum(unsigned long x) // NOLINT(*) in AlphaNum() function
228 AlphaNum(long long x) // NOLINT(*) in AlphaNum() function
231 AlphaNum(unsigned long long x) // NOLINT(*) in AlphaNum() function
235 AlphaNum(float f) // NOLINT(runtime/explicit) in AlphaNum() function
237 AlphaNum(double f) // NOLINT(runtime/explicit) in AlphaNum() function
244 AlphaNum( // NOLINT(runtime/explicit) in AlphaNum() function
248 AlphaNum(const char* c_str) : piece_(c_str) {} // NOLINT(runtime/explicit) in AlphaNum() function
249 AlphaNum(absl::string_view pc) : piece_(pc) {} // NOLINT(runtime/explicit) in AlphaNum() function
252 AlphaNum( // NOLINT(runtime/explicit) in AlphaNum() function
271 AlphaNum(T e) // NOLINT(runtime/explicit) in AlphaNum() function
283 AlphaNum(T e) : AlphaNum(static_cast<bool>(e)) {} // NOLINT(runtime/explicit) in AlphaNum() function