Lines Matching refs:sOfficePath
35 String sOfficePath = ""; in getBuildID() local
45 sOfficePath = _sApp.substring(1, nIdx); in getBuildID()
54 sOfficePath = _sApp; in getBuildID()
58 sOfficePath = _sApp.substring(0, nIdx); in getBuildID()
61 GlobalLogWriter.get().println("Office path: " + sOfficePath); in getBuildID()
65 File aSOfficeFile = new File(sOfficePath); in getBuildID()
68 int nIdx = sOfficePath.lastIndexOf(fs); in getBuildID()
69 sOfficePath = sOfficePath.substring(0, nIdx); in getBuildID()
71 sBuildID = getBuildIDFromBootstrap(sOfficePath); in getBuildID()
74 sBuildID = getBuildIDFromVersion(sOfficePath); in getBuildID()
90 String sOfficePath = _sOfficePath; in getBuildIDFromBootstrap() local
93 sOfficePath += fs + "bootstrap.ini"; in getBuildIDFromBootstrap()
97 sOfficePath += fs + "bootstraprc"; in getBuildIDFromBootstrap()
99 IniFile aIniFile = new IniFile(sOfficePath); in getBuildIDFromBootstrap()
106 …GlobalLogWriter.get().println("Property Build, can't open file '" + sOfficePath + "', please check… in getBuildIDFromBootstrap()
115 String sOfficePath = _sOfficePath; in getBuildIDFromVersion() local
118 sOfficePath += fs + "version.ini"; in getBuildIDFromVersion()
122 sOfficePath += fs + "versionrc"; in getBuildIDFromVersion()
124 IniFile aIniFile = new IniFile(sOfficePath); in getBuildIDFromVersion()
131 …GlobalLogWriter.get().println("Property Build, can't open file '" + sOfficePath + "', please check… in getBuildIDFromVersion()