|
proxygen
|
#include <folly/portability/Config.h>Go to the source code of this file.
Classes | |
| class | google::FlagSaver |
Namespaces | |
Macros | |
| #define | DECLARE_VARIABLE() static_assert(false, "You shouldn't be using GFlags internals."); |
| #define | FOLLY_DECLARE_FLAG(_type, _shortType, _name) |
| #define | DECLARE_bool(_name) FOLLY_DECLARE_FLAG(bool, B, _name) |
| #define | DECLARE_double(_name) FOLLY_DECLARE_FLAG(double, D, _name) |
| #define | DECLARE_int32(_name) FOLLY_DECLARE_FLAG(int, I, _name) |
| #define | DECLARE_int64(_name) FOLLY_DECLARE_FLAG(long long, I64, _name) |
| #define | DECLARE_uint32(_name) FOLLY_DECLARE_FLAG(unsigned long, U32, _name) |
| #define | DECLARE_uint64(_name) FOLLY_DECLARE_FLAG(unsigned long long, U64, _name) |
| #define | DECLARE_string(_name) FOLLY_DECLARE_FLAG(std::string, S, _name) |
| #define | FOLLY_DEFINE_FLAG(_type, _shortType, _name, _default) |
| #define | DEFINE_bool(_name, _default, _description) FOLLY_DEFINE_FLAG(bool, B, _name, _default) |
| #define | DEFINE_double(_name, _default, _description) FOLLY_DEFINE_FLAG(double, D, _name, _default) |
| #define | DEFINE_int32(_name, _default, _description) FOLLY_DEFINE_FLAG(int, I, _name, _default) |
| #define | DEFINE_int64(_name, _default, _description) FOLLY_DEFINE_FLAG(long long, I64, _name, _default) |
| #define | DEFINE_uint32(_name, _default, _description) FOLLY_DEFINE_FLAG(unsigned long, U32, _name, _default) |
| #define | DEFINE_uint64(_name, _default, _description) FOLLY_DEFINE_FLAG(unsigned long long, U64, _name, _default) |
| #define | DEFINE_string(_name, _default, _description) FOLLY_DEFINE_FLAG(std::string, S, _name, _default) |
| #define DECLARE_bool | ( | _name | ) | FOLLY_DECLARE_FLAG(bool, B, _name) |
| #define DECLARE_double | ( | _name | ) | FOLLY_DECLARE_FLAG(double, D, _name) |
| #define DECLARE_int32 | ( | _name | ) | FOLLY_DECLARE_FLAG(int, I, _name) |
| #define DECLARE_int64 | ( | _name | ) | FOLLY_DECLARE_FLAG(long long, I64, _name) |
| #define DECLARE_string | ( | _name | ) | FOLLY_DECLARE_FLAG(std::string, S, _name) |
| #define DECLARE_uint32 | ( | _name | ) | FOLLY_DECLARE_FLAG(unsigned long, U32, _name) |
| #define DECLARE_uint64 | ( | _name | ) | FOLLY_DECLARE_FLAG(unsigned long long, U64, _name) |
| #define DECLARE_VARIABLE | ( | ) | static_assert(false, "You shouldn't be using GFlags internals."); |
| #define DEFINE_bool | ( | _name, | |
| _default, | |||
| _description | |||
| ) | FOLLY_DEFINE_FLAG(bool, B, _name, _default) |
| #define DEFINE_double | ( | _name, | |
| _default, | |||
| _description | |||
| ) | FOLLY_DEFINE_FLAG(double, D, _name, _default) |
| #define DEFINE_int32 | ( | _name, | |
| _default, | |||
| _description | |||
| ) | FOLLY_DEFINE_FLAG(int, I, _name, _default) |
Definition at line 54 of file GFlags.h.
Referenced by folly::test::atomic_notify_one().
| #define DEFINE_int64 | ( | _name, | |
| _default, | |||
| _description | |||
| ) | FOLLY_DEFINE_FLAG(long long, I64, _name, _default) |
| #define DEFINE_string | ( | _name, | |
| _default, | |||
| _description | |||
| ) | FOLLY_DEFINE_FLAG(std::string, S, _name, _default) |
| #define DEFINE_uint32 | ( | _name, | |
| _default, | |||
| _description | |||
| ) | FOLLY_DEFINE_FLAG(unsigned long, U32, _name, _default) |
| #define DEFINE_uint64 | ( | _name, | |
| _default, | |||
| _description | |||
| ) | FOLLY_DEFINE_FLAG(unsigned long long, U64, _name, _default) |
| #define FOLLY_DECLARE_FLAG | ( | _type, | |
| _shortType, | |||
| _name | |||
| ) |