/aoo42x/main/registry/tools/ |
H A D | regcompare.cxx | 289 switch (typeClass) in getTypeClass() 468 RTTypeClass typeClass, in checkConstValue() argument 630 RTTypeClass typeClass, in checkField() argument 742 RTTypeClass typeClass, in checkMethod() argument 913 RTTypeClass typeClass, in checkReference() argument 987 getTypeClass(typeClass), nFields1-nFields2, getTypeClass(typeClass)); in checkFieldsWithoutOrder() 1105 typeClass == RT_TYPE_STRUCT || in checkBlob() 1106 typeClass == RT_TYPE_EXCEPTION) ) in checkBlob() 1138 if ( (typeClass == RT_TYPE_SERVICE || in checkBlob() 1178 if ( typeClass == RT_TYPE_INTERFACE ) in checkBlob() [all …]
|
/aoo42x/main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typedesc/ |
H A D | TypeDescription.java | 80 switch (typeClass.getValue()) { in getTypeDescription() 132 return getTypeDescription(typeClass) != null; in isTypeClassSimple() 195 return typeClass; in getTypeClass() 250 TypeClass typeClass = type.getTypeClass(); in create() local 256 switch (typeClass.getValue()) { in create() 263 typeClass, typeName, "[Z", zClass, null, null); in create() 267 typeClass, typeName, "[B", zClass, null, null); in create() 385 this.typeClass = typeClass; in TypeDescription() 513 if (typeClass != TypeClass.STRUCT) { in calculateTypeArguments() 570 if (typeClass != TypeClass.STRUCT && typeClass != TypeClass.EXCEPTION) { in calculateFieldDescriptions() [all …]
|
/aoo42x/main/unodevtools/source/skeletonmaker/ |
H A D | javatypemaker.cxx | 40 codemaker::UnoType::Sort sort, RTTypeClass typeClass, in printType() argument 74 typeClass == RT_TYPE_INTERFACE ) { in printType() 84 if ( typeClass != RT_TYPE_ENUM || rank > 0 ) in printType() 114 if ( typeClass == RT_TYPE_ENUM ) in printType() 125 RTTypeClass typeClass; in printType() local 132 options, manager, sort, typeClass, name, rank, arguments, in printType() 635 codemaker::UnoType::Sort sort, RTTypeClass typeClass, in printMapsToJavaType() argument 661 RTTypeClass typeClass; in generateDocumentation() local 671 if ( typeClass != RT_TYPE_INTERFACE && typeClass != RT_TYPE_SERVICE ) in generateDocumentation() 688 switch ( typeClass ) { in generateDocumentation() [all …]
|
H A D | cpptypemaker.cxx | 36 codemaker::UnoType::Sort sort, RTTypeClass typeClass, in printType() argument 69 if (typeClass == RT_TYPE_ENUM) { in printType() 99 sort, typeClass, name, false), in printType() 102 if (typeClass == RT_TYPE_INTERFACE && referenceType > 0) in printType() 132 RTTypeClass typeClass; in printType() local 718 codemaker::UnoType::Sort sort, RTTypeClass typeClass, in printMapsToCppType() argument 743 RTTypeClass typeClass; in generateDocumentation() local 753 if (typeClass != RT_TYPE_INTERFACE && in generateDocumentation() 754 typeClass != RT_TYPE_SERVICE ) in generateDocumentation() 772 switch (typeClass) in generateDocumentation() [all …]
|
H A D | skeletoncommon.cxx | 112 RTTypeClass * typeClass, OString * name, sal_Int32 * rank, in decomposeResolveAndCheck() argument 117 typeClass, name, rank, arguments); in decomposeResolveAndCheck() 491 RTTypeClass typeClass; in checkAddinType() local 496 manager, type, true, true, true, &typeClass, &name, &rank, &arguments); in checkAddinType() 518 typeClass == RT_TYPE_INTERFACE ) in checkAddinType()
|
H A D | skeletonjava.hxx | 35 codemaker::UnoType::Sort sort, RTTypeClass typeClass, 96 RTTypeClass typeClass,
|
H A D | skeletoncpp.hxx | 42 codemaker::UnoType::Sort sort, RTTypeClass typeClass, 112 RTTypeClass typeClass,
|
/aoo42x/main/codemaker/source/javamaker/ |
H A D | javatype.cxx | 189 if (typeClass == RT_TYPE_INTERFACE in translateUnoTypeToDescriptor() 333 RTTypeClass typeClass; in translateUnoTypeToDescriptor() local 1065 RTTypeClass typeClass; in addFieldInit() local 1112 switch (typeClass) { in addFieldInit() 1211 RTTypeClass typeClass; in addLoadLocal() local 1513 switch (typeClass) { in addLoadLocal() 1668 switch (typeClass) { in addLoadLocal() 2000 if (typeClass == RT_TYPE_EXCEPTION) { in handleAggregatingType() 2363 RTTypeClass typeClass; in handleTypedef() local 2372 switch (typeClass) { in handleTypedef() [all …]
|
/aoo42x/main/ridljar/java/ridl/src/main/java/com/sun/star/uno/ |
H A D | Type.java | 183 public Type(String typeName, TypeClass typeClass) { in Type() argument 184 _typeClass = typeClass; in Type() 307 public Type(TypeClass typeClass) { in Type() argument 308 if(__isTypeClassPrimitive(typeClass)) { in Type() 309 _typeClass = typeClass; in Type() 310 _typeName = __typeClassToTypeName[typeClass.getValue()]; in Type() 313 throw new IllegalArgumentException(typeClass + " is not primitive"); in Type() 639 private static boolean __isTypeClassPrimitive(TypeClass typeClass) { in __isTypeClassPrimitive() argument 640 return typeClass.getValue() < __typeClassToTypeName.length; in __isTypeClassPrimitive()
|
/aoo42x/main/codemaker/source/codemaker/ |
H A D | codemaker.cxx | 85 RTTypeClass * typeClass, rtl::OString * name, sal_Int32 * rank, in decomposeAndResolve() argument 88 OSL_ASSERT(typeClass != 0 && name != 0 && rank != 0 && arguments != 0); in decomposeAndResolve() 117 *typeClass = RT_TYPE_INVALID; in decomposeAndResolve() 122 *typeClass = reader.getTypeClass(); in decomposeAndResolve() 123 switch (*typeClass) { in decomposeAndResolve()
|
/aoo42x/main/pyuno/source/module/ |
H A D | uno.py | 136 def __init__(self, typeName, typeClass): argument 138 self.typeClass = typeClass 141 return "<Type instance %s (%r)>" % (self.typeName, self.typeClass) 146 return self.typeClass == that.typeClass and self.typeName == that.typeName
|
H A D | pyuno_type.cxx | 420 PyObject *typeClass = PyUNO_Enum_new( "com.sun.star.uno.TypeClass" , typeClassToString(t), r ); in PyUNO_Type_new() local 421 if( ! typeClass ) in PyUNO_Type_new() 423 PyTuple_SetItem( args.get() , 1 , typeClass); in PyUNO_Type_new()
|
/aoo42x/main/codemaker/source/bonobowrappermaker/ |
H A D | corbatype.cxx | 591 switch (typeClass) in printUnoType() 669 switch (typeClass) in printCorbaType() 728 switch (typeClass) in isPassedAsPointer() 834 switch (typeClass) in printCorbaParameter() 973 if (typeClass == RT_TYPE_ENUM) in dumpTypeInit() 1067 RTTypeClass typeClass; in checkSpecialCorbaType() local 1077 typeClass = reader.getTypeClass(); in checkSpecialCorbaType() 1079 if (typeClass == RT_TYPE_TYPEDEF) in checkSpecialCorbaType() 1100 RTTypeClass typeClass; in checkRealBaseType() local 1112 if (typeClass == RT_TYPE_TYPEDEF) in checkRealBaseType() [all …]
|
/aoo42x/main/idlc/source/ |
H A D | astdump.cxx | 67 RTTypeClass typeClass = RT_TYPE_MODULE; in dump() local 69 typeClass = RT_TYPE_CONSTANTS; in dump() 73 getDocumentation(), emptyStr, typeClass, in dump() 108 RTTypeClass typeClass = RT_TYPE_MODULE; in dump() local 110 typeClass = RT_TYPE_CONSTANTS; in dump() 114 getDocumentation(), emptyStr, typeClass, m_bPublished, in dump()
|
H A D | aststruct.cxx | 111 RTTypeClass typeClass = RT_TYPE_STRUCT; in dump() local 113 typeClass = RT_TYPE_EXCEPTION; in dump() 119 getDocumentation(), emptyStr, typeClass, m_bPublished, in dump()
|
/aoo42x/main/codemaker/source/idlmaker/ |
H A D | idltype.cxx | 407 RTTypeClass typeClass = m_typeMgr.getTypeClass(relType); in dumpType() local 416 switch (typeClass) in dumpType() 576 RTTypeClass typeClass; in checkSpecialIdlType() local 586 typeClass = reader.getTypeClass(); in checkSpecialIdlType() 588 if (typeClass == RT_TYPE_TYPEDEF) in checkSpecialIdlType() 611 RTTypeClass typeClass; in checkRealBaseType() local 621 typeClass = reader.getTypeClass(); in checkRealBaseType() 623 if (typeClass == RT_TYPE_TYPEDEF) in checkRealBaseType() 1609 RTTypeClass typeClass = reader.getTypeClass(); in produceType() local 1611 switch (typeClass) in produceType()
|
/aoo42x/main/bridges/source/cpp_uno/shared/ |
H A D | types.cxx | 35 bool isSimpleType(typelib_TypeClass typeClass) { in isSimpleType() argument 36 return typeClass <= typelib_TypeClass_DOUBLE in isSimpleType() 37 || typeClass == typelib_TypeClass_ENUM; in isSimpleType()
|
/aoo42x/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/ |
H A D | Marshal.java | 96 TypeClass typeClass = type.getTypeClass(); in writeType() local 97 if (TypeDescription.isTypeClassSimple(typeClass)) { in writeType() 98 write8Bit(typeClass.getValue()); in writeType() 102 write8Bit(typeClass.getValue() | (found[0] ? 0 : 0x80)); in writeType()
|
H A D | Unmarshal.java | 110 TypeClass typeClass = TypeClass.fromInt(b & 0x7F); in readType() local 111 if (TypeDescription.isTypeClassSimple(typeClass)) { in readType() 112 return TypeDescription.getTypeDescription(typeClass); in readType()
|
/aoo42x/main/codemaker/source/cunomaker/ |
H A D | cunotype.cxx | 1054 switch (typeClass) in dumpType() 1195 RTTypeClass typeClass = m_typeMgr.getTypeClass(type); in dumpTypeInit() local 1197 if (typeClass == RT_TYPE_ENUM) in dumpTypeInit() 1291 RTTypeClass typeClass; in checkSpecialCunoType() local 1301 typeClass = reader.getTypeClass(); in checkSpecialCunoType() 1303 if (typeClass == RT_TYPE_TYPEDEF) in checkSpecialCunoType() 1363 RTTypeClass typeClass; in checkRealBaseType() local 1372 typeClass = reader.getTypeClass(); in checkRealBaseType() 1374 if (typeClass == RT_TYPE_TYPEDEF) in checkRealBaseType() 3386 RTTypeClass typeClass = reader.getTypeClass(); in produceType() local [all …]
|
/aoo42x/main/codemaker/source/commonjava/ |
H A D | commonjava.cxx | 49 codemaker::UnoType::Sort sort, RTTypeClass typeClass, in translateUnoToJavaType() argument 54 if (typeClass == RT_TYPE_INTERFACE in translateUnoToJavaType()
|
/aoo42x/main/registry/inc/registry/ |
H A D | writer.hxx | 80 rtl::OUString const & fileName, RTTypeClass typeClass, bool published, in Writer() argument 86 version, documentation.pData, fileName.pData, typeClass, in Writer()
|
/aoo42x/main/codemaker/source/cppumaker/ |
H A D | cpputype.cxx | 896 switch (typeClass) in dumpType() 1042 RTTypeClass typeClass; in resolveTypedefs() local 1052 typeClass = reader.getTypeClass(); in resolveTypedefs() 1054 if (typeClass == RT_TYPE_TYPEDEF) in resolveTypedefs() 1074 RTTypeClass typeClass; in checkRealBaseType() local 1084 typeClass = reader.getTypeClass(); in checkRealBaseType() 1086 if (typeClass == RT_TYPE_TYPEDEF) in checkRealBaseType() 4227 RTTypeClass typeClass = reader.getTypeClass(); in produceType() local 4229 switch (typeClass) in produceType() 4362 RTTypeClass typeClass = reader.getTypeClass(); in produceType() local [all …]
|
/aoo42x/main/codemaker/source/commoncpp/ |
H A D | commoncpp.cxx | 107 codemaker::UnoType::Sort sort, RTTypeClass typeClass, in translateUnoToCppType() argument 112 if (typeClass == RT_TYPE_INTERFACE in translateUnoToCppType()
|
/aoo42x/main/odk/examples/java/Inspector/ |
H A D | UnoMethodNode.java | 115 TypeClass typeClass = getTypeClass(); in getNodeDescription() local 116 if (typeClass != TypeClass.VOID){ in getNodeDescription()
|