#include <stddef.h>
#include <stdint.h>
#include <algorithm>
#include <map>
#include <mutex>
#include <string>
#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 843 of file bloaty/third_party/re2/re2/re2.h.
◆ MAKE_INTEGER_PARSER
#define MAKE_INTEGER_PARSER |
( |
|
type, |
|
|
|
name |
|
) |
| |
◆ MAKE_PARSER