Home
last modified time | relevance | path

Searched refs:InfExpandMacro (Results 1 – 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
DInfDepexSectionParser.py24 from Parser.InfParserMisc import InfExpandMacro
57 LineContent = InfExpandMacro(LineContent,
DInfBuildOptionSectionParser.py26 from Parser.InfParserMisc import InfExpandMacro
97 ValueList[0] = InfExpandMacro(ValueList[0], (FileName, LineContent, LineNo),
99 ValueList[1] = InfExpandMacro(ValueList[1], (FileName, LineContent, LineNo),
DInfPackageSectionParser.py24 from Parser.InfParserMisc import InfExpandMacro
114 ValueList = [InfExpandMacro(Value, (FileName, PkgLineContent, PkgLineNo),
DInfGuidPpiProtocolSectionParser.py24 from Parser.InfParserMisc import InfExpandMacro
92 ValueList = [InfExpandMacro(Value, (FileName, LineContent, LineNo),
179 …ValueList = [InfExpandMacro(Value, (FileName, LineContent, LineNo), self.FileLocalMacros, SectionM…
348 …ValueList = [InfExpandMacro(Value, (FileName, LineContent, LineNo), self.FileLocalMacros, SectionM…
DInfSourceSectionParser.py24 from Parser.InfParserMisc import InfExpandMacro
109 SrcLineContent = InfExpandMacro(SrcLineContent,
DInfPcdSectionParser.py24 from Parser.InfParserMisc import InfExpandMacro
116 ValueList = [InfExpandMacro(Value, (FileName, PcdLineContent, PcdLineNo),
DInfLibrarySectionParser.py24 from Parser.InfParserMisc import InfExpandMacro
122 ValueList = [InfExpandMacro(Value, (FileName, LibLineContent, LibLineNo),
DInfDefineSectionParser.py30 from Parser.InfParserMisc import InfExpandMacro
154 LineContent = InfExpandMacro(LineContent,
DInfBinarySectionParser.py24 from Parser.InfParserMisc import InfExpandMacro
135 LineContent = InfExpandMacro(BinLineContent,
DInfAsBuiltProcess.py32 from Parser.InfParserMisc import InfExpandMacro
178 …Line = InfExpandMacro(Line, (FileNameString, Line, LineNo), DefineSectionMacros, PackageSectionMac…
DInfParserMisc.py75 def InfExpandMacro(Content, LineInfo, GlobalMacros=None, SectionMacros=None, Flag=False): function