Lines Matching defs:str
27 def find_first_not_restricted_character(restricted: str, data: str, pos: int = 0, pos_end: int = MA…
34 def rfind_first_not_restricted_character(restricted: str, data: str, pos: int, pos_end: int = 0) ->…
45 def skip_rstring(data: str, pos: int = 0, pos_end: int = MAX_LEN) -> int:
66 def skip_string(data: str, pos: int = 0, pos_end: int = MAX_LEN) -> int:
83 def find_first_of_characters(characters: str, data: str, pos: int = 0, pos_end: int = MAX_LEN) -> i…
96 def rfind_first_of_characters(characters: str, data: str, pos: int, pos_end: int = 0) -> int:
107 def is_operator(data: str, current_pos: int) -> bool:
113 def find_scope_borders(data: str, start: int = 0, opening_bracket: str = "{") -> Tuple[int, int]:
156 def smart_split_by(data: str, delim: str = ",") -> list:
177 def smart_find_first_of_characters(characters: str, data: str, pos: int) -> int:
200 def check_cpp_name(data: str) -> bool: