HomeSort by relevance Sort by last modified time
    Searched refs:FlagValue (Results 1 - 4 of 4) sorted by null

  /external/chromium/third_party/libjingle/source/talk/base/
flags.h 46 union FlagValue {
52 static FlagValue New_BOOL(int b) {
53 FlagValue v;
58 static FlagValue New_INT(int i) {
59 FlagValue v;
64 static FlagValue New_FLOAT(float f) {
65 FlagValue v;
70 static FlagValue New_STRING(const char* s) {
71 FlagValue v;
90 Type type, void* variable, FlagValue default_)
    [all...]
flags.cc 45 Type type, void* variable, FlagValue default__)
50 variable_(reinterpret_cast<FlagValue*>(variable)),
58 // flag variables are not really of type FlagValue and thus may
59 // be smaller! The FlagValue union is simply 'overlayed' on top
92 static void PrintFlagValue(Flag::Type type, FlagValue* p) {
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 37 // * FlagRegistry owns CommandLineFlags owns FlagValue.
49 // FlagValue holds the current value of a flag. It's
50 // pseudo-templatized: every operation on a FlagValue is typed. It
56 // flag. It has a FlagValue for the flag's current value, but also
65 // A given FlagValue is owned by exactly one CommandLineFlag. A given
67 // has a lock; any operation that writes to a FlagValue or
82 // the innards of the FlagValue->CommandLineFlag->FlagRegistry class
217 // FlagValue
224 class FlagValue {
226 FlagValue(void* valbuf, const char* type)
    [all...]
  /external/open-vcdiff/gflags/src/
gflags.cc 37 // * FlagRegistry owns CommandLineFlags owns FlagValue.
49 // FlagValue holds the current value of a flag. It's
50 // pseudo-templatized: every operation on a FlagValue is typed. It
56 // flag. It has a FlagValue for the flag's current value, but also
65 // A given FlagValue is owned by exactly one CommandLineFlag. A given
67 // has a lock; any operation that writes to a FlagValue or
82 // the innards of the FlagValue->CommandLineFlag->FlagRegistry class
217 // FlagValue
224 class FlagValue {
226 FlagValue(void* valbuf, const char* type)
    [all...]

Completed in 47 milliseconds