Searched refs:find_first_not_restricted_character (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/public/headers_parser/ |
H A D | parse_using.py | 19 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 D | parse_arguments.py | 30 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 D | parse_struct.py | 24 find_first_not_restricted_character, 48 start_of_name = find_first_not_restricted_character(" ", data, check + len("struct "))
|
H A D | parse_define.py | 19 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 D | parse_class.py | 23 find_first_not_restricted_character, 67 start = find_first_not_restricted_character(" ", data, start)
|
H A D | parse_method.py | 25 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 D | parse_enum.py | 22 find_first_not_restricted_character, 107 start_of_name = find_first_not_restricted_character(" ", data, start_of_name + len("enum class"))
|
H A D | text_tools.py | 27 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