Lines Matching refs:key
185 bool CefDictionaryValueCToCpp::HasKey(const CefString& key) { in HasKey() argument
195 DCHECK(!key.empty()); in HasKey()
196 if (key.empty()) in HasKey()
200 int _retval = _struct->has_key(_struct, key.GetStruct()); in HasKey()
236 bool CefDictionaryValueCToCpp::Remove(const CefString& key) { in Remove() argument
246 DCHECK(!key.empty()); in Remove()
247 if (key.empty()) in Remove()
251 int _retval = _struct->remove(_struct, key.GetStruct()); in Remove()
258 CefValueType CefDictionaryValueCToCpp::GetType(const CefString& key) { in GetType() argument
268 DCHECK(!key.empty()); in GetType()
269 if (key.empty()) in GetType()
273 cef_value_type_t _retval = _struct->get_type(_struct, key.GetStruct()); in GetType()
280 CefRefPtr<CefValue> CefDictionaryValueCToCpp::GetValue(const CefString& key) { in GetValue() argument
290 DCHECK(!key.empty()); in GetValue()
291 if (key.empty()) in GetValue()
295 cef_value_t* _retval = _struct->get_value(_struct, key.GetStruct()); in GetValue()
302 bool CefDictionaryValueCToCpp::GetBool(const CefString& key) { in GetBool() argument
312 DCHECK(!key.empty()); in GetBool()
313 if (key.empty()) in GetBool()
317 int _retval = _struct->get_bool(_struct, key.GetStruct()); in GetBool()
324 int CefDictionaryValueCToCpp::GetInt(const CefString& key) { in GetInt() argument
334 DCHECK(!key.empty()); in GetInt()
335 if (key.empty()) in GetInt()
339 int _retval = _struct->get_int(_struct, key.GetStruct()); in GetInt()
346 double CefDictionaryValueCToCpp::GetDouble(const CefString& key) { in GetDouble() argument
356 DCHECK(!key.empty()); in GetDouble()
357 if (key.empty()) in GetDouble()
361 double _retval = _struct->get_double(_struct, key.GetStruct()); in GetDouble()
368 CefString CefDictionaryValueCToCpp::GetString(const CefString& key) { in GetString() argument
378 DCHECK(!key.empty()); in GetString()
379 if (key.empty()) in GetString()
383 cef_string_userfree_t _retval = _struct->get_string(_struct, key.GetStruct()); in GetString()
393 const CefString& key) { in GetBinary() argument
403 DCHECK(!key.empty()); in GetBinary()
404 if (key.empty()) in GetBinary()
408 cef_binary_value_t* _retval = _struct->get_binary(_struct, key.GetStruct()); in GetBinary()
416 const CefString& key) { in GetDictionary() argument
426 DCHECK(!key.empty()); in GetDictionary()
427 if (key.empty()) in GetDictionary()
432 _struct->get_dictionary(_struct, key.GetStruct()); in GetDictionary()
440 const CefString& key) { in GetList() argument
450 DCHECK(!key.empty()); in GetList()
451 if (key.empty()) in GetList()
455 cef_list_value_t* _retval = _struct->get_list(_struct, key.GetStruct()); in GetList()
462 bool CefDictionaryValueCToCpp::SetValue(const CefString& key, in SetValue() argument
473 DCHECK(!key.empty()); in SetValue()
474 if (key.empty()) in SetValue()
482 int _retval = _struct->set_value(_struct, key.GetStruct(), in SetValue()
490 bool CefDictionaryValueCToCpp::SetNull(const CefString& key) { in SetNull() argument
500 DCHECK(!key.empty()); in SetNull()
501 if (key.empty()) in SetNull()
505 int _retval = _struct->set_null(_struct, key.GetStruct()); in SetNull()
512 bool CefDictionaryValueCToCpp::SetBool(const CefString& key, bool value) { in SetBool() argument
522 DCHECK(!key.empty()); in SetBool()
523 if (key.empty()) in SetBool()
527 int _retval = _struct->set_bool(_struct, key.GetStruct(), value); in SetBool()
534 bool CefDictionaryValueCToCpp::SetInt(const CefString& key, int value) { in SetInt() argument
544 DCHECK(!key.empty()); in SetInt()
545 if (key.empty()) in SetInt()
549 int _retval = _struct->set_int(_struct, key.GetStruct(), value); in SetInt()
556 bool CefDictionaryValueCToCpp::SetDouble(const CefString& key, double value) { in SetDouble() argument
566 DCHECK(!key.empty()); in SetDouble()
567 if (key.empty()) in SetDouble()
571 int _retval = _struct->set_double(_struct, key.GetStruct(), value); in SetDouble()
578 bool CefDictionaryValueCToCpp::SetString(const CefString& key, in SetString() argument
589 DCHECK(!key.empty()); in SetString()
590 if (key.empty()) in SetString()
596 _struct->set_string(_struct, key.GetStruct(), value.GetStruct()); in SetString()
603 bool CefDictionaryValueCToCpp::SetBinary(const CefString& key, in SetBinary() argument
614 DCHECK(!key.empty()); in SetBinary()
615 if (key.empty()) in SetBinary()
623 int _retval = _struct->set_binary(_struct, key.GetStruct(), in SetBinary()
632 const CefString& key, in SetDictionary() argument
643 DCHECK(!key.empty()); in SetDictionary()
644 if (key.empty()) in SetDictionary()
653 _struct, key.GetStruct(), CefDictionaryValueCToCpp::Unwrap(value)); in SetDictionary()
660 bool CefDictionaryValueCToCpp::SetList(const CefString& key, in SetList() argument
671 DCHECK(!key.empty()); in SetList()
672 if (key.empty()) in SetList()
680 int _retval = _struct->set_list(_struct, key.GetStruct(), in SetList()