Searched refs:Content (Results 1 - 25 of 41) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Eot/
H A DReport.py89 Content = """ <tr>
94 self.WriteLn(Content)
101 Content = """ <tr>
106 self.WriteLn(Content)
108 Content = """ <td colspan="3"><table width="100%%" border="1">
110 self.WriteLn(Content)
115 Content = """ </table></td>
117 self.WriteLn(Content)
120 Content = """ <td colspan="3"><table width="100%%" border="1">
123 self.WriteLn(Content)
[all...]
H A DCodeFragment.py29 self.Content = Str
46 self.Content = Str
80 self.Content = Str
133 self.Content = Str
149 self.Content = Str
H A Dc.py129 Type = GetIdType(pp.Content)
130 IdPP = DataClass.IdentifierClass(-1, '', '', '', pp.Content, Type, -1, -1, pp.StartPos[0],pp.StartPos[1],pp.EndPos[0],pp.EndPos[1])
182 LBPos = enum.Content.find('{')
183 RBPos = enum.Content.find('}')
184 Name = enum.Content[4:LBPos].strip()
185 Value = enum.Content[LBPos+1:RBPos]
192 if su.Content.startswith('union'):
195 LBPos = su.Content.find('{')
196 RBPos = su.Content.find('}')
198 Name = su.Content[SkipLe
[all...]
H A DCodeFragmentCollector.py295 if PPDirectiveObj.Content.rstrip(T_CHAR_CR).endswith(T_CHAR_BACKSLASH):
296 PPDirectiveObj.Content += T_CHAR_LF
310 PPDirectiveObj.Content += T_CHAR_LF
343 PPDirectiveObj.Content += self.__CurrentChar()
428 print str(pp.StartPos) + pp.Content
446 print str(enum.StartPos) + enum.Content
452 print str(su.StartPos) + su.Content
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Object/Parser/
H A DInfUserExtensionObject.py28 Content = '',
31 self.Content = Content
36 def SetContent(self, Content):
37 self.Content = Content
39 return self.Content
H A DInfBuildOptionObject.py25 self.Content = ''
29 def SetContent(self, Content):
30 self.Content = Content
32 return self.Content
H A DInfCommonObject.py154 # @param Content: Content
156 def SetAllContent(self, Content):
157 self.AllContent = Content
H A DInfDepexObject.py73 def SetDepexConent(self, Content):
74 self.DepexContent = Content
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/
H A DCommentGenerating.py96 Content = ''
98 Content += '## @file' + EndOfLine
101 Content += '# ' + Abstract + EndOfLine
102 Content += '#' + EndOfLine
104 Content += '#' + EndOfLine
108 Content += '# ' + (EndOfLine + '# ').join(GetSplitValueList\
110 Content += EndOfLine + '#' + EndOfLine
117 Content += '# ' + (EndOfLine + '# ').join\
119 Content += EndOfLine + '#' + EndOfLine
123 Content
[all...]
H A DMisc.py153 # @param Content: The new content of the file
157 def SaveFileOnChange(File, Content, IsBinaryFile=True):
159 Content = Content.replace("\n", linesep)
163 if Content == open(File, "rb").read():
171 FileFd.write(Content)
/vbox/src/VBox/Runtime/common/crypto/
H A Dpkcs7-init.cpp43 pThis->u.pCore = pThis->Content.pEncapsulated;
H A Dpkcs7-asn1-decoder.cpp95 PRTASN1OCTETSTRING pOctetString = &pThis->Content;
97 rc = RTAsn1CursorInitSubFromCore(pCursor, &pThis->Content.Asn1Core, &ContentCursor, "Content");
101 rc = RTAsn1MemAllocZ(&pThis->Content.EncapsulatedAllocation, (void **)&pThis->Content.pEncapsulated,
105 pThis->pCmsContent = pOctetString = (PRTASN1OCTETSTRING)pThis->Content.pEncapsulated;
H A Dpkcs7-verify.cpp594 void const *pvContent = pSignedData->ContentInfo.Content.Asn1Core.uData.pv;
595 uint32_t cbContent = pSignedData->ContentInfo.Content.Asn1Core.cb;
596 if (pSignedData->ContentInfo.Content.pEncapsulated)
598 pvContent = pSignedData->ContentInfo.Content.pEncapsulated->uData.pv;
599 cbContent = pSignedData->ContentInfo.Content.pEncapsulated->cb;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/
H A DCodeFragment.py29 self.Content = Str
46 self.Content = Str
62 self.Content = Str
115 self.Content = Str
131 self.Content = Str
H A DCodeFragmentCollector.py305 if PPDirectiveObj.Content.rstrip(T_CHAR_CR).endswith(T_CHAR_BACKSLASH):
306 PPDirectiveObj.Content += T_CHAR_LF
316 CommentObj.Content += T_CHAR_LF
323 PPDirectiveObj.Content += T_CHAR_LF
335 CommentObj.Content += T_CHAR_LF
340 CommentObj.Content += self.__CurrentChar()
343 CommentObj.Content += self.__CurrentChar()
362 PPDirectiveObj.Content += self.__CurrentChar()
366 CommentObj.Content += self.__CurrentChar()
382 CommentObj.Content
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/GenMetaFile/
H A DGenInfFile.py51 Content = ''
55 Content += GenHeaderCommentSection(ModuleObject.GetAbstract(),
79 Content += GenDefines(ModuleObject)
80 Content += GenBuildOptions(ModuleObject)
81 Content += GenLibraryClasses(ModuleObject)
82 Content += GenPackages(ModuleObject)
83 Content += GenPcdSections(ModuleObject)
84 Content += GenSources(ModuleObject)
85 Content += GenProtocolPPiSections(ModuleObject.GetProtocolList(), True)
86 Content
[all...]
H A DGenDecFile.py37 def GenPcd(Package, Content):
99 Content += GenSection(ValidUsage, ValidUsageDict[ValidUsage])
101 return Content
103 def GenGuidProtocolPpi(Package, Content):
134 Content += GenSection('Guids', NewSectionDict)
167 Content += GenSection('Protocols', NewSectionDict)
200 Content += GenSection('Ppis', NewSectionDict)
202 return Content
216 Content = ''
220 Content
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Parser/
H A DInfParserMisc.py75 def InfExpandMacro(Content, LineInfo, GlobalMacros=None, SectionMacros=None, Flag=False):
90 Content = ReplaceMacro (Content,
99 Content = ReplaceMacro (Content,
106 MacroUsed = gMACRO_PATTERN.findall(Content)
111 return Content
115 if not gQuotedMacro.match(Content):
122 return Content
H A DDecParserMisc.py51 self.Content = FileContent2
58 Line = self.Content[self.LineIndex]
H A DInfSectionParser.py256 def InfHeaderParser(self, Content, InfHeaderObject2, FileName):
257 (Abstract, Description, Copyright, License) = ParseHeaderCommentSection(Content, FileName)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/UnitTest/
H A DDecParserUnitTest.py81 Content = [
95 self.dec = _DecBase(FileContent('dummy', Content))
167 Content = \
182 dec = TestTop(FileContent('dummy', Content.splitlines()))
235 def GetObj(self, Content):
236 Obj = _DecDefine(FileContent('dummy', Content.splitlines()))
261 def GetObj(self, Content):
262 Obj = _DecLibraryclass(FileContent('dummy', Content.splitlines()))
290 def GetObj(self, Content):
291 Obj = _DecPcd(FileContent('dummy', Content
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DMigrationUtilities.py339 UserExtensions.Content = XmlElementData(XmlUserExtensions)
350 # @param Content The string object to be written to a text file.
352 def StoreTextFile(TextFile, Content):
353 EdkLogger.verbose(Content)
354 TextFile.write(Content)
461 Content = UserExtensions.Content
463 return "[UserExtensions.%s.%s]\n %s\n\n" % (UserId, Identifier, Content)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Workspace/
H A DMetaFileParser.py482 Content = ''
484 Content = open(str(self.MetaFile), 'r').readlines()
491 for Index in range(0, len(Content)):
493 Line = CleanString(Content[Index], AllowCppStyleComment=True)
495 if Index + 1 < len(Content):
496 NextLine = CleanString(Content[Index + 1])
810 Content = ''
812 Content = open(str(self.MetaFile), 'r').readlines()
816 for Index in range(0, len(Content)):
817 Line = CleanString(Content[Inde
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
H A DMetaFileParser.py434 Content = ''
436 Content = open(str(self.MetaFile), 'r').readlines()
452 for Index in range(0, len(Content)):
454 Line = CleanString(Content[Index], AllowCppStyleComment=True)
456 if Index + 1 < len(Content):
457 NextLine = CleanString(Content[Index + 1])
771 Content = ''
773 Content = open(str(self.MetaFile.Path), 'r').readlines()
787 for Index in range(0, len(Content)):
788 Line = CleanString(Content[Inde
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DBuildEngine.py326 # @param Content The string list of build rules in a well defined format
330 def __init__(self, File=None, Content=None, LineIndex=0, SupportedFamily=["MSFT", "INTEL", "GCC", "RVCT"]):
338 elif Content != None:
339 self.RuleContent = Content

Completed in 110 milliseconds

12