Lines Matching refs:in_value
124 explicit FundamentalValue(bool in_value);
125 explicit FundamentalValue(int in_value);
126 explicit FundamentalValue(double in_value);
149 explicit StringValue(const std::string& in_value);
152 explicit StringValue(const string16& in_value);
241 void Set(const std::string& path, std::unique_ptr<Value> in_value);
243 void Set(const std::string& path, Value* in_value);
247 void SetBoolean(const std::string& path, bool in_value);
248 void SetInteger(const std::string& path, int in_value);
249 void SetDouble(const std::string& path, double in_value);
250 void SetString(const std::string& path, const std::string& in_value);
251 void SetString(const std::string& path, const string16& in_value);
256 std::unique_ptr<Value> in_value);
258 void SetWithoutPathExpansion(const std::string& key, Value* in_value);
261 void SetBooleanWithoutPathExpansion(const std::string& path, bool in_value);
262 void SetIntegerWithoutPathExpansion(const std::string& path, int in_value);
263 void SetDoubleWithoutPathExpansion(const std::string& path, double in_value);
265 const std::string& in_value);
267 const string16& in_value);
416 bool Set(size_t index, Value* in_value);
418 bool Set(size_t index, std::unique_ptr<Value> in_value);
464 void Append(std::unique_ptr<Value> in_value);
466 void Append(Value* in_value);
469 void AppendBoolean(bool in_value);
470 void AppendInteger(int in_value);
471 void AppendDouble(double in_value);
472 void AppendString(const std::string& in_value);
473 void AppendString(const string16& in_value);
480 bool AppendIfNotPresent(Value* in_value);
484 bool Insert(size_t index, Value* in_value);