Lines Matching refs:relType

323 	OString 	relType;  in dumpDepIncludes()  local
329 relType = (*iter).m_type; in dumpDepIncludes()
331 relType = relType.copy(index+1); in dumpDepIncludes()
333 if (!isNestedTypeByName(relType)) in dumpDepIncludes()
344 if ( getUnoBaseType(relType).isEmpty() && in dumpDepIncludes()
345 m_typeName != relType) in dumpDepIncludes()
347 if (m_typeMgr.getTypeClass(relType) == RT_TYPE_INTERFACE in dumpDepIncludes()
358 dumpNameSpace(o, sal_True, sal_False, relType); in dumpDepIncludes()
359 o << "\nclass " << scopedName(m_typeName, relType, sal_True) << ";\n"; in dumpDepIncludes()
360 dumpNameSpace(o, sal_False, sal_False, relType); in dumpDepIncludes()
364 dumpInclude(o, allreadyDumped, relType, prefix); in dumpDepIncludes()
368 dumpInclude(o, allreadyDumped, relType, prefix); in dumpDepIncludes()
579 OString relType = (index > 0 ? (sType).copy(index+1) : type); in printUnoType() local
581 RTTypeClass typeClass = m_typeMgr.getTypeClass(relType); in printUnoType()
595 ret.append(scopedName(m_typeName, relType)); in printUnoType()
597 …ret.append("::com::sun::star::uno::Reference< ").append(scopedName(m_typeName, relType)).append(" … in printUnoType()
601 OString tmp(getUnoBaseType(relType)); in printUnoType()
604 ret.append(getUnoBaseType(relType)); in printUnoType()
606 throw CannotDumpException("Unknown type '" + relType + "', incomplete type library. ("+type+")"); in printUnoType()
613 ret.append(scopedName(m_typeName, relType)); in printUnoType()
644 OString relType = (index > 0 ? (sType).copy(index+1) : type); in printCorbaType() local
646 RTTypeClass typeClass = m_typeMgr.getTypeClass(relType); in printCorbaType()
648 if (relType.equals("com/sun/star/uno/XInterface")) in printCorbaType()
649 relType = "Bonobo/Unknown"; in printCorbaType()
651 if (relType.equals("com/sun/star/uno/TypeClass")) in printCorbaType()
652 relType = "CORBA_TypeCode"; in printCorbaType()
654 if (relType.equals("com/sun/star/uno/RuntimeException")) in printCorbaType()
655 relType = "CORBA_SystemException"; in printCorbaType()
657 if (relType.equals("com/sun/star/uno/Exception")) in printCorbaType()
658 relType = "CORBA_any"; in printCorbaType()
672 ret.append(relType.replace('/', '_')); in printCorbaType()
676 OString tmp(getUnoBaseType(relType)); in printCorbaType()
678 ret.append(getCorbaBaseType(relType)); in printCorbaType()
680 throw CannotDumpException("Unknown type '" + relType + "', incomplete type library. ("+type+")"); in printCorbaType()
687 ret.append(relType.replace('/', '_')); in printCorbaType()
705 OString relType = (index > 0 ? (sType).copy(index+1) : type); in isPassedAsPointer() local
779 OString relType = (index > 0 ? (sType).copy(index+1) : type); in isArray() local
809 OString relType = (index > 0 ? (sType).copy(index+1) : type); in printCorbaParameter() local
811 RTTypeClass typeClass = m_typeMgr.getTypeClass(relType); in printCorbaParameter()
813 if (relType.equals("Bonobo/NullInterface")) in printCorbaParameter()
814 relType = "CORBA_Object"; in printCorbaParameter()
816 if (relType.equals("com/sun/star/uno/XInterface")) in printCorbaParameter()
817 relType = "Bonobo/Unknown"; in printCorbaParameter()
819 if (relType.equals("com/sun/star/uno/TypeClass")) in printCorbaParameter()
820 relType = "CORBA_TypeCode"; in printCorbaParameter()
822 if (relType.equals("com/sun/star/uno/RuntimeException")) in printCorbaParameter()
823 relType = "CORBA_SystemException"; in printCorbaParameter()
825 if (relType.equals("com/sun/star/uno/Exception")) in printCorbaParameter()
826 relType = "CORBA_any"; in printCorbaParameter()
837 ret.append(relType.replace('/', '_')); in printCorbaParameter()
841 OString tmp(getUnoBaseType(relType)); in printCorbaParameter()
844 ret.append(getCorbaBaseType(relType)); in printCorbaParameter()
846 throw CannotDumpException("Unknown type '" + relType + "', incomplete type library. ("+type+")"); in printCorbaParameter()
853 ret.append(relType.replace('/', '_')); in printCorbaParameter()
1034 OString relType = (index > 0 ? ((OString)type).copy(index+1) : type); in typeToIdentifier() local
1047 if ( isBaseType(relType) ) in typeToIdentifier()
1049 sIdentifier += relType.replace(' ', '_'); in typeToIdentifier()
1052 sIdentifier += relType.replace('/', '_'); in typeToIdentifier()
1258 OString relType = checkSpecialCorbaType(paramType); in dumpUnoMethods() local
1259 if (m_typeMgr.getTypeClass(relType) == RT_TYPE_ENUM || in dumpUnoMethods()
1260 (isBaseType(relType) && !relType.equals("string") && !relType.equals("any"))) in dumpUnoMethods()