• Home
  • Raw
  • Download

Lines Matching refs:_struct

40   cef_value_t* _struct = GetStruct();  in IsValid()  local
41 if (CEF_MEMBER_MISSING(_struct, is_valid)) in IsValid()
47 int _retval = _struct->is_valid(_struct); in IsValid()
56 cef_value_t* _struct = GetStruct(); in IsOwned() local
57 if (CEF_MEMBER_MISSING(_struct, is_owned)) in IsOwned()
63 int _retval = _struct->is_owned(_struct); in IsOwned()
72 cef_value_t* _struct = GetStruct(); in IsReadOnly() local
73 if (CEF_MEMBER_MISSING(_struct, is_read_only)) in IsReadOnly()
79 int _retval = _struct->is_read_only(_struct); in IsReadOnly()
88 cef_value_t* _struct = GetStruct(); in IsSame() local
89 if (CEF_MEMBER_MISSING(_struct, is_same)) in IsSame()
100 int _retval = _struct->is_same(_struct, CefValueCToCpp::Unwrap(that)); in IsSame()
110 cef_value_t* _struct = GetStruct(); in IsEqual() local
111 if (CEF_MEMBER_MISSING(_struct, is_equal)) in IsEqual()
122 int _retval = _struct->is_equal(_struct, CefValueCToCpp::Unwrap(that)); in IsEqual()
131 cef_value_t* _struct = GetStruct(); in Copy() local
132 if (CEF_MEMBER_MISSING(_struct, copy)) in Copy()
138 cef_value_t* _retval = _struct->copy(_struct); in Copy()
147 cef_value_t* _struct = GetStruct(); in GetType() local
148 if (CEF_MEMBER_MISSING(_struct, get_type)) in GetType()
154 cef_value_type_t _retval = _struct->get_type(_struct); in GetType()
163 cef_value_t* _struct = GetStruct(); in GetBool() local
164 if (CEF_MEMBER_MISSING(_struct, get_bool)) in GetBool()
170 int _retval = _struct->get_bool(_struct); in GetBool()
179 cef_value_t* _struct = GetStruct(); in GetInt() local
180 if (CEF_MEMBER_MISSING(_struct, get_int)) in GetInt()
186 int _retval = _struct->get_int(_struct); in GetInt()
195 cef_value_t* _struct = GetStruct(); in GetDouble() local
196 if (CEF_MEMBER_MISSING(_struct, get_double)) in GetDouble()
202 double _retval = _struct->get_double(_struct); in GetDouble()
211 cef_value_t* _struct = GetStruct(); in GetString() local
212 if (CEF_MEMBER_MISSING(_struct, get_string)) in GetString()
218 cef_string_userfree_t _retval = _struct->get_string(_struct); in GetString()
229 cef_value_t* _struct = GetStruct(); in GetBinary() local
230 if (CEF_MEMBER_MISSING(_struct, get_binary)) in GetBinary()
236 cef_binary_value_t* _retval = _struct->get_binary(_struct); in GetBinary()
246 cef_value_t* _struct = GetStruct(); in GetDictionary() local
247 if (CEF_MEMBER_MISSING(_struct, get_dictionary)) in GetDictionary()
253 cef_dictionary_value_t* _retval = _struct->get_dictionary(_struct); in GetDictionary()
262 cef_value_t* _struct = GetStruct(); in GetList() local
263 if (CEF_MEMBER_MISSING(_struct, get_list)) in GetList()
269 cef_list_value_t* _retval = _struct->get_list(_struct); in GetList()
278 cef_value_t* _struct = GetStruct(); in SetNull() local
279 if (CEF_MEMBER_MISSING(_struct, set_null)) in SetNull()
285 int _retval = _struct->set_null(_struct); in SetNull()
294 cef_value_t* _struct = GetStruct(); in SetBool() local
295 if (CEF_MEMBER_MISSING(_struct, set_bool)) in SetBool()
301 int _retval = _struct->set_bool(_struct, value); in SetBool()
310 cef_value_t* _struct = GetStruct(); in SetInt() local
311 if (CEF_MEMBER_MISSING(_struct, set_int)) in SetInt()
317 int _retval = _struct->set_int(_struct, value); in SetInt()
326 cef_value_t* _struct = GetStruct(); in SetDouble() local
327 if (CEF_MEMBER_MISSING(_struct, set_double)) in SetDouble()
333 int _retval = _struct->set_double(_struct, value); in SetDouble()
343 cef_value_t* _struct = GetStruct(); in SetString() local
344 if (CEF_MEMBER_MISSING(_struct, set_string)) in SetString()
352 int _retval = _struct->set_string(_struct, value.GetStruct()); in SetString()
362 cef_value_t* _struct = GetStruct(); in SetBinary() local
363 if (CEF_MEMBER_MISSING(_struct, set_binary)) in SetBinary()
375 _struct->set_binary(_struct, CefBinaryValueCToCpp::Unwrap(value)); in SetBinary()
385 cef_value_t* _struct = GetStruct(); in SetDictionary() local
386 if (CEF_MEMBER_MISSING(_struct, set_dictionary)) in SetDictionary()
398 _struct->set_dictionary(_struct, CefDictionaryValueCToCpp::Unwrap(value)); in SetDictionary()
408 cef_value_t* _struct = GetStruct(); in SetList() local
409 if (CEF_MEMBER_MISSING(_struct, set_list)) in SetList()
420 int _retval = _struct->set_list(_struct, CefListValueCToCpp::Unwrap(value)); in SetList()