Lines Matching refs:b

266         bool b = true;  in testVoid()  local
267 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testVoid()
270 sal_Bool b = true; in testVoid() local
271 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testVoid()
274 sal_Int8 b = 2; in testVoid() local
275 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testVoid()
278 sal_uInt8 b = 2; in testVoid() local
279 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testVoid()
282 sal_Int16 b = 2; in testVoid() local
283 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testVoid()
286 sal_uInt16 b = 2; in testVoid() local
287 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testVoid()
290 sal_Int32 b = 2; in testVoid() local
291 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testVoid()
294 sal_uInt32 b = 2; in testVoid() local
295 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testVoid()
298 sal_Int64 b = 2; in testVoid() local
299 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testVoid()
302 sal_uInt64 b = 2; in testVoid() local
303 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testVoid()
306 float b = 2; in testVoid() local
307 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testVoid()
310 double b = 2; in testVoid() local
311 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testVoid()
314 sal_Unicode b = '2'; in testVoid() local
315 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testVoid()
318 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testVoid() local
321 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testVoid()
324 css::uno::Type b(getCppuType< rtl::OUString >()); in testVoid() local
327 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testVoid()
330 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testVoid() local
331 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testVoid()
334 css::uno::Sequence< rtl::OUString > b(2); in testVoid() local
336 "css::uno::Sequence<rtl::OUString>", !(a >>= b) && b.getLength() == 2); in testVoid()
339 Enum1 b = Enum1_M2; in testVoid() local
340 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testVoid()
343 Struct1 b(2); in testVoid() local
344 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testVoid()
347 Exception1 b( in testVoid() local
349 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testVoid()
353 css::uno::Reference< Interface1 > b(i); in testVoid() local
354 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testVoid()
362 bool b = true; in testBoolean() local
363 CPPUNIT_ASSERT_MESSAGE("bool", (a >>= b) && !b); in testBoolean()
366 sal_Bool b = true; in testBoolean() local
367 CPPUNIT_ASSERT_MESSAGE("sal_Bool", (a >>= b) && !b); in testBoolean()
370 sal_Int8 b = 2; in testBoolean() local
371 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testBoolean()
374 sal_uInt8 b = 2; in testBoolean() local
376 CPPUNIT_ASSERT_MESSAGE("@sal_uInt8", (a >>= b) && b == 0); in testBoolean()
378 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testBoolean()
382 sal_Int16 b = 2; in testBoolean() local
383 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testBoolean()
386 sal_uInt16 b = 2; in testBoolean() local
387 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testBoolean()
390 sal_Int32 b = 2; in testBoolean() local
391 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testBoolean()
394 sal_uInt32 b = 2; in testBoolean() local
395 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testBoolean()
398 sal_Int64 b = 2; in testBoolean() local
399 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testBoolean()
402 sal_uInt64 b = 2; in testBoolean() local
403 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testBoolean()
406 float b = 2; in testBoolean() local
407 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testBoolean()
410 double b = 2; in testBoolean() local
411 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testBoolean()
414 sal_Unicode b = '2'; in testBoolean() local
415 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testBoolean()
418 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testBoolean() local
421 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testBoolean()
424 css::uno::Type b(getCppuType< rtl::OUString >()); in testBoolean() local
427 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testBoolean()
430 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testBoolean() local
431 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testBoolean()
434 css::uno::Sequence< rtl::OUString > b(2); in testBoolean() local
437 !(a >>= b) && b.getLength() == 2); in testBoolean()
440 Enum1 b = Enum1_M2; in testBoolean() local
441 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testBoolean()
444 Struct1 b(2); in testBoolean() local
445 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testBoolean()
448 Exception1 b( in testBoolean() local
450 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testBoolean()
454 css::uno::Reference< Interface1 > b(i); in testBoolean() local
455 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testBoolean()
463 bool b = true; in testByte() local
464 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testByte()
467 sal_Bool b = true; in testByte() local
468 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testByte()
471 sal_Int8 b = 2; in testByte() local
472 CPPUNIT_ASSERT_MESSAGE("sal_Int8", (a >>= b) && b == 1); in testByte()
475 sal_uInt8 b = 2; in testByte() local
476 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testByte()
479 sal_Int16 b = 2; in testByte() local
480 CPPUNIT_ASSERT_MESSAGE("sal_Int16", (a >>= b) && b == 1); in testByte()
483 sal_uInt16 b = 2; in testByte() local
484 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", (a >>= b) && b == 1); in testByte()
487 sal_Int32 b = 2; in testByte() local
488 CPPUNIT_ASSERT_MESSAGE("sal_Int32", (a >>= b) && b == 1); in testByte()
491 sal_uInt32 b = 2; in testByte() local
492 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", (a >>= b) && b == 1); in testByte()
495 sal_Int64 b = 2; in testByte() local
496 CPPUNIT_ASSERT_MESSAGE("sal_Int64", (a >>= b) && b == 1); in testByte()
499 sal_uInt64 b = 2; in testByte() local
500 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", (a >>= b) && b == 1); in testByte()
503 float b = 2; in testByte() local
504 CPPUNIT_ASSERT_MESSAGE("float", (a >>= b) && b == 1); in testByte()
507 double b = 2; in testByte() local
508 CPPUNIT_ASSERT_MESSAGE("double", (a >>= b) && b == 1); in testByte()
511 sal_Unicode b = '2'; in testByte() local
513 CPPUNIT_ASSERT_MESSAGE("@sal_Unicode", (a >>= b) && b == 1); in testByte()
515 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testByte()
519 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testByte() local
522 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testByte()
525 css::uno::Type b(getCppuType< rtl::OUString >()); in testByte() local
528 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testByte()
531 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testByte() local
532 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testByte()
535 css::uno::Sequence< rtl::OUString > b(2); in testByte() local
538 !(a >>= b) && b.getLength() == 2); in testByte()
541 Enum1 b = Enum1_M2; in testByte() local
542 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testByte()
545 Struct1 b(2); in testByte() local
546 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testByte()
549 Exception1 b( in testByte() local
551 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testByte()
555 css::uno::Reference< Interface1 > b(i); in testByte() local
556 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testByte()
564 bool b = true; in testShort() local
565 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testShort()
568 sal_Bool b = true; in testShort() local
569 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testShort()
572 sal_Int8 b = 2; in testShort() local
573 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testShort()
576 sal_uInt8 b = 2; in testShort() local
577 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testShort()
580 sal_Int16 b = 2; in testShort() local
581 CPPUNIT_ASSERT_MESSAGE("sal_Int16", (a >>= b) && b == 1); in testShort()
584 sal_uInt16 b = 2; in testShort() local
585 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", (a >>= b) && b == 1); in testShort()
588 sal_Int32 b = 2; in testShort() local
589 CPPUNIT_ASSERT_MESSAGE("sal_Int32", (a >>= b) && b == 1); in testShort()
592 sal_uInt32 b = 2; in testShort() local
593 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", (a >>= b) && b == 1); in testShort()
596 sal_Int64 b = 2; in testShort() local
597 CPPUNIT_ASSERT_MESSAGE("sal_Int64", (a >>= b) && b == 1); in testShort()
600 sal_uInt64 b = 2; in testShort() local
601 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", (a >>= b) && b == 1); in testShort()
604 float b = 2; in testShort() local
605 CPPUNIT_ASSERT_MESSAGE("float", (a >>= b) && b == 1); in testShort()
608 double b = 2; in testShort() local
609 CPPUNIT_ASSERT_MESSAGE("double", (a >>= b) && b == 1); in testShort()
612 sal_Unicode b = '2'; in testShort() local
614 CPPUNIT_ASSERT_MESSAGE("@sal_Unicode", (a >>= b) && b == 1); in testShort()
616 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testShort()
620 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testShort() local
623 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testShort()
626 css::uno::Type b(getCppuType< rtl::OUString >()); in testShort() local
629 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testShort()
632 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testShort() local
633 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testShort()
636 css::uno::Sequence< rtl::OUString > b(2); in testShort() local
639 !(a >>= b) && b.getLength() == 2); in testShort()
642 Enum1 b = Enum1_M2; in testShort() local
643 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testShort()
646 Struct1 b(2); in testShort() local
647 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testShort()
650 Exception1 b( in testShort() local
652 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testShort()
656 css::uno::Reference< Interface1 > b(i); in testShort() local
657 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testShort()
667 bool b = true; in testUnsignedShort() local
668 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testUnsignedShort()
671 sal_Bool b = true; in testUnsignedShort() local
672 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testUnsignedShort()
675 sal_Int8 b = 2; in testUnsignedShort() local
676 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testUnsignedShort()
679 sal_uInt8 b = 2; in testUnsignedShort() local
680 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testUnsignedShort()
683 sal_Int16 b = 2; in testUnsignedShort() local
684 CPPUNIT_ASSERT_MESSAGE("sal_Int16", (a >>= b) && b == 1); in testUnsignedShort()
687 sal_uInt16 b = 2; in testUnsignedShort() local
688 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", (a >>= b) && b == 1); in testUnsignedShort()
691 sal_Int32 b = 2; in testUnsignedShort() local
692 CPPUNIT_ASSERT_MESSAGE("sal_Int32", (a >>= b) && b == 1); in testUnsignedShort()
695 sal_uInt32 b = 2; in testUnsignedShort() local
696 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", (a >>= b) && b == 1); in testUnsignedShort()
699 sal_Int64 b = 2; in testUnsignedShort() local
700 CPPUNIT_ASSERT_MESSAGE("sal_Int64", (a >>= b) && b == 1); in testUnsignedShort()
703 sal_uInt64 b = 2; in testUnsignedShort() local
704 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", (a >>= b) && b == 1); in testUnsignedShort()
707 float b = 2; in testUnsignedShort() local
708 CPPUNIT_ASSERT_MESSAGE("float", (a >>= b) && b == 1); in testUnsignedShort()
711 double b = 2; in testUnsignedShort() local
712 CPPUNIT_ASSERT_MESSAGE("double", (a >>= b) && b == 1); in testUnsignedShort()
715 sal_Unicode b = '2'; in testUnsignedShort() local
717 CPPUNIT_ASSERT_MESSAGE("@sal_Unicode", (a >>= b) && b == 1); in testUnsignedShort()
719 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testUnsignedShort()
723 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testUnsignedShort() local
726 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testUnsignedShort()
729 css::uno::Type b(getCppuType< rtl::OUString >()); in testUnsignedShort() local
732 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testUnsignedShort()
735 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testUnsignedShort() local
736 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testUnsignedShort()
739 css::uno::Sequence< rtl::OUString > b(2); in testUnsignedShort() local
742 !(a >>= b) && b.getLength() == 2); in testUnsignedShort()
745 Enum1 b = Enum1_M2; in testUnsignedShort() local
746 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testUnsignedShort()
749 Struct1 b(2); in testUnsignedShort() local
750 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testUnsignedShort()
753 Exception1 b( in testUnsignedShort() local
755 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testUnsignedShort()
759 css::uno::Reference< Interface1 > b(i); in testUnsignedShort() local
760 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testUnsignedShort()
768 bool b = true; in testLong() local
769 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testLong()
772 sal_Bool b = true; in testLong() local
773 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testLong()
776 sal_Int8 b = 2; in testLong() local
777 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testLong()
780 sal_uInt8 b = 2; in testLong() local
781 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testLong()
784 sal_Int16 b = 2; in testLong() local
785 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testLong()
788 sal_uInt16 b = 2; in testLong() local
789 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testLong()
792 sal_Int32 b = 2; in testLong() local
793 CPPUNIT_ASSERT_MESSAGE("sal_Int32", (a >>= b) && b == 1); in testLong()
796 sal_uInt32 b = 2; in testLong() local
797 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", (a >>= b) && b == 1); in testLong()
800 sal_Int64 b = 2; in testLong() local
801 CPPUNIT_ASSERT_MESSAGE("sal_Int64", (a >>= b) && b == 1); in testLong()
804 sal_uInt64 b = 2; in testLong() local
805 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", (a >>= b) && b == 1); in testLong()
808 float b = 2; in testLong() local
809 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testLong()
812 double b = 2; in testLong() local
813 CPPUNIT_ASSERT_MESSAGE("double", (a >>= b) && b == 1); in testLong()
816 sal_Unicode b = '2'; in testLong() local
817 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testLong()
820 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testLong() local
823 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testLong()
826 css::uno::Type b(getCppuType< rtl::OUString >()); in testLong() local
829 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testLong()
832 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testLong() local
833 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testLong()
836 css::uno::Sequence< rtl::OUString > b(2); in testLong() local
839 !(a >>= b) && b.getLength() == 2); in testLong()
842 Enum1 b = Enum1_M2; in testLong() local
843 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testLong()
846 Struct1 b(2); in testLong() local
847 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testLong()
850 Exception1 b( in testLong() local
852 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testLong()
856 css::uno::Reference< Interface1 > b(i); in testLong() local
857 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testLong()
865 bool b = true; in testUnsignedLong() local
866 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testUnsignedLong()
869 sal_Bool b = true; in testUnsignedLong() local
870 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testUnsignedLong()
873 sal_Int8 b = 2; in testUnsignedLong() local
874 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testUnsignedLong()
877 sal_uInt8 b = 2; in testUnsignedLong() local
878 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testUnsignedLong()
881 sal_Int16 b = 2; in testUnsignedLong() local
882 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testUnsignedLong()
885 sal_uInt16 b = 2; in testUnsignedLong() local
886 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testUnsignedLong()
889 sal_Int32 b = 2; in testUnsignedLong() local
890 CPPUNIT_ASSERT_MESSAGE("sal_Int32", (a >>= b) && b == 1); in testUnsignedLong()
893 sal_uInt32 b = 2; in testUnsignedLong() local
894 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", (a >>= b) && b == 1); in testUnsignedLong()
897 sal_Int64 b = 2; in testUnsignedLong() local
898 CPPUNIT_ASSERT_MESSAGE("sal_Int64", (a >>= b) && b == 1); in testUnsignedLong()
901 sal_uInt64 b = 2; in testUnsignedLong() local
902 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", (a >>= b) && b == 1); in testUnsignedLong()
905 float b = 2; in testUnsignedLong() local
906 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testUnsignedLong()
909 double b = 2; in testUnsignedLong() local
910 CPPUNIT_ASSERT_MESSAGE("double", (a >>= b) && b == 1); in testUnsignedLong()
913 sal_Unicode b = '2'; in testUnsignedLong() local
914 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testUnsignedLong()
917 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testUnsignedLong() local
920 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testUnsignedLong()
923 css::uno::Type b(getCppuType< rtl::OUString >()); in testUnsignedLong() local
926 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testUnsignedLong()
929 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testUnsignedLong() local
930 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testUnsignedLong()
933 css::uno::Sequence< rtl::OUString > b(2); in testUnsignedLong() local
936 !(a >>= b) && b.getLength() == 2); in testUnsignedLong()
939 Enum1 b = Enum1_M2; in testUnsignedLong() local
940 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testUnsignedLong()
943 Struct1 b(2); in testUnsignedLong() local
944 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testUnsignedLong()
947 Exception1 b( in testUnsignedLong() local
949 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testUnsignedLong()
953 css::uno::Reference< Interface1 > b(i); in testUnsignedLong() local
954 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testUnsignedLong()
962 bool b = true; in testHyper() local
963 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testHyper()
966 sal_Bool b = true; in testHyper() local
967 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testHyper()
970 sal_Int8 b = 2; in testHyper() local
971 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testHyper()
974 sal_uInt8 b = 2; in testHyper() local
975 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testHyper()
978 sal_Int16 b = 2; in testHyper() local
979 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testHyper()
982 sal_uInt16 b = 2; in testHyper() local
983 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testHyper()
986 sal_Int32 b = 2; in testHyper() local
987 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testHyper()
990 sal_uInt32 b = 2; in testHyper() local
991 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testHyper()
994 sal_Int64 b = 2; in testHyper() local
995 CPPUNIT_ASSERT_MESSAGE("sal_Int64", (a >>= b) && b == 1); in testHyper()
998 sal_uInt64 b = 2; in testHyper() local
999 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", (a >>= b) && b == 1); in testHyper()
1002 float b = 2; in testHyper() local
1003 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testHyper()
1006 double b = 2; in testHyper() local
1007 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testHyper()
1010 sal_Unicode b = '2'; in testHyper() local
1011 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testHyper()
1014 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testHyper() local
1017 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testHyper()
1020 css::uno::Type b(getCppuType< rtl::OUString >()); in testHyper() local
1023 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testHyper()
1026 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testHyper() local
1027 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testHyper()
1030 css::uno::Sequence< rtl::OUString > b(2); in testHyper() local
1033 !(a >>= b) && b.getLength() == 2); in testHyper()
1036 Enum1 b = Enum1_M2; in testHyper() local
1037 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testHyper()
1040 Struct1 b(2); in testHyper() local
1041 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testHyper()
1044 Exception1 b( in testHyper() local
1046 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testHyper()
1050 css::uno::Reference< Interface1 > b(i); in testHyper() local
1051 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testHyper()
1059 bool b = true; in testUnsignedHyper() local
1060 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testUnsignedHyper()
1063 sal_Bool b = true; in testUnsignedHyper() local
1064 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testUnsignedHyper()
1067 sal_Int8 b = 2; in testUnsignedHyper() local
1068 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testUnsignedHyper()
1071 sal_uInt8 b = 2; in testUnsignedHyper() local
1072 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testUnsignedHyper()
1075 sal_Int16 b = 2; in testUnsignedHyper() local
1076 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testUnsignedHyper()
1079 sal_uInt16 b = 2; in testUnsignedHyper() local
1080 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testUnsignedHyper()
1083 sal_Int32 b = 2; in testUnsignedHyper() local
1084 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testUnsignedHyper()
1087 sal_uInt32 b = 2; in testUnsignedHyper() local
1088 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testUnsignedHyper()
1091 sal_Int64 b = 2; in testUnsignedHyper() local
1092 CPPUNIT_ASSERT_MESSAGE("sal_Int64", (a >>= b) && b == 1); in testUnsignedHyper()
1095 sal_uInt64 b = 2; in testUnsignedHyper() local
1096 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", (a >>= b) && b == 1); in testUnsignedHyper()
1099 float b = 2; in testUnsignedHyper() local
1100 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testUnsignedHyper()
1103 double b = 2; in testUnsignedHyper() local
1104 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testUnsignedHyper()
1107 sal_Unicode b = '2'; in testUnsignedHyper() local
1108 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testUnsignedHyper()
1111 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testUnsignedHyper() local
1114 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testUnsignedHyper()
1117 css::uno::Type b(getCppuType< rtl::OUString >()); in testUnsignedHyper() local
1120 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testUnsignedHyper()
1123 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testUnsignedHyper() local
1124 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testUnsignedHyper()
1127 css::uno::Sequence< rtl::OUString > b(2); in testUnsignedHyper() local
1130 !(a >>= b) && b.getLength() == 2); in testUnsignedHyper()
1133 Enum1 b = Enum1_M2; in testUnsignedHyper() local
1134 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testUnsignedHyper()
1137 Struct1 b(2); in testUnsignedHyper() local
1138 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testUnsignedHyper()
1141 Exception1 b( in testUnsignedHyper() local
1143 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testUnsignedHyper()
1147 css::uno::Reference< Interface1 > b(i); in testUnsignedHyper() local
1148 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testUnsignedHyper()
1156 bool b = true; in testFloat() local
1157 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testFloat()
1160 sal_Bool b = true; in testFloat() local
1161 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testFloat()
1164 sal_Int8 b = 2; in testFloat() local
1165 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testFloat()
1168 sal_uInt8 b = 2; in testFloat() local
1169 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testFloat()
1172 sal_Int16 b = 2; in testFloat() local
1173 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testFloat()
1176 sal_uInt16 b = 2; in testFloat() local
1177 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testFloat()
1180 sal_Int32 b = 2; in testFloat() local
1181 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testFloat()
1184 sal_uInt32 b = 2; in testFloat() local
1185 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testFloat()
1188 sal_Int64 b = 2; in testFloat() local
1189 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testFloat()
1192 sal_uInt64 b = 2; in testFloat() local
1193 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testFloat()
1196 float b = 2; in testFloat() local
1197 CPPUNIT_ASSERT_MESSAGE("float", (a >>= b) && b == 1); in testFloat()
1200 double b = 2; in testFloat() local
1201 CPPUNIT_ASSERT_MESSAGE("double", (a >>= b) && b == 1); in testFloat()
1204 sal_Unicode b = '2'; in testFloat() local
1205 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testFloat()
1208 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testFloat() local
1211 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testFloat()
1214 css::uno::Type b(getCppuType< rtl::OUString >()); in testFloat() local
1217 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testFloat()
1220 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testFloat() local
1221 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testFloat()
1224 css::uno::Sequence< rtl::OUString > b(2); in testFloat() local
1227 !(a >>= b) && b.getLength() == 2); in testFloat()
1230 Enum1 b = Enum1_M2; in testFloat() local
1231 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testFloat()
1234 Struct1 b(2); in testFloat() local
1235 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testFloat()
1238 Exception1 b( in testFloat() local
1240 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testFloat()
1244 css::uno::Reference< Interface1 > b(i); in testFloat() local
1245 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testFloat()
1253 bool b = true; in testDouble() local
1254 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testDouble()
1257 sal_Bool b = true; in testDouble() local
1258 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testDouble()
1261 sal_Int8 b = 2; in testDouble() local
1262 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testDouble()
1265 sal_uInt8 b = 2; in testDouble() local
1266 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testDouble()
1269 sal_Int16 b = 2; in testDouble() local
1270 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testDouble()
1273 sal_uInt16 b = 2; in testDouble() local
1274 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testDouble()
1277 sal_Int32 b = 2; in testDouble() local
1278 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testDouble()
1281 sal_uInt32 b = 2; in testDouble() local
1282 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testDouble()
1285 sal_Int64 b = 2; in testDouble() local
1286 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testDouble()
1289 sal_uInt64 b = 2; in testDouble() local
1290 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testDouble()
1293 float b = 2; in testDouble() local
1294 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testDouble()
1297 double b = 2; in testDouble() local
1298 CPPUNIT_ASSERT_MESSAGE("double", (a >>= b) && b == 1); in testDouble()
1301 sal_Unicode b = '2'; in testDouble() local
1302 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testDouble()
1305 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testDouble() local
1308 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testDouble()
1311 css::uno::Type b(getCppuType< rtl::OUString >()); in testDouble() local
1314 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testDouble()
1317 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testDouble() local
1318 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testDouble()
1321 css::uno::Sequence< rtl::OUString > b(2); in testDouble() local
1324 !(a >>= b) && b.getLength() == 2); in testDouble()
1327 Enum1 b = Enum1_M2; in testDouble() local
1328 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testDouble()
1331 Struct1 b(2); in testDouble() local
1332 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testDouble()
1335 Exception1 b( in testDouble() local
1337 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testDouble()
1341 css::uno::Reference< Interface1 > b(i); in testDouble() local
1342 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testDouble()
1351 bool b = true; in testChar() local
1352 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testChar()
1355 sal_Bool b = true; in testChar() local
1356 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testChar()
1359 sal_Int8 b = 2; in testChar() local
1360 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testChar()
1363 sal_uInt8 b = 2; in testChar() local
1364 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testChar()
1367 sal_Int16 b = 2; in testChar() local
1368 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testChar()
1371 sal_uInt16 b = 2; in testChar() local
1372 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testChar()
1375 sal_Int32 b = 2; in testChar() local
1376 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testChar()
1379 sal_uInt32 b = 2; in testChar() local
1380 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testChar()
1383 sal_Int64 b = 2; in testChar() local
1384 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testChar()
1387 sal_uInt64 b = 2; in testChar() local
1388 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testChar()
1391 float b = 2; in testChar() local
1392 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testChar()
1395 double b = 2; in testChar() local
1396 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testChar()
1399 sal_Unicode b = '2'; in testChar() local
1401 CPPUNIT_ASSERT_MESSAGE("@sal_Unicode", !(a >>= b) && b == '2'); in testChar()
1403 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", (a >>= b) && b == '1'); in testChar()
1407 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testChar() local
1410 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testChar()
1413 css::uno::Type b(getCppuType< rtl::OUString >()); in testChar() local
1416 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testChar()
1419 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testChar() local
1420 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testChar()
1423 css::uno::Sequence< rtl::OUString > b(2); in testChar() local
1426 !(a >>= b) && b.getLength() == 2); in testChar()
1429 Enum1 b = Enum1_M2; in testChar() local
1430 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testChar()
1433 Struct1 b(2); in testChar() local
1434 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testChar()
1437 Exception1 b( in testChar() local
1439 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testChar()
1443 css::uno::Reference< Interface1 > b(i); in testChar() local
1444 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testChar()
1452 bool b = true; in testString() local
1453 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testString()
1456 sal_Bool b = true; in testString() local
1457 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testString()
1460 sal_Int8 b = 2; in testString() local
1461 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testString()
1464 sal_uInt8 b = 2; in testString() local
1465 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testString()
1468 sal_Int16 b = 2; in testString() local
1469 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testString()
1472 sal_uInt16 b = 2; in testString() local
1473 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testString()
1476 sal_Int32 b = 2; in testString() local
1477 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testString()
1480 sal_uInt32 b = 2; in testString() local
1481 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testString()
1484 sal_Int64 b = 2; in testString() local
1485 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testString()
1488 sal_uInt64 b = 2; in testString() local
1489 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testString()
1492 float b = 2; in testString() local
1493 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testString()
1496 double b = 2; in testString() local
1497 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testString()
1500 sal_Unicode b = '2'; in testString() local
1501 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testString()
1504 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testString() local
1507 (a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("1"))); in testString()
1510 css::uno::Type b(getCppuType< rtl::OUString >()); in testString() local
1513 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testString()
1516 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testString() local
1517 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testString()
1520 css::uno::Sequence< rtl::OUString > b(2); in testString() local
1523 !(a >>= b) && b.getLength() == 2); in testString()
1526 Enum1 b = Enum1_M2; in testString() local
1527 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testString()
1530 Struct1 b(2); in testString() local
1531 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testString()
1534 Exception1 b( in testString() local
1536 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testString()
1540 css::uno::Reference< Interface1 > b(i); in testString() local
1541 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testString()
1549 bool b = true; in testType() local
1550 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testType()
1553 sal_Bool b = true; in testType() local
1554 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testType()
1557 sal_Int8 b = 2; in testType() local
1558 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testType()
1561 sal_uInt8 b = 2; in testType() local
1562 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testType()
1565 sal_Int16 b = 2; in testType() local
1566 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testType()
1569 sal_uInt16 b = 2; in testType() local
1570 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testType()
1573 sal_Int32 b = 2; in testType() local
1574 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testType()
1577 sal_uInt32 b = 2; in testType() local
1578 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testType()
1581 sal_Int64 b = 2; in testType() local
1582 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testType()
1585 sal_uInt64 b = 2; in testType() local
1586 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testType()
1589 float b = 2; in testType() local
1590 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testType()
1593 double b = 2; in testType() local
1594 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testType()
1597 sal_Unicode b = '2'; in testType() local
1598 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testType()
1601 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testType() local
1604 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testType()
1607 css::uno::Type b(getCppuType< rtl::OUString >()); in testType() local
1609 "css::uno::Type", (a >>= b) && b == getCppuType< sal_Int32 >()); in testType()
1612 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testType() local
1613 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testType()
1616 css::uno::Sequence< rtl::OUString > b(2); in testType() local
1619 !(a >>= b) && b.getLength() == 2); in testType()
1622 Enum1 b = Enum1_M2; in testType() local
1623 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testType()
1626 Struct1 b(2); in testType() local
1627 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testType()
1630 Exception1 b( in testType() local
1632 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testType()
1636 css::uno::Reference< Interface1 > b(i); in testType() local
1637 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testType()
1647 bool b = true; in testSequence() local
1648 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testSequence()
1651 sal_Bool b = true; in testSequence() local
1652 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testSequence()
1655 sal_Int8 b = 2; in testSequence() local
1656 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testSequence()
1659 sal_uInt8 b = 2; in testSequence() local
1660 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testSequence()
1663 sal_Int16 b = 2; in testSequence() local
1664 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testSequence()
1667 sal_uInt16 b = 2; in testSequence() local
1668 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testSequence()
1671 sal_Int32 b = 2; in testSequence() local
1672 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testSequence()
1675 sal_uInt32 b = 2; in testSequence() local
1676 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testSequence()
1679 sal_Int64 b = 2; in testSequence() local
1680 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testSequence()
1683 sal_uInt64 b = 2; in testSequence() local
1684 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testSequence()
1687 float b = 2; in testSequence() local
1688 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testSequence()
1691 double b = 2; in testSequence() local
1692 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testSequence()
1695 sal_Unicode b = '2'; in testSequence() local
1696 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testSequence()
1699 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testSequence() local
1702 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testSequence()
1705 css::uno::Type b(getCppuType< rtl::OUString >()); in testSequence() local
1708 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testSequence()
1711 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testSequence() local
1712 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testSequence()
1715 css::uno::Sequence< rtl::OUString > b(2); in testSequence() local
1718 !(a >>= b) && b.getLength() == 2); in testSequence()
1721 css::uno::Sequence< sal_Int32 > b(2); in testSequence() local
1724 (a >>= b) && b.getLength() == 1 && b[0] == 1); in testSequence()
1727 Enum1 b = Enum1_M2; in testSequence() local
1728 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testSequence()
1731 Struct1 b(2); in testSequence() local
1732 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testSequence()
1735 Exception1 b( in testSequence() local
1737 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testSequence()
1741 css::uno::Reference< Interface1 > b(i); in testSequence() local
1742 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testSequence()
1750 bool b = true; in testEnum() local
1751 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testEnum()
1754 sal_Bool b = true; in testEnum() local
1755 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testEnum()
1758 sal_Int8 b = 2; in testEnum() local
1759 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testEnum()
1762 sal_uInt8 b = 2; in testEnum() local
1763 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testEnum()
1766 sal_Int16 b = 2; in testEnum() local
1767 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testEnum()
1770 sal_uInt16 b = 2; in testEnum() local
1771 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testEnum()
1774 sal_Int32 b = 2; in testEnum() local
1775 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testEnum()
1778 sal_uInt32 b = 2; in testEnum() local
1779 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testEnum()
1782 sal_Int64 b = 2; in testEnum() local
1783 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testEnum()
1786 sal_uInt64 b = 2; in testEnum() local
1787 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testEnum()
1790 float b = 2; in testEnum() local
1791 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testEnum()
1794 double b = 2; in testEnum() local
1795 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testEnum()
1798 sal_Unicode b = '2'; in testEnum() local
1799 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testEnum()
1802 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testEnum() local
1805 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testEnum()
1808 css::uno::Type b(getCppuType< rtl::OUString >()); in testEnum() local
1811 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testEnum()
1814 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testEnum() local
1815 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testEnum()
1818 css::uno::Sequence< rtl::OUString > b(2); in testEnum() local
1821 !(a >>= b) && b.getLength() == 2); in testEnum()
1824 Enum1 b = Enum1_M2; in testEnum() local
1825 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testEnum()
1828 Enum2 b = Enum2_M2; in testEnum() local
1829 CPPUNIT_ASSERT_MESSAGE("Enum2", (a >>= b) && b == Enum2_M1); in testEnum()
1832 Struct1 b(2); in testEnum() local
1833 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testEnum()
1836 Exception1 b( in testEnum() local
1838 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testEnum()
1842 css::uno::Reference< Interface1 > b(i); in testEnum() local
1843 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testEnum()
1851 bool b = true; in testStruct() local
1852 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testStruct()
1855 sal_Bool b = true; in testStruct() local
1856 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testStruct()
1859 sal_Int8 b = 2; in testStruct() local
1860 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testStruct()
1863 sal_uInt8 b = 2; in testStruct() local
1864 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testStruct()
1867 sal_Int16 b = 2; in testStruct() local
1868 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testStruct()
1871 sal_uInt16 b = 2; in testStruct() local
1872 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testStruct()
1875 sal_Int32 b = 2; in testStruct() local
1876 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testStruct()
1879 sal_uInt32 b = 2; in testStruct() local
1880 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testStruct()
1883 sal_Int64 b = 2; in testStruct() local
1884 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testStruct()
1887 sal_uInt64 b = 2; in testStruct() local
1888 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testStruct()
1891 float b = 2; in testStruct() local
1892 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testStruct()
1895 double b = 2; in testStruct() local
1896 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testStruct()
1899 sal_Unicode b = '2'; in testStruct() local
1900 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testStruct()
1903 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testStruct() local
1906 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testStruct()
1909 css::uno::Type b(getCppuType< rtl::OUString >()); in testStruct() local
1912 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testStruct()
1915 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testStruct() local
1916 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testStruct()
1919 css::uno::Sequence< rtl::OUString > b(2); in testStruct() local
1922 !(a >>= b) && b.getLength() == 2); in testStruct()
1925 Enum1 b = Enum1_M2; in testStruct() local
1926 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testStruct()
1929 Struct1 b(2); in testStruct() local
1930 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testStruct()
1933 Struct2 b(2); in testStruct() local
1934 CPPUNIT_ASSERT_MESSAGE("Struct2", (a >>= b) && b.member == 1); in testStruct()
1937 Struct2a b(2, 2); in testStruct() local
1939 "Struct2a", (a >>= b) && b.member == 1 && b.member2 == 3); in testStruct()
1942 Struct2b b(2, 2, 2); in testStruct() local
1943 CPPUNIT_ASSERT_MESSAGE("Struct2b", !(a >>= b) && b.member == 2); in testStruct()
1946 Exception1 b( in testStruct() local
1948 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testStruct()
1952 css::uno::Reference< Interface1 > b(i); in testStruct() local
1953 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testStruct()
1976 bool b = true; in testException() local
1977 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testException()
1980 sal_Bool b = true; in testException() local
1981 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testException()
1984 sal_Int8 b = 2; in testException() local
1985 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testException()
1988 sal_uInt8 b = 2; in testException() local
1989 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testException()
1992 sal_Int16 b = 2; in testException() local
1993 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testException()
1996 sal_uInt16 b = 2; in testException() local
1997 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testException()
2000 sal_Int32 b = 2; in testException() local
2001 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testException()
2004 sal_uInt32 b = 2; in testException() local
2005 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testException()
2008 sal_Int64 b = 2; in testException() local
2009 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testException()
2012 sal_uInt64 b = 2; in testException() local
2013 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testException()
2016 float b = 2; in testException() local
2017 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testException()
2020 double b = 2; in testException() local
2021 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testException()
2024 sal_Unicode b = '2'; in testException() local
2025 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testException()
2028 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testException() local
2031 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testException()
2034 css::uno::Type b(getCppuType< rtl::OUString >()); in testException() local
2037 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testException()
2040 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testException() local
2041 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testException()
2044 css::uno::Sequence< rtl::OUString > b(2); in testException() local
2047 !(a >>= b) && b.getLength() == 2); in testException()
2050 Enum1 b = Enum1_M2; in testException() local
2051 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testException()
2054 Struct1 b(2); in testException() local
2055 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testException()
2058 Exception1 b( in testException() local
2060 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testException()
2063 Exception2 b( in testException() local
2065 CPPUNIT_ASSERT_MESSAGE("Exception2", (a >>= b) && b.member == 1); in testException()
2068 Exception2a b( in testException() local
2072 "Exception2a", (a >>= b) && b.member == 1 && b.member2 == 3); in testException()
2075 Exception2b b( in testException() local
2078 CPPUNIT_ASSERT_MESSAGE("Exception2b", !(a >>= b) && b.member == 2); in testException()
2082 css::uno::Reference< Interface1 > b(i); in testException() local
2083 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testException()
2094 bool b = true; in testInterface() local
2095 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testInterface()
2098 sal_Bool b = true; in testInterface() local
2099 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testInterface()
2102 sal_Int8 b = 2; in testInterface() local
2103 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testInterface()
2106 sal_uInt8 b = 2; in testInterface() local
2107 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testInterface()
2110 sal_Int16 b = 2; in testInterface() local
2111 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testInterface()
2114 sal_uInt16 b = 2; in testInterface() local
2115 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testInterface()
2118 sal_Int32 b = 2; in testInterface() local
2119 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testInterface()
2122 sal_uInt32 b = 2; in testInterface() local
2123 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testInterface()
2126 sal_Int64 b = 2; in testInterface() local
2127 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testInterface()
2130 sal_uInt64 b = 2; in testInterface() local
2131 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testInterface()
2134 float b = 2; in testInterface() local
2135 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testInterface()
2138 double b = 2; in testInterface() local
2139 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testInterface()
2142 sal_Unicode b = '2'; in testInterface() local
2143 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testInterface()
2146 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testInterface() local
2149 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testInterface()
2152 css::uno::Type b(getCppuType< rtl::OUString >()); in testInterface() local
2155 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testInterface()
2158 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testInterface() local
2159 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testInterface()
2162 css::uno::Sequence< rtl::OUString > b(2); in testInterface() local
2165 !(a >>= b) && b.getLength() == 2); in testInterface()
2168 Enum1 b = Enum1_M2; in testInterface() local
2169 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testInterface()
2172 Struct1 b(2); in testInterface() local
2173 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testInterface()
2176 Exception1 b( in testInterface() local
2178 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testInterface()
2182 css::uno::Reference< Interface1 > b(i); in testInterface() local
2183 CPPUNIT_ASSERT_MESSAGE("Interface1", !(a >>= b) && b == i); in testInterface()
2186 css::uno::Reference< Interface2 > b(new Impl2); in testInterface() local
2187 CPPUNIT_ASSERT_MESSAGE("Interface2", (a >>= b) && b == i2); in testInterface()
2190 css::uno::Reference< Interface2a > b(new Impl2); in testInterface() local
2191 CPPUNIT_ASSERT_MESSAGE("Interface2a", (a >>= b) && b == i2); in testInterface()
2195 css::uno::Reference< Interface2b > b(i); in testInterface() local
2196 CPPUNIT_ASSERT_MESSAGE("Interface2b", !(a >>= b) && b == i); in testInterface()
2199 css::uno::Reference< Interface3 > b(new Impl2); in testInterface() local
2200 CPPUNIT_ASSERT_MESSAGE("Interface3", (a >>= b) && b == i2); in testInterface()
2210 bool b = true; in testNull() local
2211 CPPUNIT_ASSERT_MESSAGE("bool", !(a >>= b) && b); in testNull()
2214 sal_Bool b = true; in testNull() local
2215 CPPUNIT_ASSERT_MESSAGE("sal_Bool", !(a >>= b) && b); in testNull()
2218 sal_Int8 b = 2; in testNull() local
2219 CPPUNIT_ASSERT_MESSAGE("sal_Int8", !(a >>= b) && b == 2); in testNull()
2222 sal_uInt8 b = 2; in testNull() local
2223 CPPUNIT_ASSERT_MESSAGE("sal_uInt8", !(a >>= b) && b == 2); in testNull()
2226 sal_Int16 b = 2; in testNull() local
2227 CPPUNIT_ASSERT_MESSAGE("sal_Int16", !(a >>= b) && b == 2); in testNull()
2230 sal_uInt16 b = 2; in testNull() local
2231 CPPUNIT_ASSERT_MESSAGE("sal_uInt16", !(a >>= b) && b == 2); in testNull()
2234 sal_Int32 b = 2; in testNull() local
2235 CPPUNIT_ASSERT_MESSAGE("sal_Int32", !(a >>= b) && b == 2); in testNull()
2238 sal_uInt32 b = 2; in testNull() local
2239 CPPUNIT_ASSERT_MESSAGE("sal_uInt32", !(a >>= b) && b == 2); in testNull()
2242 sal_Int64 b = 2; in testNull() local
2243 CPPUNIT_ASSERT_MESSAGE("sal_Int64", !(a >>= b) && b == 2); in testNull()
2246 sal_uInt64 b = 2; in testNull() local
2247 CPPUNIT_ASSERT_MESSAGE("sal_uInt64", !(a >>= b) && b == 2); in testNull()
2250 float b = 2; in testNull() local
2251 CPPUNIT_ASSERT_MESSAGE("float", !(a >>= b) && b == 2); in testNull()
2254 double b = 2; in testNull() local
2255 CPPUNIT_ASSERT_MESSAGE("double", !(a >>= b) && b == 2); in testNull()
2258 sal_Unicode b = '2'; in testNull() local
2259 CPPUNIT_ASSERT_MESSAGE("sal_Unicode", !(a >>= b) && b == '2'); in testNull()
2262 rtl::OUString b(RTL_CONSTASCII_USTRINGPARAM("2")); in testNull() local
2265 !(a >>= b) && b.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("2"))); in testNull()
2268 css::uno::Type b(getCppuType< rtl::OUString >()); in testNull() local
2271 !(a >>= b) && b == getCppuType< rtl::OUString >()); in testNull()
2274 css::uno::Any b(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("2"))); in testNull() local
2275 CPPUNIT_ASSERT_MESSAGE("css::uno::Any", (a >>= b) && b == a); in testNull()
2278 css::uno::Sequence< rtl::OUString > b(2); in testNull() local
2281 !(a >>= b) && b.getLength() == 2); in testNull()
2284 Enum1 b = Enum1_M2; in testNull() local
2285 CPPUNIT_ASSERT_MESSAGE("Enum1", !(a >>= b) && b == Enum1_M2); in testNull()
2288 Struct1 b(2); in testNull() local
2289 CPPUNIT_ASSERT_MESSAGE("Struct1", !(a >>= b) && b.member == 2); in testNull()
2292 Exception1 b( in testNull() local
2294 CPPUNIT_ASSERT_MESSAGE("Exception1", !(a >>= b) && b.member == 2); in testNull()
2297 css::uno::Reference< Interface1 > b(new Impl1); in testNull() local
2299 "Interface1", (a >>= b) && !b.is()); in testNull()
2302 css::uno::Reference< Interface2 > b(new Impl2); in testNull() local
2304 "Interface2", (a >>= b) && !b.is()); in testNull()
2307 css::uno::Reference< Interface2a > b(new Impl2); in testNull() local
2308 CPPUNIT_ASSERT_MESSAGE("Interface2a", (a >>= b) && !b.is()); in testNull()
2311 css::uno::Reference< Interface2b > b(new Impl2b); in testNull() local
2313 "Interface2b", (a >>= b) && !b.is()); in testNull()
2316 css::uno::Reference< Interface3 > b(new Impl2); in testNull() local
2318 "Interface3", (a >>= b) && !b.is()); in testNull()