/lvgl-latest/src/libs/thorvg/ |
D | tvgLottieParser.cpp | 164 while (auto key = nextObjectKey()) { in getValue() local 194 while (auto key = nextObjectKey()) { in getValue() local 355 while (auto key = nextObjectKey()) { in getInterpolatorPoint() local 365 while (auto key = nextObjectKey()) { in parseSlotProperty() local 373 bool LottieParser::parseTangent(const char *key, LottieVectorFrame<T>& value) in parseTangent() 385 bool LottieParser::parseTangent(const char *key, LottieScalarFrame<T>& value) in parseTangent() 391 LottieInterpolator* LottieParser::getInterpolator(const char* key, Point& in, Point& out) in getInterpolator() 428 while (auto key = nextObjectKey()) { in parseKeyFrame() local 495 while (auto key = nextObjectKey()) { in parseProperty() local 516 bool LottieParser::parseCommon(LottieObject* obj, const char* key) in parseCommon() [all …]
|
D | tvgLottieInterpolator.h | 33 char* key; member
|
D | tvgLottieLoader.h | 49 Key key; variable
|
D | tvgLock.h | 43 Key* key = nullptr; member
|
D | tvgLoader.cpp | 74 static Key key; variable 242 auto key = HASH_KEY(data); in _findFromCache() local 351 LoadModule* LoaderMgr::loader(const char* key) in loader()
|
D | tvgLottieParserHandler.cpp | 225 void LookaheadParserHandler::skip(const char* key) in skip()
|
D | tvgSvgLoader.cpp | 953 static bool _attrParseSvgNode(void* data, const char* key, const char* value) in _attrParseSvgNode() 1238 static bool _parseStyleAttr(void* data, const char* key, const char* value, bool style) in _parseStyleAttr() 1281 static bool _parseStyleAttr(void* data, const char* key, const char* value) in _parseStyleAttr() 1290 static bool _attrParseGNode(void* data, const char* key, const char* value) in _attrParseGNode() 1318 static bool _attrParseClipPathNode(void* data, const char* key, const char* value) in _attrParseClipPathNode() 1342 static bool _attrParseMaskNode(void* data, const char* key, const char* value) in _attrParseMaskNode() 1368 static bool _attrParseCssStyleNode(void* data, const char* key, const char* value) in _attrParseCssStyleNode() 1383 static bool _attrParseSymbolNode(void* data, const char* key, const char* value) in _attrParseSymbolNode() 1572 static bool _attrParsePathNode(void* data, const char* key, const char* value) in _attrParsePathNode() 1628 static bool _attrParseCircleNode(void* data, const char* key, const char* value) in _attrParseCircleNode() [all …]
|
D | tvgLottieInterpolator.cpp | 131 void LottieInterpolator::set(const char* key, Point& inTangent, Point& outTangent) in set()
|
D | tvgXmlParser.cpp | 310 const char *key, *keyEnd, *value, *valueEnd; in simpleXmlParseAttributes() local 474 char* key; in simpleXmlParseW3CAttribute() local
|
D | tvgRender.h | 61 Key key; //a reserved lock for the thread safety member 308 Key key; variable
|
/lvgl-latest/scripts/gdb/lvglgdb/ |
D | value.py | 10 def __getitem__(self, key): argument 17 def __getattr__(self, key): argument
|
/lvgl-latest/src/misc/ |
D | lv_lru.c | 28 void * key; member 136 lv_lru_res_t lv_lru_set(lv_lru_t * cache, const void * key, size_t key_length, void * value, size_t… in lv_lru_set() 188 lv_lru_res_t lv_lru_get(lv_lru_t * cache, const void * key, size_t key_size, void ** value) in lv_lru_get() 211 lv_lru_res_t lv_lru_remove(lv_lru_t * cache, const void * key, size_t key_size) in lv_lru_remove() 265 static uint32_t lv_lru_hash(lv_lru_t * cache, const void * key, uint32_t key_length) in lv_lru_hash() 300 static int lv_lru_cmp_keys(lv_lru_item_t * item, const void * key, uint32_t key_length) in lv_lru_cmp_keys()
|
D | lv_rb.c | 66 lv_rb_node_t * lv_rb_insert(lv_rb_t * tree, void * key) in lv_rb_insert() 103 lv_rb_node_t * lv_rb_find(lv_rb_t * tree, const void * key) in lv_rb_find() 210 void * lv_rb_remove(lv_rb_t * tree, const void * key) in lv_rb_remove() 242 bool lv_rb_drop(lv_rb_t * tree, const void * key) in lv_rb_drop()
|
D | lv_utils.c | 38 void * lv_utils_bsearch(const void * key, const void * base, size_t n, size_t size, in lv_utils_bsearch()
|
/lvgl-latest/src/misc/cache/ |
D | lv_cache.c | 81 lv_cache_entry_t * lv_cache_acquire(lv_cache_t * cache, const void * key, void * user_data) in lv_cache_acquire() 123 lv_cache_entry_t * lv_cache_add(lv_cache_t * cache, const void * key, void * user_data) in lv_cache_add() 147 lv_cache_entry_t * lv_cache_acquire_or_create(lv_cache_t * cache, const void * key, void * user_dat… in lv_cache_acquire_or_create() 209 void lv_cache_drop(lv_cache_t * cache, const void * key, void * user_data) in lv_cache_drop() 308 static void cache_drop_internal_no_lock(lv_cache_t * cache, const void * key, void * user_data) in cache_drop_internal_no_lock() 341 static lv_cache_entry_t * cache_add_internal_no_lock(lv_cache_t * cache, const void * key, void * u… in cache_add_internal_no_lock()
|
D | lv_cache_lru_rb.c | 146 static void * alloc_new_node(lv_lru_rb_t_ * lru, void * key, void * user_data) in alloc_new_node() 261 static lv_cache_entry_t * get_cb(lv_cache_t * cache, const void * key, void * user_data) in get_cb() 298 static lv_cache_entry_t * add_cb(lv_cache_t * cache, const void * key, void * user_data) in add_cb() 350 static void drop_cb(lv_cache_t * cache, const void * key, void * user_data) in drop_cb() 435 static lv_cache_reserve_cond_res_t reserve_cond_cb(lv_cache_t * cache, const void * key, size_t res… in reserve_cond_cb()
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_slider.c | 49 uint32_t key = LV_KEY_RIGHT; in test_slider_event_keys_right_and_up_increment_value_by_one() local 65 uint32_t key = LV_KEY_LEFT; in test_slider_event_keys_left_and_down_decrement_value_by_one() local 81 uint32_t key = LV_KEY_ENTER; in test_slider_event_invalid_key_should_not_change_values() local
|
D | test_calendar.c | 185 uint32_t key = LV_KEY_DOWN; in test_calendar_event_key_down_gui() local
|
D | test_spinbox.c | 163 uint32_t key = LV_KEY_UP; in test_spinbox_event_key() local
|
/lvgl-latest/src/drivers/uefi/ |
D | lv_uefi_indev_keyboard.c | 31 uint32_t key; /**< Key code*/ member 245 uint32_t key; in _simple_text_input_read() local 303 static uint32_t _key_from_uefi_key(const EFI_KEY_DATA * key) in _key_from_uefi_key()
|
/lvgl-latest/src/libs/expat/ |
D | siphash.h | 150 sip_tokey(struct sipkey *key, const void *src) { in sip_tokey() 194 sip24_init(struct siphash *H, const struct sipkey *key) { in sip24_init() 273 siphash24(const void *src, size_t len, const struct sipkey *key) { in siphash24()
|
/lvgl-latest/tests/src/test_cases/ |
D | test_gridnav.c | 11 uint32_t key; member
|
/lvgl-latest/src/libs/gif/ |
D | gifdec.c | 309 uint16_t key; in get_key() local 346 uint16_t key, clear_code, stop_code, curr_code; in read_image_data() local 485 int key; in new_table() local 554 uint16_t key, clear, stop; in read_image_data() local
|
/lvgl-latest/src/indev/ |
D | lv_indev.h | 64 uint32_t key; /**< For LV_INDEV_TYPE_KEYPAD the currently pressed key*/ member
|
/lvgl-latest/src/font/ |
D | lv_font_fmt_txt.c | 280 uint16_t key = rcp; in get_glyph_dsc_id() local 290 uint16_t key = rcp; in get_glyph_dsc_id() local
|