Home | History | Annotate | Download | only in common_lib

Lines Matching refs:split

380         return re.split("%s" % sep, find.group(1))[param]
941 return stat.split()[2] != 'Z'
1488 # we could use os.path.split() but it splits from the end
1489 path_list = path.split(os.path.sep)[1:]
1490 ref_list = reference.split(os.path.sep)[1:]
1614 ax = re.split('[.-]', ver1)
1615 ay = re.split('[.-]', ver2)
1808 # TODO(dshi): Remove the code to split subnet with `:` after R51 is
1812 ip, mask_bits = subnet.split('/') if '/' in subnet \
1813 else subnet.split(':')
1887 host_parts = hostname.split('.')
1961 return interface_link.split()[1]
2330 stripped_version = stripped_version.split('/')[-1]
2401 return int(cmd_result.stdout.split('=')[1])
2406 return int(cmd_result.stdout.split()[3])
2644 branch, target, build_id = build_name.split('/')
2656 board, build_type = target.split('-')
2713 prefix_list = sys_path.split(os.pathsep) if sys_path else []