Home | History | Annotate | Download | only in scripts

Lines Matching refs:comps

15         comps = filename.split('/')
16 if comps[0] == '': comps[0] = '/'
17 if comps[len(comps)-1] == '': del comps[len(comps)-1]
18 total, d = store(size, comps, total, d)
25 def store(size, comps, total, d):
26 if comps == []:
28 if comps[0] not in d:
29 d[comps[0]] = None, {}
30 t1, d1 = d[comps[0]]
31 d[comps[0]] = store(size, comps[1:], t1, d1)