Lines Matching refs:matches
487 matches = re.search(regex, line)
488 if matches:
489 name = matches.group(1)
492 matches = re.search(regex, line)
493 if matches:
494 package_name = matches.group(1)
517 matches = re.search(ANDROID_NAME_REGEX, line)
518 if matches:
519 name = matches.group(1)
522 matches = re.search(ANDROID_PROTECTION_LEVEL_REGEX, line)
523 if matches:
524 level = int(matches.group(1), 16)