Lines Matching full:or
39 * OR-ed values are possible
71 …LV_PART_INDICATOR = 0x020000, /**< Indicator, e.g. for slider, bar, switch, or the tick box o…
73 LV_PART_SELECTED = 0x040000, /**< Indicate the currently selected option or section*/
75 LV_PART_TICKS = 0x060000, /**< Ticks on scale e.g. for a chart or meter*/
76 …LV_PART_CURSOR = 0x070000, /**< Mark a specific place e.g. for text area's cursor or on a …
87 * OR-ed values are possible
208 * Currently only implemented when not using custom allocators, or GC is enabled.
231 * Set one or more flags
238 * Clear one or more flags
240 * @param f OR-ed values from `lv_obj_flag_t` to set.
245 * Add one or more states to the object. The other state bits will remain unchanged.
253 * Remove one or more states to the object. The other state bits will remain unchanged.
277 * Check if a given flag or all the given flags are set on an object.
279 * @param f the flag(s) to check (OR-ed values can be used)
285 * Check if a given flag or any of the flags are set on an object.
287 * @param f the flag(s) to check (OR-ed values can be used)
295 * @return the state (OR-ed values from `lv_state_t`)
300 * Check if the object is in a given state or not.
302 * @param state a state or combination of states to check
368 * Scale the given number of pixels (a distance or size) relative to a 160 DPI display
390 … LV_ASSERT_MSG(lv_obj_is_valid(obj_p) == true, "The object is invalid, deleted or corrupted?"); \