Searched defs:FundamentalValue (Results 1 - 2 of 2) sorted by relevance

/external/chromium/base/
H A Dvalues.cc73 FundamentalValue* Value::CreateBooleanValue(bool in_value) {
74 return new FundamentalValue(in_value);
78 FundamentalValue* Value::CreateIntegerValue(int in_value) {
79 return new FundamentalValue(in_value);
83 FundamentalValue* Value::CreateDoubleValue(double in_value) {
84 return new FundamentalValue(in_value);
150 ///////////////////// FundamentalValue ////////////////////
152 FundamentalValue::FundamentalValue(bool in_value) function in class:FundamentalValue
156 FundamentalValue function in class:FundamentalValue
160 FundamentalValue::FundamentalValue(double in_value) function in class:FundamentalValue
[all...]
H A Dvalues.h37 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 { class in inherits:Value
128 explicit FundamentalValue(bool in_value);
129 explicit FundamentalValue(int in_value);
130 explicit FundamentalValue(double in_value);
131 virtual ~FundamentalValue();
[all...]

Completed in 181 milliseconds