Home
last modified time | relevance | path

Searched refs:FileMatch (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dpatching.py41 class FileMatch: class
140 return (klass.gen_patches is not FileMatch.gen_patches
141 or klass.replacement is not FileMatch.replacement)
210 class FullMatch(FileMatch):
216 def all_subclasses(c: Type[FileMatch]) -> Iterable[Type[FileMatch]]: argument
221 def match_class_dict() -> Dict[str, Type[FileMatch]]:
222 d = dict((t.__name__, t) for t in all_subclasses(FileMatch))
225 def names(matches: Iterable[FileMatch]) -> Iterable[str]: argument
266 self.match_index: Dict[Type[Any], List[FileMatch]] = {}
267 self.match_name_index: Dict[Tuple[Type[Any], str, str], Optional[FileMatch]] = {}
[all …]
H A Dtest_patching.py9 from .patching import FileInfo, FileMatch, Patch, FileList
12 class BasicPattern(FileMatch):
49 class Function(FileMatch):
53 class Statement(FileMatch):
H A Dqom_macros.py26 class DefineDirective(FileMatch):
30 class ExpressionDefine(FileMatch):
96 class TypedefMatch(FileMatch):
243 class TypeCheckMacro(FileMatch):
438 class InterfaceCheckMacro(FileMatch):
467 class TypeDeclaration(FileMatch):
574 class TypeDeclarationFixup(FileMatch):
607 conflicting: List[FileMatch] = []
690 class TrivialClassStruct(FileMatch):
695 class DeclareTypeName(FileMatch):
[all …]
H A Dqom_type_info.py35 class ArrayItem(FileMatch):
38 class ArrayInitializer(FileMatch):
45 class FieldInitializer(FileMatch):
64 class TypeDefinition(FileMatch):
488 class AddDeclareVoidInstanceType(FileMatch):
806 class TypeInitMacro(FileMatch):
819 class StaticVoidFunction(FileMatch):
845 def find_containing_func(m: FileMatch) -> Optional['StaticVoidFunction']: argument
852 class TypeRegisterStaticCall(FileMatch):
899 class TypeRegisterCall(FileMatch):
[all …]