Lines Matching refs:dsp
16 - The MSVC .dsp file for the extension. The .c source file names
85 dsp = win32api.GetProfileVal(moduleName, "dsp", "", mapFileName)
86 if dsp=="":
90 dsp = win32api.ExpandEnvironmentStrings(dsp)
93 if not os.path.isabs(dsp):
94 dsp = os.path.join( os.path.split(mapFileName)[0], dsp)
96 sourceFiles = parse_dsp(dsp)
102 os.environ['dsp_path'] = os.path.split(dsp)[0]
127 def parse_dsp(dsp):
128 # print "Processing", dsp
131 dsp_path, dsp_name = os.path.split(dsp)
133 with open(dsp, "r") as fp:
136 sys.stderr.write("%s: %s\n" % (dsp, msg))