Lines Matching refs:match
100 match = pattern.match(curr_ver)
101 if not match:
103 curr_rev = int(match.group(1))
240 match = cls._DYNAMIC_SECTION_NEEDED_PATTERN.match(line)
241 if match:
242 dt_needed.append(match.group(1))
245 match = cls._DYNAMIC_SECTION_SONAME_PATTERN.match(line)
246 if match:
247 dt_soname = match.group(1)
320 match = cls._SYMBOL_ENTRY_PATTERN.match(line)
321 if match:
322 key = match.group(1)
323 value = cls._SYMBOL_ENTRY_PAREN_PATTERN.sub('', match.group(2))