Home
last modified time | relevance | path

Searched refs:find_first_not_restricted_character (Results 1 - 8 of 8) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/public/headers_parser/
H A Dparse_using.py19 from text_tools import find_first_not_restricted_character namespace
26 start_of_name = find_first_not_restricted_character(" ", data, data.find("using ", start) + len("using "))
31 var_start = find_first_not_restricted_character(" ", data, data.find("=", start))
H A Dparse_arguments.py30 find_first_not_restricted_character,
76 ptr_end = find_first_not_restricted_character("*", data, ptr_start)
85 ref_end = find_first_not_restricted_character("&", data, ref_start)
107 type_name_start = find_first_not_restricted_character(" <*", data, type_name_end)
148 default_value_start = find_first_not_restricted_character(" ", arg, equally_pos + 1)
H A Dparse_struct.py24 find_first_not_restricted_character,
48 start_of_name = find_first_not_restricted_character(" ", data, check + len("struct "))
H A Dparse_define.py19 from text_tools import find_first_not_restricted_character, find_scope_borders, find_first_of_characters, smart_split_by namespace
66 start_of_name = find_first_not_restricted_character(" \n", data, data.find("#define", start) + len("#define"))
H A Dparse_class.py23 find_first_not_restricted_character,
67 start = find_first_not_restricted_character(" ", data, start)
H A Dparse_method.py25 find_first_not_restricted_character,
138 current_pos = find_first_not_restricted_character(" \n", data, start)
146 current_pos = find_first_not_restricted_character(", \n", data, parenthese_close + 1)
H A Dparse_enum.py22 find_first_not_restricted_character,
107 start_of_name = find_first_not_restricted_character(" ", data, start_of_name + len("enum class"))
H A Dtext_tools.py27 def find_first_not_restricted_character(restricted: str, data: str, pos: int = 0, pos_end: int = MAX_LEN) -> int: function
119 segment_start = find_first_not_restricted_character(f"{delim} \n", data, next_delim)

Completed in 3 milliseconds