Home
last modified time | relevance | path

Searched refs:obj_class (Results 1 – 2 of 2) sorted by relevance

/lvgl-3.4.0/src/core/
Dlv_obj.h387 # define LV_ASSERT_OBJ(obj_p, obj_class) … argument
390 … LV_ASSERT_MSG(lv_obj_has_class(obj_p, obj_class) == true, "Incompatible object type."); \
394 # define LV_ASSERT_OBJ(obj_p, obj_class) do{}while(0) argument
Dlv_obj.c360 const lv_obj_class_t * obj_class = obj->class_p; in lv_obj_has_class() local
361 while(obj_class) { in lv_obj_has_class()
362 if(obj_class == class_p) return true; in lv_obj_has_class()
363 obj_class = obj_class->base_class; in lv_obj_has_class()