Home
last modified time | relevance | path

Searched refs:IncludePathList (Results 1 – 12 of 12) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/POM/
DPackageObject.py60 self.IncludePathList = []
121 def SetIncludePathList(self, IncludePathList): argument
122 self.IncludePathList = IncludePathList
125 return self.IncludePathList
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Trim/
DTrim.py295 def DoInclude(Source, Indent='', IncludePathList=[], LocalSearchPath=None): argument
303 SearchPathList = [LocalSearchPath] + IncludePathList
305 SearchPathList = IncludePathList
341 … NewFileContent.extend(DoInclude(IncludedFile, CurrentIndent, IncludePathList, LocalSearchPath))
368 IncludePathList = [SourceDir]
380 IncludePathList.append(Line[2:].strip())
386 Lines = DoInclude(Source, '', IncludePathList)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/PomAdapter/
DDecPomAlignment.py401 IncludePathList = \
403 IncludePathList.sort()
410 for Path1 in IncludePathList:
421 for IndexN in range (0, len(IncludePathList)):
422 IncludePathList[IndexN] = os.path.normpath(IncludePathList[IndexN])
423 IncludePathList.sort()
424 IncludePathList.reverse()
428 self.SetIncludePathList(IncludePathList)
447 for Path in IncludePathList:
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
DDistributionPackageClass.py211 IncludePathList = Package.GetIncludePathList()
212 for IncludePath in IncludePathList:
241 for IncludeFile in Module.UniFileClassObject.IncludePathList:
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
DGenMake.py496 … Value = RemoveDupOption(Value, IncPrefix, self._AutoGenObject.IncludePathList)
521 IncludePathList = []
522 for P in self._AutoGenObject.IncludePathList:
523 IncludePathList.append(IncPrefix + self.PlaceMacro(P, self.Macros))
529 "source_file" : IncludePathList
637 … self._AutoGenObject.IncludePathList + self._AutoGenObject.BuildOptionIncPathList
DStrGather.py592 def GetStringFiles(UniFilList, SourceFileList, IncludeList, IncludePathList, SkipList, BaseName, Is… argument
598 Uni = UniFileClassObject(sorted (UniFilList), True, IncludePathList)
600 Uni = UniFileClassObject(sorted (UniFilList), IsCompatibleMode, IncludePathList)
DUniClassObject.py225 def __init__(self, FileList = [], IsCompatibleMode = False, IncludePathList = []): argument
233 self.IncludePathList = IncludePathList
441 for Dir in [File.Dir] + self.IncludePathList:
DAutoGen.py2675 …if (Path not in self.IncludePathList) and (CommonPath([Path, self.MetaFile.Dir]) != self.MetaFile.…
2713 if F.Dir not in self.IncludePathList and self.AutoGenVersion >= 0x00010005:
2714 self.IncludePathList.insert(0, F.Dir)
3646 IncludePathList = property(_GetIncludePathList) variable in ModuleAutoGen
DGenC.py1571 …Header, Code = GetStringFiles(Info.UnicodeFileList, SrcList, IncList, Info.IncludePathList, ['.uni…
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
DUniClassObject.py306 def __init__(self, FileList = None, IsCompatibleMode = False, IncludePathList = None): argument
317 if not IncludePathList:
318 self.IncludePathList = []
320 self.IncludePathList = IncludePathList
545 for Dir in [File.Dir] + self.IncludePathList:
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
Dc.py595 def GetFullPathOfIncludeFile(Str, IncludePathList): argument
596 for IncludePath in IncludePathList:
608 IncludePathList = IncludePathListDict.get(FileDirName)
609 if IncludePathList == None:
610IncludePathList = 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/
DBuildReport.py149 def FindIncludeFiles(Source, IncludePathList, IncludeFiles): argument
156 for Dir in [os.path.dirname(Source)] + IncludePathList:
178 for Dir in IncludePathList:
910 FindIncludeFiles(Source.Path, Module.IncludePathList, IncludeList)