Lines Matching refs:codeparsercache
172 codeparsercache = CodeParserCache() variable
175 codeparsercache.init_cache(d)
178 codeparsercache.save_extras()
181 codeparsercache.save_merge()
298 if h in codeparsercache.pythoncache:
299 self.references = set(codeparsercache.pythoncache[h].refs)
300 self.execs = set(codeparsercache.pythoncache[h].execs)
302 for i in codeparsercache.pythoncache[h].contains:
303 self.contains[i] = set(codeparsercache.pythoncache[h].contains[i])
306 if h in codeparsercache.pythoncacheextras:
307 self.references = set(codeparsercache.pythoncacheextras[h].refs)
308 self.execs = set(codeparsercache.pythoncacheextras[h].execs)
310 for i in codeparsercache.pythoncacheextras[h].contains:
311 self.contains[i] = set(codeparsercache.pythoncacheextras[h].contains[i])
328 …codeparsercache.pythoncacheextras[h] = codeparsercache.newPythonCacheLine(self.references, self.ex…
350 if h in codeparsercache.shellcache:
351 self.execs = set(codeparsercache.shellcache[h].execs)
354 if h in codeparsercache.shellcacheextras:
355 self.execs = set(codeparsercache.shellcacheextras[h].execs)
364 codeparsercache.shellcacheextras[h] = codeparsercache.newShellCacheLine(self.execs)