Lines Matching refs:clz
198 lv_prop_id_t lv_obj_class_property_get_id(const lv_obj_class_t * clz, const char * name) in lv_obj_class_property_get_id() argument
204 names = clz->property_names; in lv_obj_class_property_get_id()
210 …found = lv_utils_bsearch(name, names, clz->names_count, sizeof(lv_property_name_t), property_name_… in lv_obj_class_property_get_id()
223 const lv_obj_class_t * clz; in lv_obj_property_get_id() local
226 for(clz = obj->class_p; clz; clz = clz->base_class) { in lv_obj_property_get_id()
227 id = lv_obj_class_property_get_id(clz, name); in lv_obj_property_get_id()
251 const lv_obj_class_t * clz; in obj_property() local
254 for(clz = obj->class_p ; clz; clz = clz->base_class) { in obj_property()
255 properties = clz->properties; in obj_property()
261 … if(id != LV_PROPERTY_ID_ANY && (index < clz->prop_index_start || index > clz->prop_index_end)) { in obj_property()
267 for(uint32_t i = 0; i < clz->properties_count; i++) { in obj_property()