Lines Matching refs:str
34 def normalize_type(cls, typ: str) -> str:
40 def __init__(self, decl: str) -> None:
45 self.type = self.normalize_type(m.group('type')) #type: str
46 self.name = m.group('name') #type: Optional[str]
47 self.suffix = m.group('suffix') if m.group('suffix') else '' #type: str
58 filename: str,
60 qualifiers: Iterable[str],
61 return_type: str,
62 name: str,
63 arguments: List[str]) -> None:
82 def read_logical_lines(filename: str) -> Iterator[Tuple[int, str]]:
113 def read_function_declarations(functions: Dict[str, FunctionInfo],
114 filename: str) -> None: