Searched refs:arg2 (Results 1 – 9 of 9) sorted by relevance
/lvgl-latest/src/core/ |
D | lv_obj_property.c | 31 … ((lv_property_set_##type##_integer_t)(prop->setter))(obj, value->arg1.field, value->arg2.num); \ 34 …((lv_property_set_##type##_boolean_t)(prop->setter))(obj, value->arg1.field, value->arg2.enable); \ 37 …(lv_property_set_##type##_precise_t)(prop->setter))(obj, value->arg1.field, value->arg2.precise); \ 40 … ((lv_property_set_##type##_color_t)(prop->setter))(obj, value->arg1.field, value->arg2.color); \ 48 … ((lv_property_set_##type##_pointer_t)(prop->setter))(obj, value->arg1.field, value->arg2.ptr); \
|
D | lv_obj_property.h | 136 } arg1, arg2; member
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_slider.c | 223 prop.arg2.num = 100; in test_slider_properties() 232 prop.arg2.enable = false; in test_slider_properties() 244 prop.arg2.enable = false; in test_slider_properties()
|
D | test_animimg.c | 115 prop.arg2.num = 3; in test_animimg_property()
|
D | test_roller.c | 360 prop.arg2.num = LV_ROLLER_MODE_NORMAL; in test_roller_properties() 367 prop.arg2.enable = LV_ANIM_ON; in test_roller_properties()
|
D | test_dropdown.c | 479 prop.arg2.enable = LV_ANIM_OFF; in test_dropdown_properties()
|
/lvgl-latest/docs/details/other-components/ |
D | obj_property.rst | 216 * so we can use `arg1.num` and `arg2.num` to set the argument. 226 } arg1, arg2;
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgLottieExpressions.cpp | 381 static jerry_value_t _muldiv(const jerry_value_t arg1, float arg2) in _muldiv() argument 384 if (jerry_value_is_number(arg1)) return jerry_number(jerry_value_as_number(arg1) * arg2); in _muldiv() 389 auto x = jerry_value_as_number(val1) * arg2; in _muldiv() 390 auto y = jerry_value_as_number(val2) * arg2; in _muldiv()
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | schema.h | 2810 #define RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(method, arg2)\ 2813 static_cast<HasherType*>(context->hasher)->method arg2;\ 2816 static_cast<GenericSchemaValidator*>(context->validators[i_])->method arg2;\ 2819 … static_cast<GenericSchemaValidator*>(context->patternPropertiesValidators[i_])->method arg2;\ 2822 #define RAPIDJSON_SCHEMA_HANDLE_END_(method, arg2)\ 2823 …alid_ = (EndValue() || GetContinueOnErrors()) && (!outputHandler_ || outputHandler_->method arg2);\ 2826 #define RAPIDJSON_SCHEMA_HANDLE_VALUE_(method, arg1, arg2) \ 2828 RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(method, arg2);\ 2829 RAPIDJSON_SCHEMA_HANDLE_END_ (method, arg2)
|