Lines Matching refs:match
79 match = re.match(patchLineFileMatchString, reportLine)
80 if match is not None:
88 rva = int (match.group(1), 16)
89 functionName = match.group(2)
90 sourceName = match.group(3)
91 if cmp (match.group(4), "") != 0 :
92 lineName = int (match.group(4))
138 match = re.match(patchLineFileMatchString, reportLine)
139 if match is not None:
144 if cmp (match.group(3), "") != 0 :
145 self.sourceName = match.group(3)
149 rva = int (match.group(2), 16)
150 lineName = int (match.group(1))
153 match = re.match(patchLineFileMatchStringFunc, reportLine)
154 if match is not None:
155 self.functionName = match.group(1)
201 match = re.match(pdbMatchString, newline)
202 if match is not None:
206 pdbName = match.group(1)