/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/POM/ |
D | PackageObject.py | 60 self.IncludePathList = [] 121 def SetIncludePathList(self, IncludePathList): argument 122 self.IncludePathList = IncludePathList 125 return self.IncludePathList
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Trim/ |
D | Trim.py | 326 def DoInclude(Source, Indent='', IncludePathList=[], LocalSearchPath=None): argument 334 SearchPathList = [LocalSearchPath] + IncludePathList 336 SearchPathList = IncludePathList 372 … NewFileContent.extend(DoInclude(IncludedFile, CurrentIndent, IncludePathList, LocalSearchPath)) 399 IncludePathList = [SourceDir] 411 IncludePathList.append(Line[2:].strip()) 417 Lines = DoInclude(Source, '', IncludePathList)
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/PomAdapter/ |
D | DecPomAlignment.py | 410 IncludePathList = \ 412 IncludePathList.sort() 419 for Path1 in IncludePathList: 430 for IndexN in range (0, len(IncludePathList)): 431 IncludePathList[IndexN] = os.path.normpath(IncludePathList[IndexN]) 432 IncludePathList.sort() 433 IncludePathList.reverse() 437 self.SetIncludePathList(IncludePathList) 456 for Path in IncludePathList:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/ |
D | DistributionPackageClass.py | 211 IncludePathList = Package.GetIncludePathList() 212 for IncludePath in IncludePathList: 241 for IncludeFile in Module.UniFileClassObject.IncludePathList:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
D | StrGather.py | 592 def GetStringFiles(UniFilList, SourceFileList, IncludeList, IncludePathList, SkipList, BaseName, Is… argument 598 Uni = UniFileClassObject(sorted (UniFilList), True, IncludePathList) 600 Uni = UniFileClassObject(sorted (UniFilList), IsCompatibleMode, IncludePathList)
|
D | UniClassObject.py | 225 def __init__(self, FileList = [], IsCompatibleMode = False, IncludePathList = []): argument 233 self.IncludePathList = IncludePathList 451 for Dir in [File.Dir] + self.IncludePathList:
|
D | GenMake.py | 512 … Value = RemoveDupOption(Value, IncPrefix, self._AutoGenObject.IncludePathList) 571 IncludePathList = [] 572 for P in self._AutoGenObject.IncludePathList: 573 IncludePathList.append(IncPrefix + self.PlaceMacro(P, self.Macros)) 579 "source_file" : IncludePathList 797 … self._AutoGenObject.IncludePathList + self._AutoGenObject.BuildOptionIncPathList
|
D | AutoGen.py | 3039 …if (Path not in self.IncludePathList) and (CommonPath([Path, self.MetaFile.Dir]) != self.MetaFile.… 3077 if F.Dir not in self.IncludePathList and self.AutoGenVersion >= 0x00010005: 3078 self.IncludePathList.insert(0, F.Dir) 4079 IncludePathList = property(_GetIncludePathList) variable in ModuleAutoGen
|
D | GenC.py | 1613 …Header, Code = GetStringFiles(Info.UnicodeFileList, SrcList, IncList, Info.IncludePathList, ['.uni…
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
D | UniClassObject.py | 306 def __init__(self, FileList = None, IsCompatibleMode = False, IncludePathList = None): argument 317 if not IncludePathList: 318 self.IncludePathList = [] 320 self.IncludePathList = IncludePathList 549 for Dir in [File.Dir] + self.IncludePathList:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
D | c.py | 595 def GetFullPathOfIncludeFile(Str, IncludePathList): argument 596 for IncludePath in IncludePathList: 608 IncludePathList = IncludePathListDict.get(FileDirName) 609 if IncludePathList == None: 610 …IncludePathList = MetaDataParser.GetIncludeListOfFile(EccGlobalData.gWorkspace, FullFileName, GetD… 611 if FileDirName not in IncludePathList: 612 IncludePathList.insert(0, FileDirName) 613 IncludePathListDict[FileDirName] = IncludePathList 620 FullPath = GetFullPathOfIncludeFile(FileName, IncludePathList) 631 FullPath = GetFullPathOfIncludeFile(FileName, IncludePathList)
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/ |
D | BuildReport.py | 157 def FindIncludeFiles(Source, IncludePathList, IncludeFiles): argument 164 for Dir in [os.path.dirname(Source)] + IncludePathList: 186 for Dir in IncludePathList: 1067 FindIncludeFiles(Source.Path, Module.IncludePathList, IncludeList)
|