Lines Matching refs:PL
316 raw_fd_ostream PL(InfoPlist, EC, sys::fs::OF_Text); in createPlistFile() local
332 PL << "<?xml version=\"1.0\" encoding=\"UTF-8\"\?>\n" in createPlistFile()
341 printHTMLEscaped(BI.IDStr, PL); in createPlistFile()
342 PL << "</string>\n" in createPlistFile()
351 PL << "\t\t<key>CFBundleShortVersionString</key>\n"; in createPlistFile()
352 PL << "\t\t<string>"; in createPlistFile()
353 printHTMLEscaped(BI.ShortVersionStr, PL); in createPlistFile()
354 PL << "</string>\n"; in createPlistFile()
357 PL << "\t\t<key>CFBundleVersion</key>\n"; in createPlistFile()
358 PL << "\t\t<string>"; in createPlistFile()
359 printHTMLEscaped(BI.VersionStr, PL); in createPlistFile()
360 PL << "</string>\n"; in createPlistFile()
363 PL << "\t\t<key>Toolchain</key>\n"; in createPlistFile()
364 PL << "\t\t<string>"; in createPlistFile()
365 printHTMLEscaped(Toolchain, PL); in createPlistFile()
366 PL << "</string>\n"; in createPlistFile()
369 PL << "\t</dict>\n" in createPlistFile()
372 PL.close(); in createPlistFile()