Lines Matching refs:name
253 def codegen(name, map, encodingname, comments=1):
297 ''' % (encodingname, name, suffix, suffix)]
319 name=%r,
358 def pymap(name,map,pyfile,encodingname,comments=1):
360 code = codegen(name,map,encodingname,comments)
364 def marshalmap(name,map,marshalfile):
379 name = os.path.split(mapname)[1]
380 name = name.replace('-','_')
381 name = name.split('.')[0]
382 name = name.lower()
383 name = nameprefix + name
384 codefile = name + '.py'
385 marshalfile = name + '.mapping'
394 pymap(mappathname, map, dirprefix + codefile,name,comments)
406 name = mapname[:-len('.mapping')]
407 codefile = name + '.py'
416 pymap(mapname, map, dirprefix + codefile,name,comments)