Lines Matching refs:list

90     """Converts a command-line parameter into a list.
92 If the input starts with a '[' it is assumed to be a GN-formatted list and
93 it will be parsed accordingly. When empty an empty list will be returned.
96 removed) and a list will be returned containing that string.
406 """Creates a zip file from a list of files.
409 inputs: A list of paths to zip, or a list of (zip_path, fs_path) tuples.
528 """Gets the list of all transitive dependencies in sorted order.
533 top: A list of the top level nodes
534 deps_func: A function that takes a node and returns a list of its direct
537 A list of all transitive dependencies of nodes in top, in order (a node
538 will appear in the list at a higher index than all of its dependencies).
552 return list(deps_map.keys())
564 abs_module_paths = list(map(os.path.abspath, module_paths))
576 non_system_module_paths = list(
578 non_system_module_paths = list(
591 num_modules_before = len(list(sys.modules.keys()))
592 for m in list(sys.modules.values()):
595 num_modules_after = len(list(sys.modules.keys()))
632 Note: This intentionally does not return the list of files that appear in
637 new_args = list(args)
663 # This should match parse_gn_list. The output is either a GN-formatted list
665 if isinstance(expansion, list):
675 """Reads a GN-written file containing list of file names and returns a list.
707 input_paths = list(input_paths or [])
708 input_strings = list(input_strings or [])
709 output_paths = list(output_paths or [])
721 all_depfile_deps = list(python_deps) if add_pydeps else []
739 """Returns a list of all the files in |base|. Each entry is relative to the