#include "re2/re2.h"
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <algorithm>
#include <iterator>
#include <mutex>
#include <string>
#include <utility>
#include <vector>
#include "util/util.h"
#include "util/logging.h"
#include "util/sparse_array.h"
#include "util/strutil.h"
#include "util/utf.h"
#include "re2/prog.h"
#include "re2/regexp.h"
Go to the source code of this file.
|
static int | re2::ascii_strcasecmp (const char *a, const char *b, size_t len) |
|
| re2::DEFINE_INTEGER_PARSER (int) |
|
| re2::DEFINE_INTEGER_PARSER (long) |
|
| re2::DEFINE_INTEGER_PARSER (longlong) |
|
| re2::DEFINE_INTEGER_PARSER (short) |
|
| re2::DEFINE_INTEGER_PARSER (uint) |
|
| re2::DEFINE_INTEGER_PARSER (ulong) |
|
| re2::DEFINE_INTEGER_PARSER (ulonglong) |
|
| re2::DEFINE_INTEGER_PARSER (ushort) |
|
static int | re2::Fanout (Prog *prog, std::map< int, int > *histogram) |
|
static bool | re2::parse_double_float (const char *str, size_t n, bool isfloat, void *dest) |
|
static RE2::ErrorCode | re2::RegexpErrorToRE2 (re2::RegexpStatusCode code) |
|
static const char * | re2::TerminateNumber (char *buf, size_t nbuf, const char *str, size_t *np, bool accept_spaces) |
|
static std::string | re2::trunc (const StringPiece &pattern) |
|
◆ DEFINE_INTEGER_PARSER
#define DEFINE_INTEGER_PARSER |
( |
|
name | ) |
|