Lines Matching +full:- +full:r
31 /* clang-format off */
91 /* Renamed config backwards-compatibility */
100 /*----------------------------------
102 -----------------------------------*/
116 if '/*--END OF LV_CONF_H--*/' in line: break
119 …r = re.search(r'^([\s]*)#[\s]*(undef|define)[\s]+([^\s]+).*$', line) # \s means any white space … variable
121 if r:
122 indent = r[1]
124 name = r[3]
125 …name = re.sub(r'\(.*?\)', '', name, 1) #remove parentheses from macros. E.g. MY_FUNC(5) -> MY_F…
127 line = re.sub(r'[\s]*', '', line, 1)
131 is_one = re.search(r'#[\s]*define[\s]*[A-Z0-9_]+[\s]+1([\s]*$|[\s]+)', line)
171 r'''
173 /*----------------------------------
175 -----------------------------------*/