D | test_framework_instrumentation_event.py | 38 def NormalizeNameCategory(name, category): argument 50 if set(ILLEGAL_CHARS) & set(category + name): 51 category = re.sub('|'.join(ILLEGAL_CHARS), '_', category) 54 return name, category 85 category = None variable in TestFrameworkInstrumentationEvent 98 def __init__(self, name, category): argument 99 self.name, self.category = NormalizeNameCategory(name, category) 101 if (name, category) != (self.name, self.category): 104 'Replacing them as "_"', name, category) 106 def Match(self, name, category): argument [all …]
|