Home
last modified time | relevance | path

Searched refs:nDotPos (Results 1 – 18 of 18) sorted by relevance

/dports/devel/pear-HTML_Template_PHPLIB/HTML_Template_PHPLIB-1.6.1/HTML/Template/PHPLIB/
H A DGenerator.php158 $nDotPos = strpos($strTplName, '.');
159 if ($nDotPos !== false) {
160 $strTplName = substr($strTplName, 0, $nDotPos);
/dports/editors/libreoffice/libreoffice-7.2.6.2/shell/source/win32/spsupp/
H A DspsuppHelper.cxx51 if (const sal_Int32 nDotPos = sPath.lastIndexOf('.'); nDotPos >= 0) in GetString() local
53 sPath = sPath.replaceAt(nDotPos, sPath.getLength() - nDotPos, SAL_CONFIGFILE("")); in GetString()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/shell/source/win32/spsupp/
H A DspsuppHelper.cxx51 if (const sal_Int32 nDotPos = sPath.lastIndexOf('.'); nDotPos >= 0) in GetString() local
53 sPath = sPath.replaceAt(nDotPos, sPath.getLength() - nDotPos, SAL_CONFIGFILE("")); in GetString()
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fxfa/parser/
H A Dxfa_document_imp.cpp251 FX_STRSIZE nDotPos = wsTemplateNS.Find('.', nPrefixLength); in RecognizeXFAVersionNumber() local
252 if (nDotPos == (FX_STRSIZE)-1) { in RecognizeXFAVersionNumber()
256 wsTemplateNS.Mid(nPrefixLength, nDotPos - nPrefixLength).c_str()); in RecognizeXFAVersionNumber()
258 wsTemplateNS.Mid(nDotPos + 1, wsTemplateNS.GetLength() - nDotPos - 2) in RecognizeXFAVersionNumber()
/dports/editors/libreoffice/libreoffice-7.2.6.2/filter/source/msfilter/
H A Dmsvbahelper.cxx569 sal_Int32 nDotPos = aMacroName.indexOf( '.' ); in resolveVBAMacroToScriptURL() local
570 if( (nDotPos == 0) || (nDotPos + 1 == aMacroName.getLength()) ) in resolveVBAMacroToScriptURL()
572 if( (nDotPos > 0) && aMacroName.matchIgnoreAsciiCase( maProjectName ) ) in resolveVBAMacroToScriptURL()
573 aMacroName = aMacroName.copy( nDotPos + 1 ); in resolveVBAMacroToScriptURL()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/filter/source/msfilter/
H A Dmsvbahelper.cxx588 sal_Int32 nDotPos = aMacroName.indexOf( '.' ); in resolveVBAMacroToScriptURL() local
589 if( (nDotPos == 0) || (nDotPos + 1 == aMacroName.getLength()) ) in resolveVBAMacroToScriptURL()
591 if( (nDotPos > 0) && aMacroName.matchIgnoreAsciiCase( maProjectName ) ) in resolveVBAMacroToScriptURL()
592 aMacroName = aMacroName.copy( nDotPos + 1 ); in resolveVBAMacroToScriptURL()
/dports/editors/libreoffice/libreoffice-7.2.6.2/fpicker/source/office/
H A Diodlg.cxx131 sal_Int32 nDotPos = rFile.lastIndexOf( '.' ); in GetFsysExtension_Impl() local
132 if ( nDotPos != -1 ) in GetFsysExtension_Impl()
136 if ( rFile.copy( nDotPos + 1 ).equalsIgnoreAsciiCase( rLastFilterExt ) ) in GetFsysExtension_Impl()
140 return rFile.copy( nDotPos ); in GetFsysExtension_Impl()
148 const sal_Int32 nDotPos{ rFile.lastIndexOf('.') }; in SetFsysExtension_Impl() local
149 if (nDotPos>=0) in SetFsysExtension_Impl()
152 …rFile = OUString::Concat(rFile.subView(0, nDotPos)) + rExtension; // replace old extension with ne… in SetFsysExtension_Impl()
153 else if (nDotPos) in SetFsysExtension_Impl()
154 rFile = rFile.copy(0, nDotPos-1); // truncate extension (new one is empty) in SetFsysExtension_Impl()
H A DRemoteFilesDialog.cxx388 sal_Int32 nDotPos = rFileName.lastIndexOf( '.' ); in AddFileExtension() local
390 if (nDotPos == -1) in AddFileExtension()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/fpicker/source/office/
H A Diodlg.cxx132 sal_Int32 nDotPos = rFile.lastIndexOf( '.' ); in GetFsysExtension_Impl() local
133 if ( nDotPos != -1 ) in GetFsysExtension_Impl()
137 if ( rFile.copy( nDotPos + 1 ).equalsIgnoreAsciiCase( rLastFilterExt ) ) in GetFsysExtension_Impl()
141 return rFile.copy( nDotPos ); in GetFsysExtension_Impl()
149 const sal_Int32 nDotPos{ rFile.lastIndexOf('.') }; in SetFsysExtension_Impl() local
150 if (nDotPos>=0) in SetFsysExtension_Impl()
153 … rFile = rFile.copy(0, nDotPos) + rExtension; // replace old extension with new (not empty) one in SetFsysExtension_Impl()
154 else if (nDotPos) in SetFsysExtension_Impl()
155 rFile = rFile.copy(0, nDotPos-1); // truncate extension (new one is empty) in SetFsysExtension_Impl()
H A DRemoteFilesDialog.cxx390 sal_Int32 nDotPos = sFileName.lastIndexOf( '.' ); in AddFileExtension() local
392 if ( nDotPos == -1 ) in AddFileExtension()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/xfa/fxfa/parser/
H A Dcxfa_document.cpp1466 auto nDotPos = wsTemplateNS.Find('.', prefixLength); in RecognizeXFAVersionNumber() local
1467 if (!nDotPos.has_value()) in RecognizeXFAVersionNumber()
1471 wsTemplateNS.Substr(prefixLength, nDotPos.value() - prefixLength) in RecognizeXFAVersionNumber()
1475 .Substr(nDotPos.value() + 1, in RecognizeXFAVersionNumber()
1476 wsTemplateNS.GetLength() - nDotPos.value() - 2) in RecognizeXFAVersionNumber()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/xfa/fxfa/parser/
H A Dcxfa_document.cpp1437 auto nDotPos = wsTemplateNS.Find('.', prefixLength); in RecognizeXFAVersionNumber() local
1438 if (!nDotPos.has_value()) in RecognizeXFAVersionNumber()
1442 wsTemplateNS.Substr(prefixLength, nDotPos.value() - prefixLength) in RecognizeXFAVersionNumber()
1446 .Substr(nDotPos.value() + 1, in RecognizeXFAVersionNumber()
1447 wsTemplateNS.GetLength() - nDotPos.value() - 2) in RecognizeXFAVersionNumber()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/core/tool/
H A Drangeutl.cxx837 sal_Int32 nDotPos = IndexOf(aBeginCell, '.', 0); in GetStringFromXMLRangeString() local
838 OUStringBuffer aBuf(aBeginCell.subView(0, nDotPos)); in GetStringFromXMLRangeString()
H A Dcompiler.cxx4206 sal_Int32 nDotPos = -1; in AutoCorrectParsedSymbol() local
4208 nDotPos = nTmp++; // the last one counts in AutoCorrectParsedSymbol()
4209 if ( nDotPos != -1 ) in AutoCorrectParsedSymbol()
4211 aTab[j] = aRef[j].copy( 0, nDotPos + 1 ); // with '.' in AutoCorrectParsedSymbol()
4212 aRef[j] = aRef[j].copy( nDotPos + 1 ); in AutoCorrectParsedSymbol()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/tool/
H A Drangeutl.cxx813 sal_Int32 nDotPos = IndexOf(aBeginCell, '.', 0); in GetStringFromXMLRangeString() local
814 OUStringBuffer aBuf = aBeginCell.copy(0, nDotPos); in GetStringFromXMLRangeString()
H A Dcompiler.cxx4117 sal_Int32 nDotPos = -1; in AutoCorrectParsedSymbol() local
4119 nDotPos = nTmp++; // the last one counts in AutoCorrectParsedSymbol()
4120 if ( nDotPos != -1 ) in AutoCorrectParsedSymbol()
4122 aTab[j] = aRef[j].copy( 0, nDotPos + 1 ); // with '.' in AutoCorrectParsedSymbol()
4123 aRef[j] = aRef[j].copy( nDotPos + 1 ); in AutoCorrectParsedSymbol()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/filter/ww8/
H A Dww8par5.cxx962 const sal_Int32 nDotPos = aStr.indexOf('.'); in Read_Field() local
969 (( nDotPos>=0 && nDotPos < nSpacePos ) || in Read_Field()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/filter/ww8/
H A Dww8par5.cxx974 const sal_Int32 nDotPos = aStr.indexOf('.'); in Read_Field() local
981 (( nDotPos>=0 && nDotPos < nSpacePos ) || in Read_Field()