Lines Matching refs:vs

322     css::uno::Sequence< css::beans::PropertyValue > vs(2);  in testEmpty2()  local
323 vs[0].Name = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("any1")); in testEmpty2()
324 vs[0].Handle = -1; in testEmpty2()
325 vs[0].State = css::beans::PropertyState_DIRECT_VALUE; in testEmpty2()
326 vs[0].Name = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("any2")); in testEmpty2()
327 vs[0].Handle = -1; in testEmpty2()
328 vs[0].State = css::beans::PropertyState_DIRECT_VALUE; in testEmpty2()
330 empty2a->setPropertyValues(vs); in testEmpty2()
530 css::uno::Sequence< css::beans::PropertyValue > vs( in testFull() local
532 CPPUNIT_ASSERT_EQUAL(static_cast< sal_Int32 >(2), vs.getLength()); in testFull()
534 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("First")), vs[0].Name); in testFull()
535 CPPUNIT_ASSERT_EQUAL(static_cast< sal_Int32 >(0), vs[0].Handle); in testFull()
537 css::uno::makeAny(static_cast< sal_Int32 >(0)), vs[0].Value); in testFull()
538 CPPUNIT_ASSERT_EQUAL(css::beans::PropertyState_DIRECT_VALUE, vs[0].State); in testFull()
540 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Second")), vs[1].Name); in testFull()
541 CPPUNIT_ASSERT_EQUAL(static_cast< sal_Int32 >(1), vs[1].Handle); in testFull()
542 CPPUNIT_ASSERT_EQUAL(voidAny, vs[1].Value); in testFull()
543 CPPUNIT_ASSERT_EQUAL(css::beans::PropertyState_DIRECT_VALUE, vs[1].State); in testFull()
544 vs[0].Value <<= static_cast< sal_Int32 >(-100); in testFull()
545 vs[1].Value <<= static_cast< sal_Int32 >(100); in testFull()
546 vs[1].State = css::beans::PropertyState_AMBIGUOUS_VALUE; in testFull()
547 fulla->setPropertyValues(vs); in testFull()
548 vs = fulla->getPropertyValues(); in testFull()
549 CPPUNIT_ASSERT_EQUAL(static_cast< sal_Int32 >(2), vs.getLength()); in testFull()
551 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("First")), vs[0].Name); in testFull()
553 css::uno::makeAny(static_cast< sal_Int32 >(-100)), vs[0].Value); in testFull()
554 CPPUNIT_ASSERT_EQUAL(css::beans::PropertyState_DIRECT_VALUE, vs[0].State); in testFull()
556 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Second")), vs[1].Name); in testFull()
558 css::uno::makeAny(static_cast< sal_Int32 >(100)), vs[1].Value); in testFull()
560 css::beans::PropertyState_AMBIGUOUS_VALUE, vs[1].State); in testFull()