Home
last modified time | relevance | path

Searched refs:rStr1 (Results 1 – 25 of 26) sorted by relevance

12

/dports/editors/libreoffice/libreoffice-7.2.6.2/i18nlangtag/qa/cppunit/
H A Dtest_languagetag.cxx686 if (rStr1 == u"la-Latn" ) return rStr2 == u"la"; in checkMapping()
688 if (rStr1 == u"bs-Latn-BA" ) return rStr2 == u"bs-BA"; in checkMapping()
689 if (rStr1 == u"bs-Latn" ) return rStr2 == u"bs"; in checkMapping()
690 if (rStr1 == u"cz" ) return rStr2 == u"cs-CZ"; in checkMapping()
691 if (rStr1 == u"iw-IL" ) return rStr2 == u"he-IL"; in checkMapping()
692 if (rStr1 == u"in-ID" ) return rStr2 == u"id-ID"; in checkMapping()
693 if (rStr1 == u"sr-YU" ) return rStr2 == u"sr-CS"; in checkMapping()
705 if (rStr1 == u"ven-ZA" ) return rStr2 == u"ve-ZA"; in checkMapping()
725 if (rStr1 == u"sr-Cyrl" ) return rStr2 == u"sr"; in checkMapping()
731 if (rStr1 == u"ku-Arab" ) return rStr2 == u"ckb"; in checkMapping()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/i18nlangtag/qa/cppunit/
H A Dtest_languagetag.cxx687 if (rStr1 == "la-Latn" ) return rStr2 == "la"; in checkMapping()
689 if (rStr1 == "bs-Latn-BA" ) return rStr2 == "bs-BA"; in checkMapping()
690 if (rStr1 == "bs-Latn" ) return rStr2 == "bs"; in checkMapping()
691 if (rStr1 == "cz" ) return rStr2 == "cs-CZ"; in checkMapping()
692 if (rStr1 == "iw-IL" ) return rStr2 == "he-IL"; in checkMapping()
693 if (rStr1 == "in-ID" ) return rStr2 == "id-ID"; in checkMapping()
694 if (rStr1 == "sr-YU" ) return rStr2 == "sr-CS"; in checkMapping()
706 if (rStr1 == "ven-ZA" ) return rStr2 == "ve-ZA"; in checkMapping()
726 if (rStr1 == "sr-Cyrl" ) return rStr2 == "sr"; in checkMapping()
732 if (rStr1 == "ku-Arab" ) return rStr2 == "ckb"; in checkMapping()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/unotools/source/i18n/
H A Dtransliterationwrapper.cxx179 const OUString& rStr1, sal_Int32 nPos1, sal_Int32 nCount1, sal_Int32& nMatch1, in equals() argument
187 return xTrans->equals( rStr1, nPos1, nCount1, nMatch1, rStr2, nPos2, nCount2, nMatch2 ); in equals()
196 sal_Int32 TransliterationWrapper::compareString( const OUString& rStr1, const OUString& rStr2 ) con… in compareString() argument
203 return xTrans->compareString( rStr1, rStr2 ); in compareString()
214 bool TransliterationWrapper::isEqual( const OUString& rStr1, const OUString& rStr2 ) const in isEqual() argument
218 rStr1, 0, rStr1.getLength(), nMatch1, in isEqual()
223 bool TransliterationWrapper::isMatch( const OUString& rStr1, const OUString& rStr2 ) const in isMatch() argument
227 rStr1, 0, rStr1.getLength(), nMatch1, in isMatch()
229 return (nMatch1 <= nMatch2) && (nMatch1 == rStr1.getLength()); in isMatch()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/unotools/source/i18n/
H A Dtransliterationwrapper.cxx179 const OUString& rStr1, sal_Int32 nPos1, sal_Int32 nCount1, sal_Int32& nMatch1, in equals() argument
187 return xTrans->equals( rStr1, nPos1, nCount1, nMatch1, rStr2, nPos2, nCount2, nMatch2 ); in equals()
196 sal_Int32 TransliterationWrapper::compareString( const OUString& rStr1, const OUString& rStr2 ) con… in compareString() argument
203 return xTrans->compareString( rStr1, rStr2 ); in compareString()
214 bool TransliterationWrapper::isEqual( const OUString& rStr1, const OUString& rStr2 ) const in isEqual() argument
218 rStr1, 0, rStr1.getLength(), nMatch1, in isEqual()
223 bool TransliterationWrapper::isMatch( const OUString& rStr1, const OUString& rStr2 ) const in isMatch() argument
227 rStr1, 0, rStr1.getLength(), nMatch1, in isMatch()
229 return (nMatch1 <= nMatch2) && (nMatch1 == rStr1.getLength()); in isMatch()
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/unotools/
H A Dtransliterationwrapper.hxx99 const OUString& rStr1, sal_Int32 nPos1, sal_Int32 nCount1, sal_Int32& nMatch1,
102 sal_Int32 compareString( const OUString& rStr1, const OUString& rStr2 ) const;
110 bool isEqual( const OUString& rStr1, const OUString& rStr2 ) const;
114 bool isMatch( const OUString& rStr1, const OUString& rStr2 ) const;
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/unotools/
H A Dtransliterationwrapper.hxx104 const OUString& rStr1, sal_Int32 nPos1, sal_Int32 nCount1, sal_Int32& nMatch1,
107 sal_Int32 compareString( const OUString& rStr1, const OUString& rStr2 ) const;
115 bool isEqual( const OUString& rStr1, const OUString& rStr2 ) const;
119 bool isMatch( const OUString& rStr1, const OUString& rStr2 ) const;
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/rtl/
H A Dstring.hxx963 friend bool operator == ( const OString& rStr1, const OString& rStr2 ) in operator ==() argument
964 { return rStr1.equals(rStr2); } in operator ==()
966 { return !(operator == ( rStr1, rStr2 )); } in operator !=()
968 { return rStr1.compareTo( rStr2 ) < 0; } in operator <()
970 { return rStr1.compareTo( rStr2 ) > 0; } in operator >()
972 { return rStr1.compareTo( rStr2 ) <= 0; } in operator <=()
974 { return rStr1.compareTo( rStr2 ) >= 0; } in operator >=()
979 return rStr1.compareTo( value ) == 0; in operator ==()
985 return rStr1.compareTo( value ) == 0; in operator ==()
1047 return !(operator == ( rStr1, value )); in operator !=()
[all …]
H A Dustring.hxx1743 friend bool operator == ( const OUString& rStr1, const OUString& rStr2 ) in operator ==() argument
1744 { return rStr1.equals(rStr2); } in operator ==()
1746 { return rStr1.compareTo( pStr2 ) == 0; } in operator ==()
1751 { return !(operator == ( rStr1, rStr2 )); } in operator !=()
1753 { return !(operator == ( rStr1, pStr2 )); } in operator !=()
1758 { return rStr1.compareTo( rStr2 ) < 0; } in operator <()
1760 { return rStr1.compareTo( rStr2 ) > 0; } in operator >()
1762 { return rStr1.compareTo( rStr2 ) <= 0; } in operator <=()
1764 { return rStr1.compareTo( rStr2 ) >= 0; } in operator >=()
2280 friend OUString operator+( const OUString& rStr1, const OUString& rStr2 ) in operator +() argument
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/app/
H A Di18nhelp.cxx107 sal_Int32 vcl::I18nHelper::CompareString( const OUString& rStr1, const OUString& rStr2 ) const in CompareString() argument
119 OUString aStr1( filterFormattingChars(rStr1) ); in CompareString()
124 bool vcl::I18nHelper::MatchString( const OUString& rStr1, const OUString& rStr2 ) const in MatchString() argument
136 OUString aStr1( filterFormattingChars(rStr1) ); in MatchString()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/app/
H A Di18nhelp.cxx107 sal_Int32 vcl::I18nHelper::CompareString( const OUString& rStr1, const OUString& rStr2 ) const in CompareString() argument
119 OUString aStr1( filterFormattingChars(rStr1) ); in CompareString()
124 bool vcl::I18nHelper::MatchString( const OUString& rStr1, const OUString& rStr2 ) const in MatchString() argument
136 OUString aStr1( filterFormattingChars(rStr1) ); in MatchString()
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/rtl/
H A Dstring.hxx1167 friend bool operator == ( const OString& rStr1, const OString& rStr2 ) in operator ==() argument
1168 { return rStr1.equals(rStr2); } in operator ==()
1170 { return !(operator == ( rStr1, rStr2 )); } in operator !=()
1172 { return rStr1.compareTo( rStr2 ) < 0; } in operator <()
1174 { return rStr1.compareTo( rStr2 ) > 0; } in operator >()
1176 { return rStr1.compareTo( rStr2 ) <= 0; } in operator <=()
1178 { return rStr1.compareTo( rStr2 ) >= 0; } in operator >=()
1183 return rStr1.compareTo( value ) == 0; in operator ==()
1189 return rStr1.compareTo( value ) == 0; in operator ==()
1251 return !(operator == ( rStr1, value )); in operator !=()
[all …]
H A Dustring.hxx1670 friend bool operator == ( const OUString& rStr1, const OUString& rStr2 ) in operator ==() argument
1671 { return rStr1.equals(rStr2); } in operator ==()
1674 { return !(operator == ( rStr1, rStr2 )); } in operator !=()
1677 { return rStr1.compareTo( rStr2 ) < 0; } in operator <()
1679 { return rStr1.compareTo( rStr2 ) > 0; } in operator >()
1681 { return rStr1.compareTo( rStr2 ) <= 0; } in operator <=()
1683 { return rStr1.compareTo( rStr2 ) >= 0; } in operator >=()
1730 { return rStr1.compareTo( pStr2 ) == 0; } in operator ==()
1735 { return !(operator == ( rStr1, pStr2 )); } in operator !=()
2298 friend OUString operator+( const OUString& rStr1, const OUString& rStr2 ) in operator +() argument
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/vcl/
H A Di18nhelp.hxx63 sal_Int32 CompareString( const OUString& rStr1, const OUString& rStr2 ) const;
65 bool MatchString( const OUString& rStr1, const OUString& rStr2 ) const;
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/vcl/
H A Di18nhelp.hxx68 sal_Int32 CompareString( const OUString& rStr1, const OUString& rStr2 ) const;
70 bool MatchString( const OUString& rStr1, const OUString& rStr2 ) const;
/dports/editors/libreoffice6/libreoffice-6.4.7.2/framework/source/uielement/
H A Dfontmenucontroller.cxx50 static bool lcl_I18nCompareString(const OUString& rStr1, const OUString& rStr2) in lcl_I18nCompareString() argument
53 return rI18nHelper.CompareString( rStr1, rStr2 ) < 0; in lcl_I18nCompareString()
/dports/editors/libreoffice/libreoffice-7.2.6.2/framework/source/uielement/
H A Dfontmenucontroller.cxx50 static bool lcl_I18nCompareString(const OUString& rStr1, const OUString& rStr2) in lcl_I18nCompareString() argument
53 return rI18nHelper.CompareString( rStr1, rStr2 ) < 0; in lcl_I18nCompareString()
/dports/editors/libreoffice/libreoffice-7.2.6.2/basic/source/runtime/
H A Dmethods.cxx889 const OUString& rStr1 = rPar.Get(nFirstStringPos)->GetOUString(); in SbRtl_InStr() local
890 const sal_Int32 nrStr1Len = rStr1.getLength(); in SbRtl_InStr()
900 nPos = rStr1.indexOf( rToken, nStartPos - 1 ) + 1; in SbRtl_InStr()
913 nPos = textSearch.SearchForward(rStr1, &nStart, &nEnd) ? nStart + 1 : 0; in SbRtl_InStr()
1540 const OUString& rStr1 = rPar.Get(1)->GetOUString(); in SbRtl_StrComp() local
1579 nRetValue = pTransliterationWrapper->compareString( rStr1, rStr2 ); in SbRtl_StrComp()
1584 aResult = rStr1.compareTo( rStr2 ); in SbRtl_StrComp()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sd/qa/unit/
H A Dexport-tests-ooxml2.cxx65 static void assertMotionPath(const OUString &rStr1, const OUString &rStr2, const CppUnit::SourceLin… in assertMotionPath() argument
71 OUStringToOString(rStr1, RTL_TEXTENCODING_UTF8) + in assertMotionPath()
76 OUString aToken1 = rStr1.getToken(0, ' ', nIdx1); in assertMotionPath()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/ui/app/
H A Dinputwin.cxx1760 static sal_Int32 findFirstNonMatchingChar(const OUString& rStr1, const OUString& rStr2) in findFirstNonMatchingChar() argument
1763 const sal_Unicode* pStr1 = rStr1.getStr(); in findFirstNonMatchingChar()
1766 while ( i < rStr1.getLength() ) in findFirstNonMatchingChar()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/basic/source/runtime/
H A Dmethods.cxx906 const OUString& rStr1 = rPar.Get(nFirstStringPos)->GetOUString(); in SbRtl_InStr() local
907 nPos = rStr1.indexOf( rToken, nStartPos - 1 ) + 1; in SbRtl_InStr()
1520 const OUString& rStr1 = rPar.Get(1)->GetOUString(); in SbRtl_StrComp() local
1559 nRetValue = pTransliterationWrapper->compareString( rStr1, rStr2 ); in SbRtl_StrComp()
1564 aResult = rStr1.compareTo( rStr2 ); in SbRtl_StrComp()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/app/
H A Dinputwin.cxx1885 static sal_Int32 findFirstNonMatchingChar(const OUString& rStr1, const OUString& rStr2) in findFirstNonMatchingChar() argument
1888 const sal_Unicode* pStr1 = rStr1.getStr(); in findFirstNonMatchingChar()
1891 while ( i < rStr1.getLength() ) in findFirstNonMatchingChar()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sd/qa/unit/
H A Dexport-tests-ooxml2.cxx61 static void assertMotionPath(const OUString &rStr1, const OUString &rStr2, const CppUnit::SourceLin… in assertMotionPath() argument
66 OString sMessage = OUStringToOString("Motion path values mismatch.\nExpect: " + rStr1 + in assertMotionPath()
71 OUString aToken1 = rStr1.getToken(0, ' ', nIdx1); in assertMotionPath()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/view/
H A Ddbfunc3.cxx1684 bool operator()(const OUString& rStr1, const OUString& rStr2) const in operator ()()
1686 return ( mpCollator->compareString(rStr1, rStr2) < 0 ); in operator ()()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/window/
H A Dprintdlg.cxx63 bool lcl_ListBoxCompare( const OUString& rStr1, const OUString& rStr2 ) in lcl_ListBoxCompare() argument
65 return vcl::NaturalSortCompare( rStr1, rStr2 ) < 0; in lcl_ListBoxCompare()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/ui/view/
H A Ddbfunc3.cxx1628 bool operator()(const OUString& rStr1, const OUString& rStr2) const in operator ()()
1630 return ( mpCollator->compareString(rStr1, rStr2) < 0 ); in operator ()()

12