Lines Matching refs:out_value

85   virtual bool GetAsBoolean(bool* out_value) const;
86 virtual bool GetAsInteger(int* out_value) const;
87 virtual bool GetAsDouble(double* out_value) const;
88 virtual bool GetAsString(std::string* out_value) const;
89 virtual bool GetAsString(string16* out_value) const;
90 virtual bool GetAsString(const StringValue** out_value) const;
91 virtual bool GetAsBinary(const BinaryValue** out_value) const;
92 virtual bool GetAsList(ListValue** out_value);
93 virtual bool GetAsList(const ListValue** out_value) const;
94 virtual bool GetAsDictionary(DictionaryValue** out_value);
95 virtual bool GetAsDictionary(const DictionaryValue** out_value) const;
133 bool GetAsBoolean(bool* out_value) const override;
134 bool GetAsInteger(int* out_value) const override;
137 bool GetAsDouble(double* out_value) const override;
164 bool GetAsString(std::string* out_value) const override;
165 bool GetAsString(string16* out_value) const override;
166 bool GetAsString(const StringValue** out_value) const override;
197 bool GetAsBinary(const BinaryValue** out_value) const override;
220 bool GetAsDictionary(DictionaryValue** out_value) override;
221 bool GetAsDictionary(const DictionaryValue** out_value) const override;
278 bool Get(StringPiece path, const Value** out_value) const;
279 bool Get(StringPiece path, Value** out_value);
285 bool GetBoolean(const std::string& path, bool* out_value) const;
286 bool GetInteger(const std::string& path, int* out_value) const;
289 bool GetDouble(const std::string& path, double* out_value) const;
290 bool GetString(const std::string& path, std::string* out_value) const;
291 bool GetString(const std::string& path, string16* out_value) const;
292 bool GetStringASCII(const std::string& path, std::string* out_value) const;
293 bool GetBinary(const std::string& path, const BinaryValue** out_value) const;
294 bool GetBinary(const std::string& path, BinaryValue** out_value);
296 const DictionaryValue** out_value) const;
297 bool GetDictionary(StringPiece path, DictionaryValue** out_value);
298 bool GetList(const std::string& path, const ListValue** out_value) const;
299 bool GetList(const std::string& path, ListValue** out_value);
304 const Value** out_value) const;
305 bool GetWithoutPathExpansion(const std::string& key, Value** out_value);
307 bool* out_value) const;
309 int* out_value) const;
311 double* out_value) const;
313 std::string* out_value) const;
315 string16* out_value) const;
318 const DictionaryValue** out_value) const;
320 DictionaryValue** out_value);
322 const ListValue** out_value) const;
324 ListValue** out_value);
332 virtual bool Remove(const std::string& path, scoped_ptr<Value>* out_value);
337 scoped_ptr<Value>* out_value);
342 scoped_ptr<Value>* out_value);
422 bool Get(size_t index, const Value** out_value) const;
423 bool Get(size_t index, Value** out_value);
429 bool GetBoolean(size_t index, bool* out_value) const;
430 bool GetInteger(size_t index, int* out_value) const;
433 bool GetDouble(size_t index, double* out_value) const;
434 bool GetString(size_t index, std::string* out_value) const;
435 bool GetString(size_t index, string16* out_value) const;
436 bool GetBinary(size_t index, const BinaryValue** out_value) const;
437 bool GetBinary(size_t index, BinaryValue** out_value);
438 bool GetDictionary(size_t index, const DictionaryValue** out_value) const;
439 bool GetDictionary(size_t index, DictionaryValue** out_value);
440 bool GetList(size_t index, const ListValue** out_value) const;
441 bool GetList(size_t index, ListValue** out_value);
448 virtual bool Remove(size_t index, scoped_ptr<Value>* out_value);
459 iterator Erase(iterator iter, scoped_ptr<Value>* out_value);
500 bool GetAsList(ListValue** out_value) override;
501 bool GetAsList(const ListValue** out_value) const override;