Lines Matching refs:path
60 defaultMapName = os.path.join( os.path.split(sys.argv[0])[0], "extensions_win32.ini")
61 if not os.path.isfile(defaultMapName):
91 # If the path to the .DSP file is not absolute, assume it is relative
93 if not os.path.isabs(dsp):
94 dsp = os.path.join( os.path.split(mapFileName)[0], dsp)
101 # Put the path to the DSP into the environment so entries can reference it.
102 os.environ['dsp_path'] = os.path.split(dsp)[0]
103 os.environ['ini_path'] = os.path.split(mapFileName)[0]
131 dsp_path, dsp_name = os.path.split(dsp)
141 if os.path.splitext(fields[1])[1].lower() in ['.cpp', '.c']:
142 ret.append( win32api.GetFullPathName(os.path.join(dsp_path, fields[1] ) ) )