Lines Matching refs:String

104         String sConfigPath = "org.openoffice.Office.Accelerators";  in before()
137 String[] sKeys; in checkGlobalAccelCfg()
141 sKeys = new String[] in checkGlobalAccelCfg()
147 sKeys = new String[] in checkGlobalAccelCfg()
151 String[] sCommands = new String[] in checkGlobalAccelCfg()
157 sKeys = new String[] in checkGlobalAccelCfg()
163 String[] sCommandList = new String[] in checkGlobalAccelCfg()
177 String[] sModules = new String[] in checkModuleAccelCfg()
205 String[] sKeys; in checkModuleAccelCfg()
212 sKeys = new String[] in checkModuleAccelCfg()
219 sKeys = new String[] in checkModuleAccelCfg()
226 sKeys = new String[] in checkModuleAccelCfg()
233 sKeys = new String[] in checkModuleAccelCfg()
241 String[] sCommands; in checkModuleAccelCfg()
244 sKeys = new String[] in checkModuleAccelCfg()
248 sCommands = new String[] in checkModuleAccelCfg()
255 sKeys = new String[] in checkModuleAccelCfg()
259 sCommands = new String[] in checkModuleAccelCfg()
266 sKeys = new String[] in checkModuleAccelCfg()
270 sCommands = new String[] in checkModuleAccelCfg()
277 sKeys = new String[] in checkModuleAccelCfg()
281 sCommands = new String[] in checkModuleAccelCfg()
291 sKeys = new String[] in checkModuleAccelCfg()
298 sKeys = new String[] in checkModuleAccelCfg()
305 sKeys = new String[] in checkModuleAccelCfg()
312 sKeys = new String[] in checkModuleAccelCfg()
320 String[] sCommandList; in checkModuleAccelCfg()
323 sCommandList = new String[] in checkModuleAccelCfg()
330 sCommandList = new String[] in checkModuleAccelCfg()
337 sCommandList = new String[] in checkModuleAccelCfg()
344 sCommandList = new String[] in checkModuleAccelCfg()
362 String sDocCfgName; in checkDocumentAccelCfg()
364 String tempDirURL = util.utils.getOfficeTemp/*Dir*/(getMSF()); in checkDocumentAccelCfg()
376 … impl_checkGetKeyCommands(XAcceleratorConfiguration xAccelCfg, XNameAccess xAccess, String[] sKeys) in impl_checkGetKeyCommands()
387String sCmdFromCache = new String(); // get a value using XAcceleratorConfiguration API in impl_checkGetKeyCommands()
388String sCmdFromConfiguration = new String(); // get a value using configuration API in impl_checkGetKeyCommands()
400 String sLocale = "es"; in impl_checkGetKeyCommands()
418 …elCfg, XNameAccess xPrimaryAccess, XNameAccess xSecondaryAccess, String[] sKeys, String[] sCommand… in impl_checkSetKeyCommands()
440 String sOriginalCommand = getCommandFromConfiguration(xPrimaryAccess, sKeys[i]); in impl_checkSetKeyCommands()
446 String sChangedCommand = getCommandFromConfiguration(xPrimaryAccess, sKeys[i]); in impl_checkSetKeyCommands()
463 String sOriginalCommand = getCommandFromConfiguration(xSecondaryAccess, sKeys[i]); in impl_checkSetKeyCommands()
469 String sChangedCommand = getCommandFromConfiguration(xPrimaryAccess, sKeys[i]); in impl_checkSetKeyCommands()
490 …rConfiguration xAccelCfg, XNameAccess xPrimaryAccess, XNameAccess xSecondaryAccess, String[] sKeys) in impl_checkRemoveKeyCommands()
533 …CommandList(XAcceleratorConfiguration xAccelCfg, XNameAccess xPrimaryAccess, String[] sCommandList) in impl_checkGetPreferredKeyEventsForCommandList()
544 String sKeyEvent = convertAWTKey2Shortcut(aKeyEvent); in impl_checkGetPreferredKeyEventsForCommandList()
547 String sCmdFromConfiguration = getCommandFromConfiguration(xPrimaryAccess, sKeyEvent); in impl_checkGetPreferredKeyEventsForCommandList()
563 private String getCommandFromConfiguration(XNameAccess xAccess, String sKey) in getCommandFromConfiguration()
566 String sCommand = new String(); in getCommandFromConfiguration()
573 String sLocale = getOfficeLocale(); in getCommandFromConfiguration()
576 sCommand = UnoRuntime.queryInterface(String.class, xCommand.getByName(sLocale)); in getCommandFromConfiguration()
586 private void insertKeyToConfiguration(XNameAccess xAccess, String sKey, String sCommand) in insertKeyToConfiguration()
599 String sLocale = getOfficeLocale(); in insertKeyToConfiguration()
613 private void removeKeyFromConfiguration(XNameAccess xAccess, String sKey) in removeKeyFromConfiguration()
626 private void LoadDocumentAcceleratorConfiguration(String sDocCfgName) in LoadDocumentAcceleratorConfiguration()
650 String test = m_xDocumentAccelCfg.getCommandByKeyEvent(convertShortcut2AWTKey("F2")); in LoadDocumentAcceleratorConfiguration()
662 private void SaveDocumentAcceleratorConfiguration(String sDocCfgName) in SaveDocumentAcceleratorConfiguration()
698 private com.sun.star.awt.KeyEvent convertShortcut2AWTKey(String sShortcut) in convertShortcut2AWTKey()
703 String[] sShortcutSplits = sShortcut.split("_"); in convertShortcut2AWTKey()
728 private String convertAWTKey2Shortcut(com.sun.star.awt.KeyEvent aKeyEvent) in convertAWTKey2Shortcut()
731 String sShortcut; in convertAWTKey2Shortcut()
755 private String getOfficeLocale() in getOfficeLocale()
758 String sLocale = new String(); in getOfficeLocale()
760 String sConfigPath = "org.openoffice.Setup"; in getOfficeLocale()
768 sLocale = (String) xSet.getPropertyValue("ooLocale"); in getOfficeLocale()
777 private void setOfficeLocale(String sLocale) in setOfficeLocale()
780 String sConfigPath = "org.openoffice.Setup"; in setOfficeLocale()
798 String sConfigPath, in openConfig()