/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | win_add2path.py | 36 paths = [envpath] 39 paths.append(path) 41 envpath = os.pathsep.join(paths) 43 return paths, envpath 46 paths, envpath = modify() 47 if len(paths) > 1: 49 print '\n'.join(paths[1:])
|
D | pysource.py | 91 def walk_python_files(paths, is_python=looks_like_python, exclude_dirs=None): argument 104 for path in paths:
|
D | findnocoding.py | 19 def walk_python_files(self, paths, *args, **kwargs): argument 20 for path in paths:
|
/device/google/cuttlefish/host/commands/stop_cvd/ |
D | main.cc | 57 std::set<std::string> paths; in FallbackPaths() local 59 paths.insert(parent_path + "/cuttlefish_assembly"); in FallbackPaths() 60 paths.insert(parent_path + "/cuttlefish_assembly/*"); in FallbackPaths() 70 paths.insert(instance_dir); in FallbackPaths() 72 paths.insert(instance_dir + "/*"); in FallbackPaths() 74 paths.insert(instance_dir + "/tombstones/*"); in FallbackPaths() 76 paths.insert(instance_dir + "/" + std::string(vsoc::kInternalDirName) + "/*"); in FallbackPaths() 78 return paths; in FallbackPaths() 96 std::set<pid_t> GetCandidateProcessGroups(const std::set<std::string>& paths) { in GetCandidateProcessGroups() argument 99 for (const auto& path : paths) { in GetCandidateProcessGroups() [all …]
|
/device/google/cuttlefish/host/commands/fetcher/ |
D | build_api.h | 65 DirectoryBuild(const std::vector<std::string>& paths, in DirectoryBuild() 67 : paths(paths), target(target), id("eng") {} in DirectoryBuild() 69 std::vector<std::string> paths; member
|
D | build_api.cc | 66 auto paths = android::base::Join(build.paths, ":"); in operator <<() local 67 return out << "(paths=\"" << paths << "\", target=\"" << build.target << "\")"; in operator <<() 137 for (const auto& path : build.paths) { in Artifacts() 158 for (const auto& path : build.paths) { in ArtifactToFile()
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/FdtPlatformDxe/ |
D | README.txt | 29 The present driver tries to retrieve the FDT from the device paths defined in the 31 contains a list a device paths. The device paths are in the text form and 32 separated by semi-colons. The present driver tries the device paths in the order 40 If the driver manages to download a FDT from one of the device paths mentioned 42 device paths is stopped. 46 FDT from the device paths listed in the "PcdFdtDevicePaths" PCD, the present
|
D | FdtPlatformDxe.uni | 40 #string STR_SETFDT_DEVICE_PATH_LIST #language en-US "FDT device paths :\r\n" 94 "4. Display the FDT device paths from the highest to the lowest\r\n"
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | util.py | 203 paths = string.split(pathname, '/') 204 while '.' in paths: 205 paths.remove('.') 206 if not paths: 208 return os.path.join(*paths)
|
D | spawn.py | 159 paths = path.split(os.pathsep) 166 for p in paths:
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PlatformDriOverrideDxe/ |
D | VfrStrings.uni | 42 …-US "When enter the page at first time, refresh is needed to show all the controller device paths" 43 …r-FR: When enter the page at first time, refresh is needed to show all the controller device paths" 46 … #language en-US "Refresh to show all the current controllers device paths" 47 … #language fr-FR "fr-FR: Refresh to show all the current controllers device paths"
|
/device/google/cuttlefish/ |
D | Android.bp | 36 // TODO(b/67435044) Update the include paths and remove this 44 // TODO(b/67435044) Update the include paths and remove this
|
/device/google/sunfish/vibrator/common/ |
D | utils.h | 134 std::istringstream paths{value}; 137 while (paths >> path) {
|
/device/google/cuttlefish/host/commands/assemble_cvd/ |
D | flags.cc | 584 bool CleanPriorFiles(const std::vector<std::string>& paths, const std::set<std::string>& preserving… in CleanPriorFiles() argument 586 for (auto path : paths) { in CleanPriorFiles() 605 for (const auto& path : paths) { in CleanPriorFiles() 615 std::vector<std::string> paths = { in CleanPriorFiles() local 624 paths.push_back(instance.instance_dir()); in CleanPriorFiles() 626 paths.push_back(FLAGS_instance_dir); in CleanPriorFiles() 627 return CleanPriorFiles(paths, preserving); in CleanPriorFiles()
|
/device/amlogic/yukawa/ |
D | init.yukawa.rc | 8 # Support legacy paths
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
D | Ecc.py | 138 paths = map(lambda p: os.path.join(p, 'Ecc', 'config.ini'), sys.path) 139 paths = (os.path.realpath('config.ini'),) + tuple(paths) 140 for path in paths:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/ |
D | test_discovery.py | 93 paths = [] variable in TestDiscovery.test_find_tests_with_package.Module 98 self.paths.append(path) 127 self.assertEqual(Module.paths, ['test_directory', 'test_directory2'])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
D | site.py | 86 def makepath(*paths): argument 87 dir = os.path.join(*paths)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
D | site.py | 88 def makepath(*paths): argument 89 dir = os.path.join(*paths)
|
D | ntpath.py | 76 def join(path, *paths): argument 79 for p in paths:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/ |
D | loader.py | 239 paths = os.listdir(start_dir) 241 for path in paths:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | site.py | 79 def makepath(*paths): argument 80 dir = os.path.join(*paths)
|
D | modulefinder.py | 36 paths = packagePathMap.get(packagename, []) 37 paths.append(path) 38 packagePathMap[packagename] = paths
|
/device/linaro/bootloader/edk2/BaseTools/Scripts/ |
D | ConvertMasmToNasm.py | 975 def __init__(self, paths, clone): argument 977 self.paths = paths 982 for path in self.paths: 984 for path in self.paths:
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/ |
D | BdsDxe.uni | 32 …ity to connect all necessary devices for platform boot. These boot device paths are held in Platfo…
|