Lines Matching refs:_sApp
31 private static String getOfficePath(String _sApp) in getOfficePath() argument
35 if (_sApp.startsWith("\"")) in getOfficePath()
37 int nIdx = _sApp.indexOf("\"", 1); in getOfficePath()
41 sOfficePath = _sApp.substring(1, nIdx); in getOfficePath()
47 if (! (_sApp.endsWith("soffice.exe") || _sApp.endsWith("soffice"))) in getOfficePath()
50 int nIdx = _sApp.indexOf(" ", 1); in getOfficePath()
53 sOfficePath = _sApp; in getOfficePath()
57 sOfficePath = _sApp.substring(0, nIdx); in getOfficePath()
62 sOfficePath = _sApp; in getOfficePath()
69 public static String getBuildID(String _sApp) in getBuildID() argument
71 final String sOfficePath = getOfficePath(_sApp); in getBuildID()