Lines Matching full:txt
33 * @param txt a '\0' terminated string
34 * @param len length of 'txt' in bytes
45 uint32_t lv_text_get_next_line(const char * txt, uint32_t len, const lv_font_t * font, int32_t lett…
58 …* @param txt string to modify, must be '\0' terminated and should point to a heap or stack frame, …
63 void lv_text_cut(char * txt, uint32_t pos, uint32_t len);
76 * @param txt pointer to '\0' terminated string
79 * @param ofs start index in 'txt' where to start.
80 * After the call it will point to the next encoded char in 'txt'.
81 * NULL to use txt[0] as index
83 void lv_text_encoded_letter_next_2(const char * txt, uint32_t * letter, uint32_t * letter_next, uin…
200 * @param txt pointer to a character in a string
203 extern uint8_t (*const lv_text_encoded_size)(const char * txt);
221 * @param txt pointer to '\0' terminated string
222 * @param i_start start index in 'txt' where to start.
223 * After the call it will point to the next encoded char in 'txt'.
224 * NULL to use txt[0] as index
227 extern uint32_t (*const lv_text_encoded_next)(const char * txt, uint32_t * i_start);
232 * @param txt pointer to '\0' terminated string
233 * @param i_start index in 'txt' where to start. After the call it will point to the previous
234 * encoded char in 'txt'.
238 extern uint32_t (*const lv_text_encoded_prev)(const char * txt, uint32_t * i_start);
243 * @param txt a '\0' terminated UTF-8 string
247 extern uint32_t (*const lv_text_encoded_get_byte_id)(const char * txt, uint32_t utf8_id);
252 * @param txt a '\0' terminated UTF-8 string
256 extern uint32_t (*const lv_text_encoded_get_char_id)(const char * txt, uint32_t byte_id);
261 * @param txt a '\0' terminated char string
264 extern uint32_t (*const lv_text_get_encoded_length)(const char * txt);