• Home
  • Raw
  • Download

Lines Matching refs:out_value

82   virtual bool GetAsBoolean(bool* out_value) const;
83 virtual bool GetAsInteger(int* out_value) const;
84 virtual bool GetAsDouble(double* out_value) const;
85 virtual bool GetAsString(std::string* out_value) const;
86 virtual bool GetAsString(string16* out_value) const;
87 virtual bool GetAsString(const StringValue** out_value) const;
88 virtual bool GetAsList(ListValue** out_value);
89 virtual bool GetAsList(const ListValue** out_value) const;
90 virtual bool GetAsDictionary(DictionaryValue** out_value);
91 virtual bool GetAsDictionary(const DictionaryValue** out_value) const;
127 virtual bool GetAsBoolean(bool* out_value) const OVERRIDE;
128 virtual bool GetAsInteger(int* out_value) const OVERRIDE;
131 virtual bool GetAsDouble(double* out_value) const OVERRIDE;
158 virtual bool GetAsString(std::string* out_value) const OVERRIDE;
159 virtual bool GetAsString(string16* out_value) const OVERRIDE;
160 virtual bool GetAsString(const StringValue** out_value) const OVERRIDE;
210 virtual bool GetAsDictionary(DictionaryValue** out_value) OVERRIDE;
212 const DictionaryValue** out_value) const OVERRIDE;
266 bool Get(const std::string& path, const Value** out_value) const;
267 bool Get(const std::string& path, Value** out_value);
273 bool GetBoolean(const std::string& path, bool* out_value) const;
274 bool GetInteger(const std::string& path, int* out_value) const;
277 bool GetDouble(const std::string& path, double* out_value) const;
278 bool GetString(const std::string& path, std::string* out_value) const;
279 bool GetString(const std::string& path, string16* out_value) const;
280 bool GetStringASCII(const std::string& path, std::string* out_value) const;
281 bool GetBinary(const std::string& path, const BinaryValue** out_value) const;
282 bool GetBinary(const std::string& path, BinaryValue** out_value);
284 const DictionaryValue** out_value) const;
285 bool GetDictionary(const std::string& path, DictionaryValue** out_value);
286 bool GetList(const std::string& path, const ListValue** out_value) const;
287 bool GetList(const std::string& path, ListValue** out_value);
292 const Value** out_value) const;
293 bool GetWithoutPathExpansion(const std::string& key, Value** out_value);
295 bool* out_value) const;
297 int* out_value) const;
299 double* out_value) const;
301 std::string* out_value) const;
303 string16* out_value) const;
306 const DictionaryValue** out_value) const;
308 DictionaryValue** out_value);
310 const ListValue** out_value) const;
312 ListValue** out_value);
320 virtual bool Remove(const std::string& path, scoped_ptr<Value>* out_value);
325 scoped_ptr<Value>* out_value);
330 scoped_ptr<Value>* out_value);
403 bool Get(size_t index, const Value** out_value) const;
404 bool Get(size_t index, Value** out_value);
410 bool GetBoolean(size_t index, bool* out_value) const;
411 bool GetInteger(size_t index, int* out_value) const;
414 bool GetDouble(size_t index, double* out_value) const;
415 bool GetString(size_t index, std::string* out_value) const;
416 bool GetString(size_t index, string16* out_value) const;
417 bool GetBinary(size_t index, const BinaryValue** out_value) const;
418 bool GetBinary(size_t index, BinaryValue** out_value);
419 bool GetDictionary(size_t index, const DictionaryValue** out_value) const;
420 bool GetDictionary(size_t index, DictionaryValue** out_value);
421 bool GetList(size_t index, const ListValue** out_value) const;
422 bool GetList(size_t index, ListValue** out_value);
429 virtual bool Remove(size_t index, scoped_ptr<Value>* out_value);
440 iterator Erase(iterator iter, scoped_ptr<Value>* out_value);
479 virtual bool GetAsList(ListValue** out_value) OVERRIDE;
480 virtual bool GetAsList(const ListValue** out_value) const OVERRIDE;