Lines Matching refs:xInvoke
309 void checkInvokation( const XInvokationRef &xInvoke ) in checkInvokation() argument
314 OSL_ASSERT( xInvoke->hasProperty( L"list" ) ); in checkInvokation()
315 anyList = xInvoke->getValue( L"list" ); in checkInvokation()
422 XInvokationRef xInvoke( x, USR_QUERY ); in main() local
440 OSL_ASSERT( xInvoke->hasProperty( L"nIntTest" ) ); in main()
441 UsrAny any = xInvoke->getValue( L"nIntTest" ); in main()
447 xInvoke->setValue( L"nIntTest" , UsrAny( (INT32) 10 ) ); in main()
448 any = xInvoke->getValue( L"nIntTest" ); in main()
458 OSL_ASSERT( xInvoke->hasMethod( L"foo" ) ); in main()
459 UsrAny any = xInvoke->invoke( L"foo" , in main()
470 xInvoke->invoke( L"foo" , Sequence<UsrAny>(1) , Sequence<INT16>(), Sequence<UsrAny> () ); in main()
484 checkInvokation( xInvoke ); in main()
492 XIntrospectionAccessRef xIntrospection = xInvoke->getIntrospection(); in main()
558 UsrAny any = xInvoke->getValue( L"x" ); in main()
569 OSL_ASSERT( xInvoke->hasProperty( L"dMathTest" ) ); in main()
570 UsrAny any = xInvoke->getValue( L"dMathTest" ); in main()
583 UsrAny any = xInvoke->getValue( L"x" ); in main()
587 any = xInvoke->getValue( L"z" ); in main()
594 UsrAny any = xInvoke->getValue( L"__builtins__" ); in main()
610 XExactNameRef rName( xInvoke , USR_QUERY ); in main()