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

  /external/chromium/base/
values.cc 73 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)
156 FundamentalValue::FundamentalValue(int in_value
    [all...]
values.h 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();
    [all...]
  /external/chromium_org/base/
values.cc 90 FundamentalValue* Value::CreateBooleanValue(bool in_value) {
91 return new FundamentalValue(in_value);
95 FundamentalValue* Value::CreateIntegerValue(int in_value) {
96 return new FundamentalValue(in_value);
100 FundamentalValue* Value::CreateDoubleValue(double in_value) {
101 return new FundamentalValue(in_value);
180 ///////////////////// FundamentalValue ////////////////////
182 FundamentalValue::FundamentalValue(bool in_value)
186 FundamentalValue::FundamentalValue(int in_value
    [all...]
values.h 40 class FundamentalValue;
71 // new FundamentalValue or new StringValue.
72 static FundamentalValue* CreateBooleanValue(bool in_value);
73 static FundamentalValue* CreateIntegerValue(int in_value);
74 static FundamentalValue* CreateDoubleValue(double in_value);
127 // FundamentalValue represents the simple fundamental types of values.
128 class BASE_EXPORT FundamentalValue : public Value {
130 explicit FundamentalValue(bool in_value);
131 explicit FundamentalValue(int in_value);
132 explicit FundamentalValue(double in_value)
    [all...]

Completed in 44 milliseconds