Lines Matching refs:nSepPos
142 xub_StrLen nSepPos = sLang.Search( '-' ); in HelpLocaleString() local
143 if (nSepPos != STRING_NOTFOUND) in HelpLocaleString()
146 sLang = sLang.Copy( 0, nSepPos ); in HelpLocaleString()
620 sal_Int32 nSepPos = aLocaleStr.indexOf( '_' ); in SfxHelp() local
621 if ( nSepPos != -1 ) in SfxHelp()
623 aLanguageStr = aLocaleStr.copy( 0, nSepPos ); in SfxHelp()
624 aCountryStr = aLocaleStr.copy( nSepPos+1 ); in SfxHelp()
628 nSepPos = aLocaleStr.indexOf( '-' ); in SfxHelp()
629 if ( nSepPos != -1 ) in SfxHelp()
631 aLanguageStr = aLocaleStr.copy( 0, nSepPos ); in SfxHelp()
632 aCountryStr = aLocaleStr.copy( nSepPos+1 ); in SfxHelp()