Home
last modified time | relevance | path

Searched defs:texi (Results 1 – 2 of 2) sorted by relevance

/netbsd/external/gpl3/gcc.old/dist/contrib/
H A Dcheck-params-in-docs.py51 texi = ([x.strip() for x in open(args.texi_file).readlines()]) variable
52 texi = dropwhile(lambda x: not 'item --param' in x, texi) variable
53 texi = takewhile(lambda x: not '@node Instrumentation Options' in x, texi) variable
54 texi = list(texi)[1:] variable
57 texi = [x[len(token):] for x in texi if x.startswith(token)] variable
/netbsd/external/gpl3/gcc/dist/contrib/
H A Dcheck-params-in-docs.py55 texi = ([x.strip() for x in open(args.texi_file).readlines()]) variable
56 texi = dropwhile(lambda x: 'item --param' not in x, texi) variable
57 texi = takewhile(lambda x: '@node Instrumentation Options' not in x, texi) variable
58 texi = list(texi)[1:] variable