Home
last modified time | relevance | path

Searched refs:PathList (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMultipleWorkspace.py131 PathList = PathStr.split()
132 if PathList:
133 for i, str in enumerate(PathList):
143 PathList[i] = str[0:MacroStartPos] + Path
144 PathStr = ' '.join(PathList)
DMisc.py1694 def CommonPath(PathList): argument
1695 P1 = min(PathList).split(os.path.sep)
1696 P2 = max(PathList).split(os.path.sep)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
DIpiDb.py576 PathList = []
580 PathList.append((os.path.join(self.Workspace, Path), Md5Sum))
582 return PathList
743 PathList = []
751 PathList.append(InstallPath)
753 return PathList
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
DInstallPkg.py93 def InstallNewModule(WorkspaceDir, Path, PathList = None): argument
94 if PathList == None:
95 PathList = []
99 if os.path.exists(FullPath) and FullPath not in PathList:
111 return InstallNewModule(WorkspaceDir, Input, PathList)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
DMisc.py437 def CommonPath(PathList): argument
438 Path1 = min(PathList).split(os.path.sep)
439 Path2 = max(PathList).split(os.path.sep)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
DGenMake.py961 PathList = [CurrentFilePath] + SearchPathList
963 for SearchPath in PathList:
DAutoGen.py3030 PathList = GetSplitList(Path, TAB_COMMA_SPLIT)
3031 IncPathList += [NormPath(PathEntry, self.Macros) for PathEntry in PathList]