summaryrefslogtreecommitdiff
path: root/reportdesign/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-10-14 14:29:51 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-10-17 10:39:11 +0200
commit425255567eafffba3a5817fb96050663d1db8e2f (patch)
treed4f78a9103c34367b2aa29feb31faf4e6871d01e /reportdesign/source
parent6125be0aa10113d840a1fdbe33cf3174d5896fcb (diff)
use more string_view
Change-Id: Ie826234aa9064b08b8f0647738b57c47ac0ed91a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141369 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'reportdesign/source')
-rw-r--r--reportdesign/source/core/misc/conditionalexpression.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/reportdesign/source/core/misc/conditionalexpression.cxx b/reportdesign/source/core/misc/conditionalexpression.cxx
index 0a0eda11f3fd..a395a371f445 100644
--- a/reportdesign/source/core/misc/conditionalexpression.cxx
+++ b/reportdesign/source/core/misc/conditionalexpression.cxx
@@ -64,7 +64,7 @@ namespace rptui
}
- bool ConditionalExpression::matchExpression( const OUString& _rExpression, const std::u16string_view _rFieldDataSource, OUString& _out_rLHS, OUString& _out_rRHS ) const
+ bool ConditionalExpression::matchExpression( std::u16string_view _rExpression, const std::u16string_view _rFieldDataSource, OUString& _out_rLHS, OUString& _out_rRHS ) const
{
// if we had regular expression, the matching would be pretty easy ...
// just replace $1 and $2 in the pattern with (.*), and then get them with \1 resp. \2.
@@ -90,9 +90,9 @@ namespace rptui
// up to the occurrence of the LHS (which must exist, see above), the two expressions
// must be identical
- if ( _rExpression.getLength() < nLHSIndex )
+ if ( sal_Int32(_rExpression.size()) < nLHSIndex )
return false;
- const std::u16string_view sExprPart1( _rExpression.subView( 0, nLHSIndex ) );
+ const std::u16string_view sExprPart1( _rExpression.substr( 0, nLHSIndex ) );
const std::u16string_view sMatchExprPart1( sMatchExpression.subView( 0, nLHSIndex ) );
if ( sExprPart1 != sMatchExprPart1 )
// the left-most expression parts do not match
@@ -103,10 +103,10 @@ namespace rptui
bool bHaveRHS( nRHSIndex != -1 );
sal_Int32 nRightMostIndex( bHaveRHS ? nRHSIndex : nLHSIndex );
const std::u16string_view sMatchExprPart3( sMatchExpression.subView( nRightMostIndex + 2 ) );
- if ( o3tl::make_unsigned(_rExpression.getLength()) < sMatchExprPart3.size() )
+ if ( _rExpression.size() < sMatchExprPart3.size() )
// the expression is not even long enough to hold the right-most part of the match expression
return false;
- const std::u16string_view sExprPart3( _rExpression.subView( _rExpression.getLength() - sMatchExprPart3.size() ) );
+ const std::u16string_view sExprPart3( _rExpression.substr( _rExpression.size() - sMatchExprPart3.size() ) );
if ( sExprPart3 != sMatchExprPart3 )
// the right-most expression parts do not match
return false;
@@ -114,7 +114,7 @@ namespace rptui
// if we don't have an RHS, we're done
if ( !bHaveRHS )
{
- _out_rLHS = _rExpression.copy( sExprPart1.size(), _rExpression.getLength() - sExprPart1.size() - sExprPart3.size() );
+ _out_rLHS = _rExpression.substr( sExprPart1.size(), _rExpression.size() - sExprPart1.size() - sExprPart3.size() );
return true;
}
@@ -125,9 +125,9 @@ namespace rptui
sMatchExpression.getLength() - nMatchExprPart2Start - sMatchExprPart3.size() - 2
);
// strip the expression by its left-most and right-most part
- const std::u16string_view sExpression( _rExpression.subView(
+ const std::u16string_view sExpression( _rExpression.substr(
sExprPart1.size(),
- _rExpression.getLength() - sExprPart1.size() - sExprPart3.size()
+ _rExpression.size() - sExprPart1.size() - sExprPart3.size()
) );
size_t nPart2Index = sExpression.find( sMatchExprPart2 );