Lines Matching full:name
79 * name: the match itself.
81 def __init__(self, filename, line, line_no, pos, name): argument
87 self.name = name
145 * symbol_name: the name of the symbol.
178 .format(self.match.filename, self.match.line_no, self.match.name)
187 self.match.name,
199 * match: the Match object of the MBED|PSA name in question.
208 .format(self.match.filename, self.match.line_no, self.match.name)
216 .format(self.match.filename, self.match.line_no, self.match.name)
291 identifiers_justname = [x.name for x in identifiers]
295 if macro.name not in identifiers_justname:
442 for name in mbed_regex.finditer(line):
447 name.span(0),
448 name.group(0)))
783 Representation of the core name checking operation performed by this script.
840 if symbol == identifier_match.name:
864 if not re.search(check_pattern, item_match.name):
867 if re.search(r".*__.*", item_match.name):
888 match.name
900 found = name_match.name in all_caps_names
906 if "MBEDTLS_PSA_ACCEL_" in name_match.name:
907 found = name_match.name.replace(
911 if not found and not typo_exclusion.search(name_match.name):
917 def output_check_result(self, name, problems): argument
923 * name: the name of the test
927 self.log.info("{}: FAIL\n".format(name))
931 self.log.info("{}: PASS".format(name))