Lines Matching refs:identifiers
7 This script confirms that the naming of all symbols and identifiers in Mbed TLS
25 - All macros, constants, and identifiers (function names, struct names, etc)
259 identifiers, excluded_identifiers = self.parse_identifiers([
279 identifiers_justname = [x.name for x in identifiers]
294 self.log.debug(" {:4} Identifiers".format(len(identifiers)))
301 "identifiers": identifiers,
568 def parse_identifiers_in_file(self, header_file, identifiers):
574 Append found matches to the list ``identifiers``.
580 # when identifiers are formatted and spread across multiple
622 identifiers.append(Match(
640 Returns: a Tuple of two Lists of Match objects with identifiers.
641 * included_identifiers: A List of Match objects with identifiers from
643 * excluded_identifiers: A List of Match objects with identifiers from
650 self.log.debug("Looking for included identifiers in {} files".format \
794 ("identifiers", IDENTIFIER_PATTERN)
822 all_identifiers = self.parse_result["identifiers"] + \
929 "This script confirms that the naming of all symbols and identifiers "