Home
last modified time | relevance | path

Searched refs:self (Results 1 – 1 of 1) sorted by relevance

/pdk/build/
Dprepare_pdk_tree.py30 def __init__(self): argument
32 self.current = 0
33 self.patterns = [re.compile('path=\"([^\"]*)\".*groups=\"([^\"]*)\"'), \
36 def getAttribs(self, line): argument
38 m = self.patterns[self.current].search(line)
42 notCurrent = 1 - self.current
43 mOther = self.patterns[notCurrent].search(line)
46 self.current = notCurrent
49 if (self.current == 0):