Home
last modified time | relevance | path

Searched refs:ClangFunction (Results 1 – 2 of 2) sorted by relevance

/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/util/
H A D_clang.py136 class ClangFunction(Generic[_T, _U]): class
206 def get_clang_function(name: str, arg_types: Sequence[type[_T]]) -> ClangFunction[_T, ctypes.c_uint…
210 …ng_function(name: str, arg_types: Sequence[type[_T]], ret_type: type[_U]) -> ClangFunction[_T, _U]:
213 … str, arg_types: Sequence[type[_T]], ret_type: Optional[type[_U]] = None) -> ClangFunction[_T, _U]:
250 return ClangFunction(TYPE_CAST(CTypesCallable[_T, _U], func))
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/
H A D_typing.py130 from .util._clang import CXTranslationUnit, ClangFunction