Home | History | Annotate | Download | only in base

Lines Matching refs:in_value

72   static FundamentalValue* CreateBooleanValue(bool in_value);
73 static FundamentalValue* CreateIntegerValue(int in_value);
74 static FundamentalValue* CreateDoubleValue(double in_value);
75 static StringValue* CreateStringValue(const std::string& in_value);
76 static StringValue* CreateStringValue(const string16& in_value);
130 explicit FundamentalValue(bool in_value);
131 explicit FundamentalValue(int in_value);
132 explicit FundamentalValue(double in_value);
153 explicit StringValue(const std::string& in_value);
156 explicit StringValue(const string16& in_value);
236 // |in_value|, and therefore |in_value| must be non-NULL.
237 void Set(const std::string& path, Value* in_value);
241 void SetBoolean(const std::string& path, bool in_value);
242 void SetInteger(const std::string& path, int in_value);
243 void SetDouble(const std::string& path, double in_value);
244 void SetString(const std::string& path, const std::string& in_value);
245 void SetString(const std::string& path, const string16& in_value);
249 void SetWithoutPathExpansion(const std::string& key, Value* in_value);
252 void SetBooleanWithoutPathExpansion(const std::string& path, bool in_value);
253 void SetIntegerWithoutPathExpansion(const std::string& path, int in_value);
254 void SetDoubleWithoutPathExpansion(const std::string& path, double in_value);
256 const std::string& in_value);
258 const string16& in_value);
389 bool Set(size_t index, Value* in_value);
431 void Append(Value* in_value);
434 void AppendBoolean(bool in_value);
435 void AppendInteger(int in_value);
436 void AppendDouble(double in_value);
437 void AppendString(const std::string& in_value);
438 void AppendString(const string16& in_value);
443 // |in_value|. Returns true if successful, or false if the value was already
444 // present. If the value was already present the |in_value| is deleted.
445 bool AppendIfNotPresent(Value* in_value);
449 bool Insert(size_t index, Value* in_value);