Lines Matching refs:start
27 def parse_friend_class(data: str, start: int) -> Tuple[int, str]:
28 name_start = data.find("friend class ", start) + len("friend class ")
34 def parse_class(data: str, start: int = 0, namespace: str = "", parent_class_name: str = "") -> Tuple[int, Dict]:
36 start_of_body = smart_find_first_of_characters("{", data, start)
41 colon_pos = find_first_of_characters(":", data, start, start_of_body)
44 start_of_name = data.find("class ", start) + len("class ")
66 def parse_template_prefix(data: str, start: int) -> Tuple[int, str]:
67 start = find_first_not_restricted_character(" ", data, start)
68 if data[start : start + len("template")] != "template":
71 start_of_template_args, end_of_template_args = find_scope_borders(data, start, "<")