Home | History | Annotate | Download | only in base

Lines Matching refs:FlagValue

49 union FlagValue {
55 static FlagValue New_BOOL(int b) {
56 FlagValue v;
61 static FlagValue New_INT(int i) {
62 FlagValue v;
67 static FlagValue New_FLOAT(float f) {
68 FlagValue v;
73 static FlagValue New_STRING(const char* s) {
74 FlagValue v;
93 Type type, void* variable, FlagValue default_);
161 FlagValue* variable_;
162 FlagValue default_;
177 FlagValue::New_##type(default))