Home
last modified time | relevance | path

Searched refs:find_matches (Results 1 – 3 of 3) sorted by relevance

/qemu/scripts/codeconverter/codeconverter/
H A Dqom_macros.py609 conflicting.extend(chain(self.file.find_matches(DefineDirective, uppercase),
610 … self.file.find_matches(DeclareInterfaceChecker, uppercase, 'uppercase'),
611 self.file.find_matches(DeclareClassType, uppercase, 'uppercase'),
612 … self.file.find_matches(DeclareInstanceType, uppercase, 'uppercase')))
615 …conflicting.extend(o for o in chain(self.allfiles.find_matches(DeclareInstanceChecker, uppercase, …
616 … self.allfiles.find_matches(DeclareClassCheckers, uppercase, 'uppercase'),
617 … self.allfiles.find_matches(DeclareInterfaceChecker, uppercase, 'uppercase'),
618 self.allfiles.find_matches(DefineDirective, uppercase))
758 yield from files.find_matches(c, name=name, group=group)
H A Dqom_type_info.py534 typedefs = [(t,self.allfiles.find_matches(SimpleTypedefMatch, t))
559 for m in self.allfiles.find_matches(t, uppercase, 'uppercase')]
614 typedefs = [(t,self.allfiles.find_matches(SimpleTypedefMatch, t))
639 for m in self.allfiles.find_matches(t, uppercase, 'uppercase')]
H A Dpatching.py277 def find_matches(self, t: Type[T], name: str, group: str='name') -> List[T]: member in RegexpScanner
290 l = self.find_matches(t, name, group)