Home | History | Annotate | Download | only in base

Lines Matching refs:FundamentalValue

37 class FundamentalValue;
67 static FundamentalValue* CreateBooleanValue(bool in_value);
68 static FundamentalValue* CreateIntegerValue(int in_value);
69 static FundamentalValue* CreateDoubleValue(double in_value);
125 // FundamentalValue represents the simple fundamental types of values.
126 class BASE_API FundamentalValue : public Value {
128 explicit FundamentalValue(bool in_value);
129 explicit FundamentalValue(int in_value);
130 explicit FundamentalValue(double in_value);
131 virtual ~FundamentalValue();
137 virtual FundamentalValue* DeepCopy() const;
147 DISALLOW_COPY_AND_ASSIGN(FundamentalValue);