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

/external/chromium_org/base/
H A Dvalues.h37 class FundamentalValue;
68 // new FundamentalValue or new StringValue.
69 static FundamentalValue* CreateBooleanValue(bool in_value);
70 static FundamentalValue* CreateIntegerValue(int in_value);
71 static FundamentalValue* CreateDoubleValue(double in_value);
125 // FundamentalValue represents the simple fundamental types of values.
126 class BASE_EXPORT FundamentalValue : public Value { class in namespace:base
128 explicit FundamentalValue(bool in_value);
129 explicit FundamentalValue(int in_value);
130 explicit FundamentalValue(doubl
[all...]
H A Dvalues.cc93 FundamentalValue* Value::CreateBooleanValue(bool in_value) {
94 return new FundamentalValue(in_value);
98 FundamentalValue* Value::CreateIntegerValue(int in_value) {
99 return new FundamentalValue(in_value);
103 FundamentalValue* Value::CreateDoubleValue(double in_value) {
104 return new FundamentalValue(in_value);
187 ///////////////////// FundamentalValue ////////////////////
189 FundamentalValue::FundamentalValue(bool in_value) function in class:base::FundamentalValue
193 FundamentalValue function in class:base::FundamentalValue
197 FundamentalValue::FundamentalValue(double in_value) function in class:base::FundamentalValue
[all...]

Completed in 87 milliseconds