Lines Matching refs:td

48     JNI_context const & jni, typelib_TypeDescription * td )  in JNI_type_info()  argument
49 : m_td( td ), in JNI_type_info()
110 typelib_InterfaceTypeDescription * td = in JNI_interface_type_info() local
113 m_methods = new jmethodID[ td->nMapFunctionIndexToMemberIndex ]; in JNI_interface_type_info()
115 typelib_TypeDescriptionReference ** ppMembers = td->ppMembers; in JNI_interface_type_info()
116 sal_Int32 nMembers = td->nMembers; in JNI_interface_type_info()
248 typelib_CompoundTypeDescription * td = in JNI_compound_type_info() local
252 OUString::unacquired( &((typelib_TypeDescription *)td)->pTypeName ); in JNI_compound_type_info()
283 td->pBaseTypeDescription ); in JNI_compound_type_info()
289 ((typelib_TypeDescription *)td)->pWeakRef, in JNI_compound_type_info()
292 ((typelib_TypeDescription *)td)->pWeakRef, in JNI_compound_type_info()
306 sal_Int32 nMembers = td->nMembers; in JNI_compound_type_info()
312 if (td->aBase.eTypeClass == typelib_TypeClass_STRUCT in JNI_compound_type_info()
314 td)->pParameterizedTypes != 0 in JNI_compound_type_info()
316 td)->pParameterizedTypes[nPos]) in JNI_compound_type_info()
322 JNI_info::append_sig( &sig_buf, td->ppTypeRefs[ nPos ] ); in JNI_compound_type_info()
328 OUString::unacquired( &td->ppMemberNames[ nPos ] ), in JNI_compound_type_info()
351 JNI_context const & jni, typelib_TypeDescription * td ) const in create_type_info()
353 OUString const & uno_name = OUString::unacquired( &td->pTypeName ); in create_type_info()
356 switch (td->eTypeClass) in create_type_info()
361 new_info = new JNI_compound_type_info( jni, td ); in create_type_info()
366 new_info = new JNI_interface_type_info( jni, td ); in create_type_info()
401 JNI_context const & jni, typelib_TypeDescription * td ) const in get_type_info()
403 if (is_XInterface( td->pWeakRef )) in get_type_info()
408 OUString const & uno_name = OUString::unacquired( &td->pTypeName ); in get_type_info()
416 info = create_type_info( jni, td ); in get_type_info()
442 TypeDescr td( type ); in get_type_info() local
443 info = create_type_info( jni, td.get() ); in get_type_info()
469 css::uno::TypeDescription td( uno_name ); in get_type_info() local
470 if (! td.is()) in get_type_info()
479 info = create_type_info( jni, td.get() ); in get_type_info()