Lines Matching refs:GetStruct
42 cef_dictionary_value_t* _struct = GetStruct(); in IsValid()
58 cef_dictionary_value_t* _struct = GetStruct(); in IsOwned()
74 cef_dictionary_value_t* _struct = GetStruct(); in IsReadOnly()
91 cef_dictionary_value_t* _struct = GetStruct(); in IsSame()
114 cef_dictionary_value_t* _struct = GetStruct(); in IsEqual()
138 cef_dictionary_value_t* _struct = GetStruct(); in Copy()
155 cef_dictionary_value_t* _struct = GetStruct(); in GetSize()
171 cef_dictionary_value_t* _struct = GetStruct(); in Clear()
188 cef_dictionary_value_t* _struct = GetStruct(); in HasKey()
200 int _retval = _struct->has_key(_struct, key.GetStruct()); in HasKey()
209 cef_dictionary_value_t* _struct = GetStruct(); in GetKeys()
239 cef_dictionary_value_t* _struct = GetStruct(); in Remove()
251 int _retval = _struct->remove(_struct, key.GetStruct()); in Remove()
261 cef_dictionary_value_t* _struct = GetStruct(); in GetType()
273 cef_value_type_t _retval = _struct->get_type(_struct, key.GetStruct()); in GetType()
283 cef_dictionary_value_t* _struct = GetStruct(); in GetValue()
295 cef_value_t* _retval = _struct->get_value(_struct, key.GetStruct()); in GetValue()
305 cef_dictionary_value_t* _struct = GetStruct(); in GetBool()
317 int _retval = _struct->get_bool(_struct, key.GetStruct()); in GetBool()
327 cef_dictionary_value_t* _struct = GetStruct(); in GetInt()
339 int _retval = _struct->get_int(_struct, key.GetStruct()); in GetInt()
349 cef_dictionary_value_t* _struct = GetStruct(); in GetDouble()
361 double _retval = _struct->get_double(_struct, key.GetStruct()); in GetDouble()
371 cef_dictionary_value_t* _struct = GetStruct(); in GetString()
383 cef_string_userfree_t _retval = _struct->get_string(_struct, key.GetStruct()); in GetString()
396 cef_dictionary_value_t* _struct = GetStruct(); in GetBinary()
408 cef_binary_value_t* _retval = _struct->get_binary(_struct, key.GetStruct()); in GetBinary()
419 cef_dictionary_value_t* _struct = GetStruct(); in GetDictionary()
432 _struct->get_dictionary(_struct, key.GetStruct()); in GetDictionary()
443 cef_dictionary_value_t* _struct = GetStruct(); in GetList()
455 cef_list_value_t* _retval = _struct->get_list(_struct, key.GetStruct()); in GetList()
466 cef_dictionary_value_t* _struct = GetStruct(); in SetValue()
482 int _retval = _struct->set_value(_struct, key.GetStruct(), in SetValue()
493 cef_dictionary_value_t* _struct = GetStruct(); in SetNull()
505 int _retval = _struct->set_null(_struct, key.GetStruct()); in SetNull()
515 cef_dictionary_value_t* _struct = GetStruct(); in SetBool()
527 int _retval = _struct->set_bool(_struct, key.GetStruct(), value); in SetBool()
537 cef_dictionary_value_t* _struct = GetStruct(); in SetInt()
549 int _retval = _struct->set_int(_struct, key.GetStruct(), value); in SetInt()
559 cef_dictionary_value_t* _struct = GetStruct(); in SetDouble()
571 int _retval = _struct->set_double(_struct, key.GetStruct(), value); in SetDouble()
582 cef_dictionary_value_t* _struct = GetStruct(); in SetString()
596 _struct->set_string(_struct, key.GetStruct(), value.GetStruct()); in SetString()
607 cef_dictionary_value_t* _struct = GetStruct(); in SetBinary()
623 int _retval = _struct->set_binary(_struct, key.GetStruct(), in SetBinary()
636 cef_dictionary_value_t* _struct = GetStruct(); in SetDictionary()
653 _struct, key.GetStruct(), CefDictionaryValueCToCpp::Unwrap(value)); in SetDictionary()
664 cef_dictionary_value_t* _struct = GetStruct(); in SetList()
680 int _retval = _struct->set_list(_struct, key.GetStruct(), in SetList()