Lines Matching refs:matches
707 matches = re.search(regex, line)
708 if matches:
709 name = matches.group(1)
712 matches = re.search(regex, line)
713 if matches:
714 package_name = matches.group(1)
737 matches = re.search(ANDROID_NAME_REGEX, line)
738 if matches:
739 name = matches.group(1)
742 matches = re.search(ANDROID_PROTECTION_LEVEL_REGEX, line)
743 if matches:
744 level = int(matches.group(1), 16)