#include <limits.h>
#include <cstddef>
#include <cstring>
#include <ostream>
#include "absl/base/port.h"
#include "absl/strings/internal/str_format/output.h"
#include "absl/strings/string_view.h"
Go to the source code of this file.
#define ABSL_CONVERSION_CHARS_EXPAND_ | ( | X_VAL, | |
X_SEP | |||
) |
/* text */ \ X_VAL(c) X_SEP X_VAL(C) X_SEP X_VAL(s) X_SEP X_VAL(S) X_SEP \ /* ints */ \ X_VAL(d) X_SEP X_VAL(i) X_SEP X_VAL(o) X_SEP \ X_VAL(u) X_SEP X_VAL(x) X_SEP X_VAL(X) X_SEP \ /* floats */ \ X_VAL(f) X_SEP X_VAL(F) X_SEP X_VAL(e) X_SEP X_VAL(E) X_SEP \ X_VAL(g) X_SEP X_VAL(G) X_SEP X_VAL(a) X_SEP X_VAL(A) X_SEP \ /* misc */ \ X_VAL(n) X_SEP X_VAL(p)
Definition at line 188 of file extension.h.
#define CONV_SET_CASE | ( | c | ) | conv == #c[0] ? (uint64_t{1} << (1 + ConversionChar::Id::c)): |
Definition at line 351 of file extension.h.
#define CONV_SET_CASE | ( | c | ) | c = ConversionCharToConvValue(#c[0]), |
Definition at line 351 of file extension.h.
#define X_VAL | ( | id | ) |
case #id[0]: \ out_id = ConversionChar::id; \ break;