Lines Matching refs:fp
143 fp = open(parent) variable
144 for line in fp.readlines():
151 fp.close()
163 def printHeader(fp, flatMenu = False, letters = None, altMenu = None): argument
176 sep='\n', file=fp)
185 '</a>', file=fp)
188 print(' <center>\n<div id="container">', file=fp)
194 '</a></b> ', file=fp)
195 print(' </div>\n</center>', file=fp)
202 sep='\n', file=fp)
204 def printFooter(fp, flatMenu = False): argument
205 print(' </div> <!-- End containerurl -->', file=fp)
207 print(' <script type="text/javascript">initiate();</script>', file=fp)
210 sep='\n', file=fp)
213 def addMenuLink(key, feature, fp): argument
219 sep='\n', file=fp)
222 def beginLetterSection(letter, fp): argument
226 sep='\n', file=fp)
229 def endLetterSection(opentable, fp): argument
234 sep='\n', file=fp)
255 def genDict(dict, title, whichKeys, fp): argument
258 sep='\n', file=fp)
278 endLetterSection(opentable, fp)
280 beginLetterSection(c, fp)
283 addMenuLink(key, dict[key], fp)
284 endLetterSection(opentable, fp)
288 sep='\n', file=fp)
293 fp = open(accordfilename, 'w') variable
294 printHeader(fp, flatMenu = False, altMenu = flatfilename)
296 genDict(refIndex, 'EGL Entry Points', 'all', fp)
298 printFooter(fp, flatMenu = False)
299 fp.close()
304 fp = open(flatfilename, 'w') variable
311 printHeader(fp, flatMenu = True, letters = letters, altMenu = accordfilename)
313 genDict(refIndex, 'EGL Entry Points', 'all', fp)
315 printFooter(fp, flatMenu = True)
316 fp.close()