Lines Matching full:if
16 # Checks to see if a c line is part of the lines we have to exclude (macros)
18 if (line.startswith("#") and not line.startswith("#include")):
20 if (line.startswith("#include \"deprecated.h\"")):
22 if (line.startswith(" CEED_QFUNCTION_ATTR")):
24 if (line.startswith(" static const char")):
26 if (line.endswith('\\\n')):
28 if ("CeedErrorImpl" in line):
30 if (r'const char *, ...);' in line):
32 if (line.startswith("CEED_EXTERN const char *const")):
34 if (ceed_version_ge.match(line)):
57 lines += [line.strip() for line in f if is_valid_line(line)]
62 if re.search("ceed-f32.h", line) is not None:
75 lines = [line for line in lines if not line.startswith("#include")]
107 if __name__ == "__main__":