Home | History | Annotate | Download | only in base

Lines Matching refs:FlagValue

34 union FlagValue {
40 static FlagValue New_BOOL(int b) {
41 FlagValue v;
46 static FlagValue New_INT(int i) {
47 FlagValue v;
52 static FlagValue New_FLOAT(float f) {
53 FlagValue v;
58 static FlagValue New_STRING(const char* s) {
59 FlagValue v;
78 Type type, void* variable, FlagValue default_);
146 FlagValue* variable_;
147 FlagValue default_;
162 rtc::FlagValue::New_##type(default))