Home
last modified time | relevance | path

Searched refs:input_string (Results 1 – 4 of 4) sorted by relevance

/tools/test/connectivity/acts_tests/acts_contrib/test_utils/tel/
Dtel_test_utils.py1214 def phone_number_formatter(input_string, formatter=None): argument
1230 if not input_string:
1234 input_string = input_string.replace(" ", "").replace("-", "").replace(
1238 if (len(input_string) == 13
1239 and (input_string[0:3] == "+81" or input_string[0:3] == "+82")):
1240 input_string = "0" + input_string[3:]
1241 return input_string
1244 return input_string
1247 input_string = input_string.lstrip("0")
1250 if (len(input_string) == PHONE_NUMBER_STRING_FORMAT_11_DIGIT
[all …]
Dtel_lookup_tables.py71 def connection_type_from_type_string(input_string): argument
72 if input_string in _ConnectionTables.connection_type_tbl:
73 return _ConnectionTables.connection_type_tbl[input_string]
/tools/acloud/setup/
Dgcp_setup_runner.py123 def _InputIsEmpty(input_string): argument
135 if input_string is None:
137 if input_string == "":
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/cellular/performance/
Dshannon_log_parser.py45 def _string_to_float(input_string): argument
48 tmp = float(input_string)
50 print(input_string)