Lines Matching refs:nValue

66                 sal_Int32 nValue = rtl_ustr_compare( aStr1.getStr(), aStr2.getStr());  in compare_001()  local
67 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in compare_001()
75 sal_Int32 nValue = rtl_ustr_compare( aStr1.getStr(), aStr2.getStr()); in compare_002() local
76 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in compare_002()
84 sal_Int32 nValue = rtl_ustr_compare( aStr1.getStr(), aStr2.getStr()); in compare_003() local
85 CPPUNIT_ASSERT_MESSAGE("compare failed, strings differ.", nValue != 0); in compare_003()
121 sal_Int32 nValue = rtl_ustr_compareIgnoreAsciiCase( aStr1.getStr(), aStr2.getStr()); in compare_001() local
122 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in compare_001()
130 sal_Int32 nValue = rtl_ustr_compareIgnoreAsciiCase( aStr1.getStr(), aStr2.getStr()); in compare_002() local
131 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in compare_002()
139 sal_Int32 nValue = rtl_ustr_compareIgnoreAsciiCase( aStr1.getStr(), aStr2.getStr()); in compare_002_1() local
140 … CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal (if case insensitve).", nValue == 0); in compare_002_1()
148 sal_Int32 nValue = rtl_ustr_compareIgnoreAsciiCase( aStr1.getStr(), aStr2.getStr()); in compare_003() local
149 CPPUNIT_ASSERT_MESSAGE("compare failed, strings differ.", nValue != 0); in compare_003()
187 …sal_Int32 nValue = rtl_ustr_shortenedCompareIgnoreAsciiCase_WithLength( aStr1.getStr(), aStr1.getL… in compare_001() local
188 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in compare_001()
196 …sal_Int32 nValue = rtl_ustr_shortenedCompareIgnoreAsciiCase_WithLength( aStr1.getStr(), aStr1.getL… in compare_002() local
199 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in compare_002()
207 …sal_Int32 nValue = rtl_ustr_shortenedCompareIgnoreAsciiCase_WithLength( aStr1.getStr(), aStr1.getL… in compare_002_1() local
210 … CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal (if case insensitve).", nValue == 0); in compare_002_1()
218 …sal_Int32 nValue = rtl_ustr_shortenedCompareIgnoreAsciiCase_WithLength( aStr1.getStr(), aStr1.getL… in compare_003() local
221 … CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal first 5 characters.", nValue == 0); in compare_003()
229 …sal_Int32 nValue = rtl_ustr_shortenedCompareIgnoreAsciiCase_WithLength( aStr1.getStr(), aStr1.getL… in compare_004() local
232 CPPUNIT_ASSERT_MESSAGE("compare failed, strings differ.", nValue != 0); in compare_004()
1036 …sal_Int32 nValue = rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength( suStr1, 0, sStr2.get… in ascii_shortenedCompareIgnoreAsciiCase_WithLength_001() local
1037 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in ascii_shortenedCompareIgnoreAsciiCase_WithLength_001()
1045 …sal_Int32 nValue = rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength( suStr1.getStr(), suS… in ascii_shortenedCompareIgnoreAsciiCase_WithLength_002() local
1046 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in ascii_shortenedCompareIgnoreAsciiCase_WithLength_002()
1054 …sal_Int32 nValue = rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength( suStr1.getStr(), suS… in ascii_shortenedCompareIgnoreAsciiCase_WithLength_003() local
1055 CPPUNIT_ASSERT_MESSAGE("compare failed, strings differ.", nValue != 0); in ascii_shortenedCompareIgnoreAsciiCase_WithLength_003()
1102 … sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength( suStr1, 0, sStr2.getStr()); in ascii_compareIgnoreAsciiCase_WithLength_001() local
1103 …PPUNIT_ASSERT_MESSAGE("compareIgnoreAsciiCase_WithLength failed, strings are equal.", nValue == 0); in ascii_compareIgnoreAsciiCase_WithLength_001()
1111 …sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength( suStr1.getStr(), suStr1.getLe… in ascii_compareIgnoreAsciiCase_WithLength_002() local
1112 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in ascii_compareIgnoreAsciiCase_WithLength_002()
1120 …sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength( suStr1.getStr(), suStr1.getLe… in ascii_compareIgnoreAsciiCase_WithLength_003() local
1121 CPPUNIT_ASSERT_MESSAGE("compare failed, strings differ.", nValue != 0); in ascii_compareIgnoreAsciiCase_WithLength_003()
1161 sal_Int32 nValue = rtl_ustr_ascii_compare( suStr1, sStr2.getStr()); in ascii_compare_001() local
1162 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in ascii_compare_001()
1170 sal_Int32 nValue = rtl_ustr_ascii_compare( suStr1.getStr(), sStr2.getStr()); in ascii_compare_002() local
1171 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in ascii_compare_002()
1179 sal_Int32 nValue = rtl_ustr_ascii_compare( suStr1.getStr(), sStr2.getStr()); in ascii_compare_003() local
1180 CPPUNIT_ASSERT_MESSAGE("compare failed, strings differ.", nValue != 0); in ascii_compare_003()
1219 sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase( suStr1, sStr2.getStr()); in ascii_compareIgnoreAsciiCase_001() local
1220 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in ascii_compareIgnoreAsciiCase_001()
1228 … sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase( suStr1.getStr(), sStr2.getStr()); in ascii_compareIgnoreAsciiCase_002() local
1229 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in ascii_compareIgnoreAsciiCase_002()
1237 … sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase( suStr1.getStr(), sStr2.getStr()); in ascii_compareIgnoreAsciiCase_002_1() local
1238 … CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal (if case insensitve).", nValue == 0); in ascii_compareIgnoreAsciiCase_002_1()
1246 … sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase( suStr1.getStr(), sStr2.getStr()); in ascii_compareIgnoreAsciiCase_003() local
1247 CPPUNIT_ASSERT_MESSAGE("compare failed, strings differ.", nValue != 0); in ascii_compareIgnoreAsciiCase_003()
1317 sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase( suStr1, sStr2.getStr()); in ascii_compareIgnoreAsciiCase_001() local
1318 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in ascii_compareIgnoreAsciiCase_001()
1326 … sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase( suStr1.getStr(), sStr2.getStr()); in ascii_compareIgnoreAsciiCase_002() local
1327 CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal.", nValue == 0); in ascii_compareIgnoreAsciiCase_002()
1335 … sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase( suStr1.getStr(), sStr2.getStr()); in ascii_compareIgnoreAsciiCase_002_1() local
1336 … CPPUNIT_ASSERT_MESSAGE("compare failed, strings are equal (if case insensitve).", nValue == 0); in ascii_compareIgnoreAsciiCase_002_1()
1344 … sal_Int32 nValue = rtl_ustr_ascii_compareIgnoreAsciiCase( suStr1.getStr(), sStr2.getStr()); in ascii_compareIgnoreAsciiCase_003() local
1345 CPPUNIT_ASSERT_MESSAGE("compare failed, strings differ.", nValue != 0); in ascii_compareIgnoreAsciiCase_003()