Home
last modified time | relevance | path

Searched refs:type (Results 201 – 225 of 2995) sorted by path

12345678910>>...120

/trunk/main/bridges/source/cpp_uno/mingw_intel/
H A Dcpp2uno.cxx466 typelib_InterfaceTypeDescription const * type, sal_Int32 functionOffset, in addLocalFunctions() argument
471 for (sal_Int32 i = 0; i < type->nMembers; ++i) { in addLocalFunctions()
473 TYPELIB_DANGER_GET(&member, type->ppMembers[i]); in addLocalFunctions()
H A Dsmallstruct.cxx35 bool isSimpleStruct(typelib_TypeDescription const * type) { in isSimpleStruct() argument
36 switch (type->eTypeClass) { in isSimpleStruct()
41 type); in isSimpleStruct()
71 bool isSmallStruct(typelib_TypeDescription const * type) { in isSmallStruct() argument
72 return (type->nSize <= 8 && isSimpleStruct(type)); in isSmallStruct()
H A Dsmallstruct.hxx29 bool isSmallStruct(typelib_TypeDescription const * type);
/trunk/main/bridges/source/cpp_uno/msvc_win64_x86-64/
H A Dcpp2uno.cxx539 typelib_InterfaceTypeDescription const *type, sal_Int32 functionOffset, in addLocalFunctions() argument
544 for (sal_Int32 nPos = 0; nPos < type->nMembers; ++nPos) { in addLocalFunctions()
547 TYPELIB_DANGER_GET( &pTD, type->ppMembers[ nPos ] ); in addLocalFunctions()
/trunk/main/bridges/source/cpp_uno/s5abi_macosx_x86-64/
H A Dabi.cxx370 if (ecif->cif->rtype->type != FFI_TYPE_VOID
379 switch ((*p_arg)->type)
475 if (cif->rtype->type != FFI_TYPE_VOID
504 switch (cif->rtype->type)
512 cif->flags = (unsigned) cif->rtype->type;
548 switch (ecif->cif->rtype->type)
707 switch (arg_types[i]->type)
785 FFI_ASSERT(cif->rtype->type != FFI_TYPE_STRUCT);
789 return cif->rtype->type;
H A Dcpp2uno.cxx511 typelib_InterfaceTypeDescription const * type, sal_Int32 nFunctionOffset, in addLocalFunctions() argument
517 for ( sal_Int32 nPos = 0; nPos < type->nMembers; ++nPos ) in addLocalFunctions()
521 TYPELIB_DANGER_GET( &pTD, type->ppMembers[ nPos ] ); in addLocalFunctions()
/trunk/main/bridges/source/cpp_uno/shared/
H A Dtypes.cxx40 bool isSimpleType(typelib_TypeDescriptionReference const * type) { in isSimpleType() argument
41 return isSimpleType(type->eTypeClass); in isSimpleType()
44 bool isSimpleType(typelib_TypeDescription const * type) { in isSimpleType() argument
45 return isSimpleType(type->eTypeClass); in isSimpleType()
48 bool relatesToInterfaceType(typelib_TypeDescription const * type) { in relatesToInterfaceType() argument
49 switch (type->eTypeClass) { in relatesToInterfaceType()
59 type); in relatesToInterfaceType()
92 type)->pType->eTypeClass) { in relatesToInterfaceType()
105 type)->pType); in relatesToInterfaceType()
H A Dvtablefactory.cxx164 BaseOffset(typelib_InterfaceTypeDescription * type) { calculate(type, 0); } in BaseOffset() argument
171 typelib_InterfaceTypeDescription * type, sal_Int32 offset);
179 typelib_InterfaceTypeDescription * type, sal_Int32 offset) in calculate() argument
181 rtl::OUString name(type->aBase.pTypeName); in calculate()
183 for (sal_Int32 i = 0; i < type->nBaseTypes; ++i) { in calculate()
184 offset = calculate(type->ppBaseTypes[i], offset); in calculate()
188 reinterpret_cast< typelib_TypeDescription ** >(&type)); in calculate()
219 typelib_InterfaceTypeDescription * type) in getVtables() argument
221 rtl::OUString name(type->aBase.pTypeName); in getVtables()
226 createVtables(blocks, BaseOffset(type), type, true); in getVtables()
[all …]
H A Dvtables.cxx48 for (sal_Int32 i = 0; i < type->nBaseTypes; ++i) { in getVtableCount()
49 n += getVtableCount(type->ppBaseTypes[i]); in getVtableCount()
71 reinterpret_cast< typelib_TypeDescription ** >(&type)); in mapLocalMemberToLocalFunction()
72 sal_Int32 localMemberOffset = type->nAllMembers - type->nMembers; in mapLocalMemberToLocalFunction()
74 - bridges::cpp_uno::shared::getLocalFunctions(type); in mapLocalMemberToLocalFunction()
121 return type->nMembers == 0 in getLocalFunctions()
123 : (type->nMapFunctionIndexToMemberIndex in getLocalFunctions()
124 - type->pMapMemberIndexToFunctionIndex[ in getLocalFunctions()
125 type->nAllMembers - type->nMembers]); in getLocalFunctions()
130 for (; type != 0; type = type->pBaseTypeDescription) { in getPrimaryFunctions()
[all …]
/trunk/main/bridges/source/jni_uno/
H A Djni_bridge.h77 typelib_TypeDescriptionReference * type,
84 typelib_TypeDescriptionReference * type,
H A Djni_data.cxx56 typelib_TypeDescriptionReference * type, in createDefaultUnoValue() argument
59 switch (type->eTypeClass) { in createDefaultUnoValue()
147 TYPELIB_DANGER_GET(&td, type); in createDefaultUnoValue()
220 typelib_TypeDescriptionReference * type, in map_to_uno() argument
229 switch (type->eTypeClass) in map_to_uno()
942 type, in map_to_uno()
945 type, in map_to_uno()
1022 TypeDescr td( type ); in map_to_uno()
1223 typelib_TypeDescriptionReference * type, in map_to_java() argument
1228 switch (type->eTypeClass) in map_to_java()
[all …]
H A Djni_helper.h120 JNI_context const & jni, typelib_TypeDescriptionReference * type ) in create_type() argument
125 args[ 0 ].i = type->eTypeClass; in create_type()
133 jni, ustring_to_jstring( jni, type->pTypeName ) ); in create_type()
H A Djni_info.cxx428 JNI_context const & jni, typelib_TypeDescriptionReference * type ) const in get_type_info()
430 if (is_XInterface( type )) in get_type_info()
435 OUString const & uno_name = OUString::unacquired( &type->pTypeName ); in get_type_info()
442 TypeDescr td( type ); in get_type_info()
H A Djni_info.h61 inline bool is_XInterface( typelib_TypeDescriptionReference * type ) in is_XInterface() argument
63 return ((typelib_TypeClass_INTERFACE == type->eTypeClass) && in is_XInterface()
64 ::rtl::OUString::unacquired( &type->pTypeName ).equalsAsciiL( in is_XInterface()
213 typelib_TypeDescription * type ) const;
216 typelib_TypeDescriptionReference * type ) const;
253 switch (type->eTypeClass) in append_sig()
313 ::rtl::OUString::unacquired( &type->pTypeName ); in append_sig()
335 TypeDescr td( type ); in append_sig()
342 if (use_Object_for_type_XInterface && is_XInterface( type )) in append_sig()
353 ::rtl::OUString::unacquired( &type->pTypeName ); in append_sig()
[all …]
H A Djni_java2uno.cxx214 typelib_TypeDescriptionReference * type = param.pTypeRef; in call_uno() local
217 if (typelib_TypeClass_STRUCT == type->eTypeClass || in call_uno()
218 typelib_TypeClass_EXCEPTION == type->eTypeClass) in call_uno()
220 TypeDescr td( type ); in call_uno()
240 jni, uno_args[ nPos ], java_arg, type, 0, in call_uno()
279 typelib_TypeDescriptionReference * type = param.pTypeRef; in call_uno() local
291 jni, &java_arg, uno_args[ nPos ], type, 0, in call_uno()
314 if (typelib_TypeClass_DOUBLE < type->eTypeClass && in call_uno()
315 typelib_TypeClass_ENUM != type->eTypeClass) // opt in call_uno()
317 uno_type_destructData( uno_args[ nPos ], type, 0 ); in call_uno()
/trunk/main/bridges/test/com/sun/star/lib/uno/bridges/java_remote/
H A DPolyStructTest.idl43 TestPolyStruct<type> transportType([in] TestPolyStruct<type> arg);
/trunk/main/bridges/test/java_uno/acquire/
H A Dtestacquire.cxx94 virtual css::uno::Any SAL_CALL queryInterface(css::uno::Type const & type)
115 css::uno::Any Interface::queryInterface(css::uno::Type const & type) in queryInterface() argument
118 return type.getTypeName().equalsAsciiL(RTL_CONSTASCII_STRINGPARAM( in queryInterface()
136 virtual css::uno::Any SAL_CALL queryInterface(css::uno::Type const & type)
149 css::uno::Any Base::queryInterface(css::uno::Type const & type) in queryInterface() argument
152 return type.getTypeName().equalsAsciiL(RTL_CONSTASCII_STRINGPARAM( in queryInterface()
156 : Interface::queryInterface(type); in queryInterface()
165 virtual css::uno::Any SAL_CALL queryInterface(css::uno::Type const & type)
178 css::uno::Any Derived::queryInterface(css::uno::Type const & type) in queryInterface() argument
181 return (type.getTypeName().equalsAsciiL( in queryInterface()
[all …]
/trunk/main/cairo/
H A Dcairo-1.8.0.patch124 Use char because int might match the return type of a GCC
/trunk/main/chart2/source/controller/dialogs/
H A DStrings.src433 Text [ en-US ] = "Edit chart type" ;
H A Dtp_ChartType.src77 Text [ en-US ] = "Choose a chart type";
/trunk/main/chart2/source/controller/inc/
H A DHelpIds.hrc36 //for chart type dialog:
/trunk/main/cli_ure/qa/climaker/
H A Dtypes.idl121 type retType();
141 [attribute] type attrType;
162 typedef type Type;
203 type p13;
239 sequence< type > a13;
257 sequence< sequence< type > > aa13;
340 [in] type p13,
378 [in] sequence< type > a13,
396 [in] sequence< sequence< type > > aa13,
423 [in] PolyStruct2<type> arg1,
[all …]
/trunk/main/cli_ure/source/basetypes/uno/
H A DAny.cs46 if (type == null in checkArgs()
48 && type != typeof(void) in checkArgs()
49 && type != typeof(object) in checkArgs()
50 && type.IsInterface == false)) in checkArgs()
59 if (t != null && !(type is PolymorphicType)) in checkArgs()
72 public Any(Type type, object value) in Any()
74 checkArgs(type, value); in Any()
75 _type = type; in Any()
83 public void setValue(Type type, object value) in setValue()
85 checkArgs(type, value); in setValue()
[all …]
H A DPolymorphicType.cs111 public static PolymorphicType GetType(Type type, string name) in GetType() argument
113 if (name == null || type == null) in GetType()
117 if (type.IsArray) in GetType()
119 Type elementType = type; in GetType()
127 else if (Attribute.GetCustomAttribute(type, typeof(uno.TypeParametersAttribute)) in GetType()
138 t = new PolymorphicType(type, name); in GetType()
145 private PolymorphicType(Type type, string name) in PolymorphicType() argument
148 m_base = type; in PolymorphicType()
/trunk/main/cli_ure/source/climaker/
H A Dclimaker_emit.cxx2301 const css::uno::Reference<css::reflection::XTypeDescription>& type) in resolveInterfaceTypedef() argument
2304 xIfaceTd(type, UNO_QUERY); in resolveInterfaceTypedef()
2310 type, UNO_QUERY); in resolveInterfaceTypedef()

Completed in 132 milliseconds

12345678910>>...120