#include "util/util.h"
#include "re2/stringpiece.h"
Go to the source code of this file.
◆ DECLARE_INTEGER_PARSER
#define DECLARE_INTEGER_PARSER |
( |
|
name | ) |
|
Value: private: \
static
bool parse_##
name(
const char*
str,
size_t n,
void*
dest); \
static
bool parse_##
name##_radix(
const char*
str,
size_t n,
void*
dest, \
\
public: \
static
bool parse_##
name##_hex(
const char*
str,
size_t n,
void*
dest); \
static
bool parse_##
name##_octal(
const char*
str,
size_t n,
void*
dest); \
static
bool parse_##
name##_cradix(
const char*
str,
size_t n,
void*
dest)
Definition at line 625 of file bloaty/third_party/re2/util/pcre.h.
◆ MAKE_INTEGER_PARSER
#define MAKE_INTEGER_PARSER |
( |
|
type, |
|
|
|
name |
|
) |
| |
◆ MAKE_PARSER