Searched refs:nSeparator (Results 1 – 7 of 7) sorted by relevance
/aoo42x/main/dbaccess/source/core/misc/ |
H A D | dsntypes.cxx | 351 sal_uInt16 nSeparator = sDsn.Search((sal_Unicode)':'); in determineType() local 352 if (STRING_NOTFOUND == nSeparator) in determineType() 359 sal_uInt16 nOracleSeparator = sDsn.Search((sal_Unicode)':', nSeparator + 1); in determineType() 367 if (sDsn.EqualsIgnoreCaseAscii("jdbc", 0, nSeparator)) in determineType() 374 nSeparator = sDsn.Search((sal_Unicode)':', nSeparator + 1); in determineType() 375 if (STRING_NOTFOUND == nSeparator) in determineType() 382 if (sDsn.EqualsIgnoreCaseAscii("sdbc:ado:", 0, nSeparator)) in determineType() 384 nSeparator = sDsn.Search((sal_Unicode)':', nSeparator + 1); in determineType() 385 … if (STRING_NOTFOUND != nSeparator && sDsn.EqualsIgnoreCaseAscii("sdbc:ado:access",0, nSeparator) ) in determineType() 387 nSeparator = sDsn.Search((sal_Unicode)';', nSeparator + 1); in determineType() [all …]
|
/aoo42x/main/ooxml/source/framework/JavaOOXMLParser/src/org/apache/openoffice/ooxml/parser/ |
H A D | OOXMLParser.java | 193 final int nSeparator = sInputName.indexOf('#'); in GetInputStream() local 194 if (nSeparator >= 0) in GetInputStream() 198 final String sArchiveName = sInputName.substring(0, nSeparator); in GetInputStream() 199 String sEntryName = sInputName.substring(nSeparator+1); in GetInputStream()
|
/aoo42x/main/sw/source/ui/dbui/ |
H A D | dbmgr.cxx | 527 nSeparator = 0xff; in lcl_FindColumn() 528 while(nUsedPos < nLen && nSeparator == 0xff) in lcl_FindColumn() 534 nSeparator = DB_SEP_SPACE; in lcl_FindColumn() 537 nSeparator = DB_SEP_RETURN; in lcl_FindColumn() 540 nSeparator = DB_SEP_TAB; in lcl_FindColumn() 543 nSeparator = DB_SEP_NEWLINE; in lcl_FindColumn() 570 sal_uInt8 nSeparator; in ImportDBEntry() local 583 if( DB_SEP_SPACE == nSeparator ) in ImportDBEntry() 585 else if( DB_SEP_TAB == nSeparator) in ImportDBEntry() 588 if( DB_SEP_RETURN == nSeparator) in ImportDBEntry() [all …]
|
/aoo42x/main/xmloff/source/forms/ |
H A D | layerimport.cxx | 441 sal_Int32 nSeparator, nPrevSep; in endPage() local 456 while (-1 != (nSeparator = sReferring.indexOf(s_nSeparator, nPrevSep + 1))) in endPage() 458 sCurrentReferring = sReferring.copy(nPrevSep + 1, nSeparator - nPrevSep - 1); in endPage() 464 nPrevSep = nSeparator; in endPage()
|
/aoo42x/main/sdext/source/minimizer/ |
H A D | optimizerdialogcontrols.cxx | 662 static OUString ImpValueOfInMB( const sal_Int64& rVal, sal_Unicode nSeparator = '.' ) in ImpValueOfInMB() argument 672 aVal.setCharAt( nX, nSeparator ); in ImpValueOfInMB() 901 sal_Unicode nSeparator = '.'; in UpdateControlStatesPage4() local 904 nSeparator = aStr[ 0 ]; in UpdateControlStatesPage4() 905 …et( TK_FixedText7Pg4 ), TKGet( TK_Label ), Any( ImpValueOfInMB( nCurrentFileSize, nSeparator ) ) ); in UpdateControlStatesPage4() 906 …( TK_FixedText8Pg4 ), TKGet( TK_Label ), Any( ImpValueOfInMB( nEstimatedFileSize, nSeparator ) ) ); in UpdateControlStatesPage4()
|
/aoo42x/main/odk/examples/java/EmbedDocument/EmbeddedObject/ |
H A D | OwnEmbeddedObject.java | 301 int nSeparator = aSize.indexOf( '|' ); in ReadSizeFromOwnStorage() local 302 if ( nSeparator > 0 && nSeparator < aSize.length() - 1 ) in ReadSizeFromOwnStorage() 304 int nWidth = Integer.parseInt( aSize.substring( 0, nSeparator ) ); in ReadSizeFromOwnStorage() 305 int nHeight = Integer.parseInt( aSize.substring( nSeparator + 1, aSize.length() ) ); in ReadSizeFromOwnStorage()
|
/aoo42x/main/xmloff/source/text/ |
H A D | txtflde.cxx | 2888 sal_Int32 nSeparator = sMasterName.indexOf('.', nLength); in ExplodeFieldMasterName() local 2897 if (nSeparator <= nLength) { in ExplodeFieldMasterName() 2898 nSeparator = sMasterName.getLength(); in ExplodeFieldMasterName() 2904 sFieldType = sMasterName.copy(nLength, nSeparator-nLength); in ExplodeFieldMasterName() 2905 sVarName = sMasterName.copy(nSeparator+1); in ExplodeFieldMasterName()
|
Completed in 80 milliseconds