Home
last modified time | relevance | path

Searched refs:find_first_of_characters (Results 1 - 9 of 9) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/public/headers_parser/
H A Dline_iterator.py20 from text_tools import find_first_of_characters namespace
29 self.end = find_first_of_characters("\n", self.data, start)
33 self.next_parenthese = find_first_of_characters("(", self.data, start)
34 self.next_semicolon = find_first_of_characters(";", self.data, start)
35 self.next_equal = find_first_of_characters("=", self.data, start)
45 self.end = find_first_of_characters("\n", self.data, self.end)
51 self.end = find_first_of_characters("\n", self.data, self.start)
54 self.next_parenthese = find_first_of_characters("(", self.data, self.start)
55 self.next_semicolon = find_first_of_characters(";", self.data, self.start)
56 self.next_equal = find_first_of_characters("
[all...]
H A Dparse_method.py21 find_first_of_characters,
39 next_semicolon = find_first_of_characters(";", data, start) # <--- for declaration
55 colon_pos = find_first_of_characters(":", data, end_of_args, end_of_function_declaration)
85 start_of_args = find_first_of_characters("(", data, start)
88 start_of_args = find_first_of_characters("(", data, start_of_args + 1)
91 start_of_args > find_first_of_characters(";", data, start)
123 parenthese_open = find_first_of_characters("{(", init, 0)
139 parethese_open = find_first_of_characters("{(", data, current_pos)
147 parethese_open = find_first_of_characters("{(", data, current_pos)
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
29 end_of_line = find_first_of_characters("\n", data, start)
36 backslash_pos = find_first_of_characters("\\", data, pos)
67 end_of_name = find_first_of_characters(" \n({[", data, start_of_name)
H A Dparse_class.py22 find_first_of_characters,
41 colon_pos = find_first_of_characters(":", data, start, start_of_body)
45 end_of_name = find_first_of_characters(" :{", data, start_of_name)
H A Dparse_struct.py26 find_first_of_characters,
49 end_of_name = find_first_of_characters(" ;{\n", data, start_of_name)
H A Dprepare_header.py20 from text_tools import find_first_of_characters, find_scope_borders namespace
64 include_start = find_first_of_characters('"<', data, current_pos)
H A Dparse_enum.py21 find_first_of_characters,
50 if find_first_of_characters("1234567890-+", value, 0) != len(value):
108 end_of_name = find_first_of_characters(" ;{\n", data, start_of_name)
H A Dtext_tools.py45 def find_first_of_characters(characters: str, data: str, pos: int = 0, pos_end: int = MAX_LEN) -> int: function
76 opening_pos = find_first_of_characters("({<[", data, start)
150 return find_first_of_characters(forbidden_chars, data) == len(data)
H A Dparse_arguments.py29 find_first_of_characters,
100 type_name_end = find_first_of_characters(" <([{&*", data, type_name_start)
108 type_name_end = find_first_of_characters(" <(*", data, type_name_start)

Completed in 3 milliseconds