Lines Matching full:line
108 for line in fin.read().splitlines():
110 if '#define LV_CONF_H' in line:
116 if '/*--END OF LV_CONF_H--*/' in line: break
118 #Is there a #define in this line?
119 …r = re.search(r'^([\s]*)#[\s]*(undef|define)[\s]+([^\s]+).*$', line) # \s means any white space …
127 line = re.sub(r'[\s]*', '', line, 1) variable
131 is_one = re.search(r'#[\s]*define[\s]*[A-Z0-9_]+[\s]+1([\s]*$|[\s]+)', line)
146 f'{indent} {line}\n'
160 f'{indent} {line}\n'
165 elif re.search('^ *typedef .*;.*$', line):
168 fout.write(f'{line}\n')