Searched refs:nSep (Results 1 – 7 of 7) sorted by relevance
/aoo41x/main/unotools/source/config/ |
H A D | configpathes.cxx | 155 sal_Int32 nSep = _sInPath.indexOf('/'); in extractFirstFromConfigurationPath() local 159 sal_Int32 nEnd = nSep; in extractFirstFromConfigurationPath() 163 if (nSep < 0 || nBracket < nSep) // and the separator comes after it in extractFirstFromConfigurationPath() 178 …OSL_ENSURE((nBracket+1 == _sInPath.getLength() && nSep == -1) || (_sInPath[nBracket+1] == '/' && n… in extractFirstFromConfigurationPath() 189 *_sOutPath = (nSep >= 0) ? _sInPath.copy(nSep + 1) : OUString(); in extractFirstFromConfigurationPath()
|
H A D | syslocaleoptions.cxx | 64 sal_Int32 nSep = rStr.indexOf('-'); in lcl_str_to_locale() local 65 if (nSep < 0) in lcl_str_to_locale() 69 aRet.Language = rStr.copy(0, nSep); in lcl_str_to_locale() 70 if (nSep < rStr.getLength()) in lcl_str_to_locale() 71 aRet.Country = rStr.copy(nSep+1, rStr.getLength() - (nSep+1)); in lcl_str_to_locale()
|
/aoo41x/main/oox/source/xls/ |
H A D | connectionsbuffer.cxx | 124 sal_Int32 nSep = -1; in lclParseTables() local 134 nSep = aTableNames.indexOf( ',', nEndQuote + 1 ); in lclParseTables() 144 nSep = aTableNames.indexOf( ',' ); in lclParseTables() 145 if( nSep < 0 ) in lclParseTables() 146 nSep = aTableNames.getLength(); in lclParseTables() 147 OUString aTableIndex = aTableNames.copy( 0, nSep ).trim(); in lclParseTables() 155 if( (nSep < 0) || (nSep >= aTableNames.getLength()) ) in lclParseTables() 158 aTableNames = aTableNames.copy( nSep + 1 ).trim(); in lclParseTables()
|
/aoo41x/main/svx/source/tbxctrls/ |
H A D | fillctrl.cxx | 800 long nSep = 0; // war vorher 4 in Resize() local 802 pLbFillType->SetSizePixel( Size( nW * 2 - nSep, nH ) ); in Resize() 803 pLbFillAttr->SetPosSizePixel( Point( nW * 2 + nSep, 0 ), Size( nW * 3 - nSep, nH ) ); in Resize()
|
/aoo41x/main/cui/source/options/ |
H A D | optgdlg.cxx | 1363 sal_Int32 nSep = rLang.indexOf('-'); in lcl_LangStringToLangType() local 1364 if (nSep < 0) in lcl_LangStringToLangType() 1368 aLocale.Language = rLang.copy(0, nSep); in lcl_LangStringToLangType() 1369 if (nSep < rLang.getLength()) in lcl_LangStringToLangType() 1370 aLocale.Country = rLang.copy(nSep+1, rLang.getLength() - (nSep+1)); in lcl_LangStringToLangType()
|
/aoo41x/main/xmlsecurity/source/dialogs/ |
H A D | digitalsignaturesdialog.cxx | 167 sal_Int32 nSep = rURI.lastIndexOf( '.' ); in isXML() local 168 if ( nSep != (-1) ) in isXML() 170 OUString aExt = rURI.copy( nSep+1 ); in isXML()
|
/aoo41x/main/xmloff/source/core/ |
H A D | xmlexp.cxx | 302 sal_Int32 nSep = rOrigFileName.indexOf(':'); in SetSchemeOf() local 303 if( nSep != -1 ) in SetSchemeOf() 304 msPackageURIScheme = rOrigFileName.copy( 0, nSep ); in SetSchemeOf()
|
Completed in 87 milliseconds