Searched refs:ext (Results 1 – 11 of 11) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgLoader.cpp | 180 auto ext = path.substr(path.find_last_of(".") + 1); in _findByPath() local 181 if (!ext.compare("tvg")) return _find(FileType::Tvg); in _findByPath() 182 if (!ext.compare("svg")) return _find(FileType::Svg); in _findByPath() 183 if (!ext.compare("json")) return _find(FileType::Lottie); in _findByPath() 184 if (!ext.compare("png")) return _find(FileType::Png); in _findByPath() 185 if (!ext.compare("jpg")) return _find(FileType::Jpg); in _findByPath() 186 if (!ext.compare("webp")) return _find(FileType::Webp); in _findByPath() 187 if (!ext.compare("ttf") || !ext.compare("ttc")) return _find(FileType::Ttf); in _findByPath() 188 if (!ext.compare("otf") || !ext.compare("otc")) return _find(FileType::Ttf); in _findByPath() 302 auto ext = path.substr(path.find_last_of(".") + 1); in loader() local [all …]
|
D | tvgSaver.cpp | 98 auto ext = path.substr(path.find_last_of(".") + 1); in _find() local 99 if (!ext.compare("tvg")) { in _find() 101 } else if (!ext.compare("gif")) { in _find()
|
/lvgl-latest/scripts/ |
D | image_viewer.py | 14 name, ext = os.path.splitext(args.file) variable 15 if ext != ".bin":
|
D | LVGLImage.py | 735 def _check_ext(self, filename: str, ext): argument 736 if not filename.lower().endswith(ext): 1278 def _replace_ext(self, input, ext): argument 1283 output = name + ext
|
/lvgl-latest/scripts/gen_json/ |
D | get_sdl2.py | 48 for ext in ('.h', '.dll', '.lib'): 49 if not z_item.filename.endswith(ext):
|
D | pycparser_monkeypatch.py | 642 for item in self.ext[:]: 670 self.ext.remove(item) 673 self.ext.remove(decl) 675 self.ext.remove(td) 679 self.ext.remove(decl) 680 self.ext.remove(item) 697 for item in self.ext:
|
/lvgl-latest/src/libs/tjpgd/ |
D | lv_tjpgd.c | 108 const char * ext = lv_fs_get_ext(fn); in decoder_info() local 109 if((lv_strcmp(ext, "jpg") == 0) || (lv_strcmp(ext, "jpeg") == 0)) { in decoder_info()
|
/lvgl-latest/src/others/xml/ |
D | lv_xml_component.c | 133 const char * ext = lv_fs_get_ext(filename); in lv_xml_component_register_from_file() local 134 filename[lv_strlen(filename) - lv_strlen(ext) - 1] = '\0'; /*Trim the extension*/ in lv_xml_component_register_from_file()
|
/lvgl-latest/src/libs/libjpeg_turbo/ |
D | lv_libjpeg_turbo.c | 124 const char * ext = lv_fs_get_ext(src); in decoder_info() local 125 bool is_jpeg_ext = (lv_strcmp(ext, "jpg") == 0) in decoder_info() 126 || (lv_strcmp(ext, "jpeg") == 0); in decoder_info()
|
/lvgl-latest/docs/ |
D | CODING_STYLE.rst | 313 lv_label_ext_t * ext = lv_obj_get_ext(label); 316 if(text == ext->txt || text == NULL) { /* Bracket of statements starts on same line */
|
D | Doxyfile | 280 # using this tag. The format is ext=language, where ext is a file extension, and 937 # *.ext= (so without naming a filter).
|