Lines Matching refs:sources
136 self.sources={}
140 self.sources[pkg]={}
144 self.sources[pkg][lang]={}
145 self.sources[pkg][lang]['srcs']=[]
304 if pkg not in self.sources: return
305 self.sources[pkg][lang]['srcs'].append(relpfile)
306 self.sources[pkg][lang][relpfile] = []
311 self.sources[pkg][lang][relpfile].append(os.path.join(rpath,depObj))
863 if not pkg in self.sources: continue
866 for lang in LANGS: allSrcs+=self.sources[pkg][lang]['srcs']
983 return self.sources[pkg]
1038 execname if exfile in self.sources[pkg][lang]['srcs'] else fullex)
1040 if exfile in self.sources[pkg][lang]:
1041 for dep in self.sources[pkg][lang][exfile]: