Searched refs:strip (Results 1 – 25 of 92) sorted by relevance
1234
/tools/metalava/src/test/java/com/android/tools/metalava/ |
D | ConvertTest.kt | 93 fun `Test convert new with compat mode and api strip`() { in Test convert new with compat mode and api strip() 98 strip = true, in Test convert new with compat mode and api strip() 230 fun `Test convert new without compat mode and no strip`() { in Test convert new without compat mode and no strip() 235 strip = false, in Test convert new without compat mode and no strip() 518 fun `Test convert new to v2 without compat mode and no strip`() { in Test convert new to v2 without compat mode and no strip() 523 strip = false, in Test convert new to v2 without compat mode and no strip() 587 fun `Test convert new to v1 signatures with compat mode and no strip`() { in Test convert new to v1 signatures with compat mode and no strip() 594 strip = false, in Test convert new to v1 signatures with compat mode and no strip() 661 strip = false, in Test convert v2 to v1() 723 strip = false, in Test convert v1 to v2() [all …]
|
/tools/test/connectivity/acts/framework/acts/controllers/spirent_lib/ |
D | gss6450.py | 81 filename = resp_raw.split(':')[-1].strip(' ') 94 description = resp_raw.split('-d')[-1].strip(' ') 111 location = resp_raw.split('-i')[-1].strip(' ') 129 mode = resp_raw.split('-m')[-1].strip(' ') 142 batterylevel = float(resp_raw.split('-l')[-1].strip(' ')) 155 voltageout = resp_raw.split('-v')[-1].strip(' ') 171 resp_num = resp_raw.split('-M')[-1].strip(' ') 194 resp_str = resp_raw.split('-a')[-1].strip(' ') 208 resp_str = resp_raw.split('-e')[-1].strip(' ') 225 offset_tmp = float(resp_raw.split('-o')[-1].strip(' '))
|
/tools/asuite/atest-py2/test_finders/ |
D | test_finder_utils.py | 364 out_dirs.append(os.path.dirname(out_file.strip())) 559 apk = apk_target.split(_XML_PUSH_DELIM, 1)[0].strip() 603 name = tag.attrib[_XML_NAME].strip() 604 value = tag.attrib[_XML_VALUE].strip() 622 fqcn = class_attr.attrib['class'].strip() 647 target = line.strip() 654 targets |= _get_vts_push_group_targets(line.strip(), 657 sanitized_target = target.split(_XML_PUSH_DELIM, 1)[0].strip() 673 value = tag.attrib[_XML_VALUE].strip() 674 name = tag.attrib[_XML_NAME].strip() [all …]
|
/tools/asuite/atest/test_finders/ |
D | test_finder_utils.py | 423 out_dirs.append(os.path.dirname(out_file.strip())) 629 apk = apk_target.split(_XML_PUSH_DELIM, 1)[0].strip() 673 name = tag.attrib[_XML_NAME].strip() 674 value = tag.attrib[_XML_VALUE].strip() 691 fqcn = class_attr.attrib['class'].strip() 718 target = line.strip() 725 targets |= _get_vts_push_group_targets(line.strip(), 728 sanitized_target = target.split(_XML_PUSH_DELIM, 1)[0].strip() 744 value = tag.attrib[_XML_VALUE].strip() 745 name = tag.attrib[_XML_NAME].strip() [all …]
|
/tools/repohooks/rh/ |
D | git.py | 35 branch = result.stdout.strip() 40 return result.stdout.strip() 51 current_branch = result.stdout.strip().replace('refs/heads/', '') 58 full_upstream = result.stdout.strip() 64 remote = result.stdout.strip() 75 return result.stdout.strip() 146 diff_lines = diff.strip().splitlines()
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/ |
D | wifi_power_test_utils.py | 54 gE_old = line.strip('\n') 55 gEDTIM_old = line.strip(ENABLED_MODULATED_DTIM).strip('\n') 57 gM_old = line.strip('\n') 58 gMDTIM_old = line.strip(MAX_MODULATED_DTIM).strip('\n')
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/gnss/ |
D | gnss_test_utils.py | 876 ant_top4_cn = float(line.split(":")[-1].strip()) 878 ant_cn = float(line.split(":")[-1].strip()) 880 base_top4_cn = float(line.split(":")[-1].strip()) 882 base_cn = float(line.split(":")[-1].strip()) 884 l5flag = line.split(":")[-1].strip() 886 track_lat = float(line.split(":")[-1].strip()) 888 track_long = float(line.split(":")[-1].strip()) 890 track_utc = line.split("Time:")[-1].strip() 953 ttff_ant_cn = float(ttff_log[18].strip("]")) 954 ttff_base_cn = float(ttff_log[25].strip("]")) [all …]
|
/tools/security/gdb/ |
D | parameters_extract.py | 135 func_name = line.strip().split(" ")[3] 175 parsed_params.append(current_param.strip()) 198 to_string=True).split(' = ')[1].strip() 201 to_string=True).strip().split(" ")[0], 16) 211 args = gdb.execute('info args -q', to_string=True).strip()
|
/tools/test/connectivity/acts_tests/tests/google/fuchsia/bt/ |
D | command_input.py | 2341 peer_id = int(line.strip()) 2384 info = line.strip().split() 2407 remote = line.strip() 2426 remote = line.strip() 2445 call_id = int(line.strip()) 2464 call_id = int(line.strip()) 2483 call_id = int(line.strip()) 2502 call_id = int(line.strip()) 2521 value = int(line.strip()) 2540 value = int(line.strip()) [all …]
|
/tools/treble/split/ |
D | manifest_split.py | 177 repo_list = [line.strip().split(" : ") for line in repo_list_lines if line.strip()] 285 ] + list(modules_shard)).decode().strip("\n").split("\n"))) 288 path = path.strip() 299 return {path.strip() for path in inputs if input_allowed(path)} 320 ]).decode().strip("\n").split("\n"))
|
/tools/asuite/atest-py2/ |
D | atest_integration_tests.py | 141 if not test.strip() or test.strip().startswith('#'): 144 test.strip(), LOG_PATH)
|
/tools/asuite/atest/ |
D | atest_integration_tests.py | 146 if not test.strip() or test.strip().startswith('#'): 149 test.strip(), LOG_PATH)
|
D | atest_utils.py | 209 sys.stdout.write('%s' % line.strip()) 1172 name = tag.attrib['name'].strip() 1175 value = tag.attrib['value'].strip() 1192 name = tag.attrib['name'].strip() 1194 key = tag.attrib['key'].strip() 1196 value = tag.attrib['value'].strip()
|
/tools/security/gdb/heap_print/test/ |
D | test_heap_print_script.py | 6 return int(n_str.split("=")[1].strip()) 91 data = malloc_ptr_str.split("\n")[2].strip() 108 data = new_ptr_array_str.split("\n")[2].strip()
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/ |
D | logserial.py | 123 adprop = m.group('adprop').strip() 151 m.group().strip().split('\\')[2]) 321 logging.info('cmd [{}] sent.'.format(command.strip())) 387 data = data.strip()
|
/tools/external_updater/ |
D | git_utils.py | 76 return _run(['git', 'rev-parse', branch], proj_path).strip() 93 return datetime.datetime.fromtimestamp(int(out.strip())) 99 stripped = [line.strip() for line in lines]
|
/tools/security/gdb/heap_print/ |
D | heap_print_script.py | 7 int_address = int(int_address_string.split('=')[1].strip()) 15 return str.split("=")[1].strip() 229 result += byte_string.split(':')[1].strip() + " "
|
/tools/test/openhst/ |
D | stress_test.py | 387 "ro.product.name"]).strip().decode("utf-8") 402 shlex.split(cmd % self.cmd_string_replacements)).strip() 611 result = self.Command(shlex.split(action)).strip() 638 result = self.Command(command).strip() 656 ).strip().splitlines() 683 ["shell", "getprop", "ro.build.version.sdk"]).strip()) 832 serial_number = line.split()[0].strip()
|
/tools/asuite/aidegen/lib/ |
D | common_util.py | 142 rel_path = paths[0].strip(os.sep) 147 rel_path = target.strip(os.sep) 618 files.append(line.strip()) 703 return os.linesep.join([s for s in xml_string.splitlines() if s.strip()])
|
/tools/test/connectivity/acts_tests/tests/google/wifi/ |
D | WifiRvrTwTest.py | 146 dB=dB.strip(';') 274 RSSI = RSSI.strip(' ') 279 LS = LS.strip(' ') 284 FR = FR.strip(' ')
|
/tools/test/connectivity/acts_tests/tests/google/power/bt/ |
D | PowerBLEadvertiseTest.py | 51 adv_power_level).name.strip('ADVERTISE').strip('_')
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/ |
D | apollo_log_decoder.py | 31 key = element[0].strip() 32 value = element[1].strip()
|
/tools/acloud/setup/ |
D | setup_common.py | 119 installed_ver = match.group("installed_ver").strip() 123 candidate_ver = match.group("candidate_ver").strip()
|
/tools/test/connectivity/acts_tests/tests/google/gnss/ |
D | GnssSimInventoryTest.py | 36 imsi = line.split(" ")[2].split("=")[-1].strip('"') 45 "dumpsys isub | grep iccid")).split(" ")[4].strip(",")
|
/tools/test/connectivity/acts/framework/acts/controllers/attenuator_lib/ |
D | _tnhelper.py | 110 cmd_str.strip(self.tx_cmd_separator) 129 ret_text = ret_text.strip(
|
1234