Searched refs:Profile (Results 1 - 25 of 28) sorted by relevance

12

/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
H A DCodeFragmentCollector.py67 self.Profile = FileProfile.FileProfile(FileName)
68 self.Profile.FileLinesList.append(T_CHAR_LF)
119 NumberOfLines = len(self.Profile.FileLinesList)
120 SizeOfLastLine = len(self.Profile.FileLinesList[-1])
137 SizeOfCurrentLine = len(self.Profile.FileLinesList[self.CurrentLineNumber - 1])
179 if self.CurrentOffsetWithinLine == len(self.Profile.FileLinesList[self.CurrentLineNumber - 1]) - 1:
193 CurrentChar = self.Profile.FileLinesList[self.CurrentLineNumber - 1][self.CurrentOffsetWithinLine]
205 if self.CurrentOffsetWithinLine == len(self.Profile.FileLinesList[self.CurrentLineNumber - 1]) - 1:
206 return self.Profile.FileLinesList[self.CurrentLineNumber][0]
208 return self.Profile
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
H A DFdfClassObject.py91 for Index in range(0, len(Fdf.Profile.PcdDict)):
93 for Key in Fdf.Profile.PcdDict.keys():
97 FileName = Fdf.Profile.PcdFileLineDict[Key][0]
98 StartLine = Fdf.Profile.PcdFileLineDict[Key][1]
101 for Index in range(0, len(Fdf.Profile.InfList)):
103 Value1 = Fdf.Profile.InfList[Index]
105 FileName = Fdf.Profile.InfFileLineList[Index][0]
106 StartLine = Fdf.Profile.InfFileLineList[Index][1]
H A DFdfParserLite.py52 for Profile in IncludeFileList:
53 if Line >= Profile.InsertStartLineNumber and Line < Profile.InsertStartLineNumber + Profile.InsertAdjust + len(Profile.FileLinesList):
54 return (Profile.FileName, Line - Profile.InsertStartLineNumber + 1)
55 if Line >= Profile.InsertStartLineNumber + Profile.InsertAdjust + len(Profile
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
H A DCodeFragmentCollector.py69 self.Profile = FileProfile.FileProfile(FileName)
70 self.Profile.FileLinesList.append(T_CHAR_LF)
121 NumberOfLines = len(self.Profile.FileLinesList)
124 SizeOfLastLine = len(self.Profile.FileLinesList[-1])
142 SizeOfCurrentLine = len(self.Profile.FileLinesList[self.CurrentLineNumber - 1])
184 if self.CurrentOffsetWithinLine == len(self.Profile.FileLinesList[self.CurrentLineNumber - 1]) - 1:
198 CurrentChar = self.Profile.FileLinesList[self.CurrentLineNumber - 1][self.CurrentOffsetWithinLine]
211 if self.CurrentOffsetWithinLine == len(self.Profile.FileLinesList[self.CurrentLineNumber - 1]) - 1:
212 return self.Profile.FileLinesList[self.CurrentLineNumber][0]
214 return self.Profile
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/
H A Dstats.py25 p = Profile()
74 class Profile(profile.Profile): class in inherits:profile.Profile
H A D__init__.py10 class Profile: class in inherits:
20 if self.__class__ is Profile:
46 # These methods offer the same interface as the profile.Profile class,
50 """Profile an exec-compatible string in the script
71 """Profile a single call of a callable.
H A Dstones.py8 p = hotshot.Profile(logfile)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_cprofile.py11 profilerclass = cProfile.Profile
H A Dtest_profile.py15 profilerclass = profile.Profile
H A Dtest_hotshot.py46 return hotshot.Profile(self.logfn, lineevents, linetimings)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
H A DCapsuleData.py83 if self.FvName.upper() in GenFdsGlobalVariable.FdfParser.Profile.FvDict.keys():
84 FvObj = GenFdsGlobalVariable.FdfParser.Profile.FvDict.get(self.FvName.upper())
115 if self.FdName.upper() in GenFdsGlobalVariable.FdfParser.Profile.FdDict.keys():
116 FdObj = GenFdsGlobalVariable.FdfParser.Profile.FdDict.get(self.FdName.upper())
H A DFdfParser.py90 for Profile in AllIncludeFileList:
91 if Profile.IsLineInFile(Line):
92 return Profile
97 for Profile in AllIncludeFileList:
98 if Profile.IsLineInFile(Line) and Profile.FileName == File:
106 for Profile in AllIncludeFileList:
107 if Profile.IsLineInFile(Line):
108 return Profile.GetLineInFile(Line)
109 elif Line >= Profile
[all...]
H A DGenFds.py275 if Options.uiFdName.upper() in FdfParserObj.Profile.FdDict.keys():
282 if Options.uiFvName.upper() in FdfParserObj.Profile.FvDict.keys():
289 if Options.uiCapName.upper() in FdfParserObj.Profile.CapsuleDict.keys():
539 if GenFds.OnlyGenerateThisCap != None and GenFds.OnlyGenerateThisCap.upper() in GenFdsGlobalVariable.FdfParser.Profile.CapsuleDict.keys():
540 CapsuleObj = GenFdsGlobalVariable.FdfParser.Profile.CapsuleDict.get(GenFds.OnlyGenerateThisCap.upper())
545 if GenFds.OnlyGenerateThisFd != None and GenFds.OnlyGenerateThisFd.upper() in GenFdsGlobalVariable.FdfParser.Profile.FdDict.keys():
546 FdObj = GenFdsGlobalVariable.FdfParser.Profile.FdDict.get(GenFds.OnlyGenerateThisFd.upper())
551 for FdName in GenFdsGlobalVariable.FdfParser.Profile.FdDict.keys():
552 FdObj = GenFdsGlobalVariable.FdfParser.Profile.FdDict[FdName]
556 if GenFds.OnlyGenerateThisFv != None and GenFds.OnlyGenerateThisFv.upper() in GenFdsGlobalVariable.FdfParser.Profile
[all...]
H A DFfsFileStatement.py83 if self.FvName.upper() not in GenFdsGlobalVariable.FdfParser.Profile.FvDict.keys():
85 Fv = GenFdsGlobalVariable.FdfParser.Profile.FvDict.get(self.FvName.upper())
90 if self.FdName.upper() not in GenFdsGlobalVariable.FdfParser.Profile.FdDict.keys():
92 Fd = GenFdsGlobalVariable.FdfParser.Profile.FdDict.get(self.FdName.upper())
H A DRegion.py109 if RegionData.upper() in GenFdsGlobalVariable.FdfParser.Profile.FvDict.keys():
110 FvObj = GenFdsGlobalVariable.FdfParser.Profile.FvDict.get(RegionData.upper())
182 if RegionData.upper() in GenFdsGlobalVariable.FdfParser.Profile.CapsuleDict.keys():
183 CapsuleObj = GenFdsGlobalVariable.FdfParser.Profile.CapsuleDict[RegionData.upper()]
H A DFd.py62 for FvObj in GenFdsGlobalVariable.FdfParser.Profile.FvDict:
162 FvObj = GenFdsGlobalVariable.FdfParser.Profile.FvDict.get(RegionData.upper())
178 for VtfObj in GenFdsGlobalVariable.FdfParser.Profile.VtfList:
H A DDepexSection.py46 for Inf in GenFdsGlobalVariable.FdfParser.Profile.InfList:
H A DFv.py78 for FdName in GenFdsGlobalVariable.FdfParser.Profile.FdDict.keys():
79 FdObj = GenFdsGlobalVariable.FdfParser.Profile.FdDict[FdName]
222 for FdName in GenFdsGlobalVariable.FdfParser.Profile.FdDict.keys():
223 FdObj = GenFdsGlobalVariable.FdfParser.Profile.FdDict[FdName]
H A DFvImageSection.py98 Fv = GenFdsGlobalVariable.FdfParser.Profile.FvDict.get(self.FvName)
H A DFfsInfStatement.py233 FdfPcdDict = GenFdsGlobalVariable.FdfParser.Profile.PcdDict
530 Rule = GenFdsGlobalVariable.FdfParser.Profile.RuleDict.get(RuleName)
548 Rule = GenFdsGlobalVariable.FdfParser.Profile.RuleDict.get(RuleName)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A DcProfile.py7 __all__ = ["run", "runctx", "help", "Profile"]
25 prof = Profile()
45 prof = Profile()
66 class Profile(_lsprof.Profiler): class in inherits:_lsprof.Profiler
67 """Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True)
H A Dprofile.py42 __all__ = ["run", "runctx", "help", "Profile"]
54 # Note that an instance of Profile() is *not* needed to call them.
68 prof = Profile()
84 prof = Profile()
120 class Profile: class in inherits:
289 if not isinstance(rframe, Profile.fake_frame):
509 if self.__class__ is not Profile:
549 p = Profile()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
H A Dhotshotmain.py23 prof = hotshot.Profile(profile)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
H A DMetaFileParser.py1975 for Index in range(0, len(Fdf.Profile.PcdDict)):
1977 for Key in Fdf.Profile.PcdDict.keys():
1981 FileName = Fdf.Profile.PcdFileLineDict[Key][0]
1982 StartLine = Fdf.Profile.PcdFileLineDict[Key][1]
1985 for Index in range(0, len(Fdf.Profile.InfList)):
1987 Value1 = Fdf.Profile.InfList[Index]
1989 FileName = Fdf.Profile.InfFileLineList[Index][0]
1990 StartLine = Fdf.Profile.InfFileLineList[Index][1]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
H A DAutoGen.py320 PcdSet = Fdf.Profile.PcdDict
321 if Fdf.CurrentFdName and Fdf.CurrentFdName in Fdf.Profile.FdDict:
322 FdDict = Fdf.Profile.FdDict[Fdf.CurrentFdName]
327 ModuleList = Fdf.Profile.InfList
328 self.FdfProfile = Fdf.Profile
677 for Fv in Fdf.Profile.FvDict:
679 for FfsFile in Fdf.Profile.FvDict[Fv].FfsList:
1119 self._AsBuildInfList = GlobalData.gFdfParser.Profile.InfList

Completed in 931 milliseconds

12