Lines Matching refs:relType

368 	OString 	relType;  in dumpDepIncludes()  local
375 relType = (*iter).m_type; in dumpDepIncludes()
377 relType = relType.copy(index+1); in dumpDepIncludes()
379 if (isNestedTypeByName(relType) && hasNestedType(relType)) in dumpDepIncludes()
396 if (getBaseType(relType).isEmpty() && in dumpDepIncludes()
397 m_typeName != relType) in dumpDepIncludes()
399 if (m_typeMgr.getTypeClass(relType) == RT_TYPE_INTERFACE in dumpDepIncludes()
404 if (isNestedTypeByName(relType)) in dumpDepIncludes()
406 sal_Int32 iLastS = relType.lastIndexOf('/'); in dumpDepIncludes()
408 OString outerNamespace(relType.copy(0,iLastS)); in dumpDepIncludes()
409 OString innerClass(relType.copy(iLastS+1)); in dumpDepIncludes()
423 OString type(relType.replace('/', '_')); in dumpDepIncludes()
432 if (isNestedTypeByName(relType)) in dumpDepIncludes()
434 sal_Int32 iLastS = relType.lastIndexOf('/'); in dumpDepIncludes()
436 OString outerNamespace(relType.copy(0,iLastS)); in dumpDepIncludes()
441 dumpInclude(o, relType, prefix); in dumpDepIncludes()
445 if (isNestedTypeByName(relType)) in dumpDepIncludes()
447 sal_Int32 iLastS = relType.lastIndexOf('/'); in dumpDepIncludes()
449 OString outerNamespace(relType.copy(0,iLastS)); in dumpDepIncludes()
454 dumpInclude(o, relType, prefix); in dumpDepIncludes()
457 if (relType == "any") in dumpDepIncludes()
463 if (relType == "type") in dumpDepIncludes()
469 if (relType == "string" && sPrefix.equals("H")) in dumpDepIncludes()
1031 OString relType = (index > 0 ? (sType).copy(index+1) : type); in dumpType() local
1033 RTTypeClass typeClass = m_typeMgr.getTypeClass(relType); in dumpType()
1045 o << relType.replace( '/', '.'); in dumpType()
1057 o << relType.replace('/', '_') << " *"; in dumpType()
1061 OString tmp(getBaseType(relType)); in dumpType()
1065 if ( bParam && !bPointer && relType.equals("any") ) in dumpType()
1068 throw CannotDumpException("Unknown type '" + relType + "', incomplete type library."); in dumpType()
1073 o << relType.replace('/', '_'); in dumpType()
1078 o << relType.replace('/', '_'); in dumpType()
1127 OString relType = (index > 0 ? (sType).copy(index+1) : type); in dumpCppuGetType() local
1131 if (m_typeMgr.getTypeClass(relType) == RT_TYPE_INTERFACE) in dumpCppuGetType()
1151 m_typeMgr.getTypeClass(relType) == RT_TYPE_INTERFACE) in dumpCppuGetType()
1258 OString relType = (index > 0 ? ((OString)type).copy(index+1) : type); in typeToIdentifier() local
1271 if ( isBaseType(relType) ) in typeToIdentifier()
1273 sIdentifier += relType.replace(' ', '_'); in typeToIdentifier()
1276 sIdentifier += relType.replace('/', '_'); in typeToIdentifier()
1765 OString relType = checkSpecialCunoType(fieldType); in dumpAttributes() local
1768 if ( m_typeMgr.getTypeClass(relType) == RT_TYPE_STRUCT || in dumpAttributes()
1769 m_typeMgr.getTypeClass(relType) == RT_TYPE_EXCEPTION || in dumpAttributes()
1770 (isBaseType(relType) && relType.equals("any"))) in dumpAttributes()
1854 OString relType = checkSpecialCunoType(paramType); in dumpMethods() local
1855 if (m_typeMgr.getTypeClass(relType) == RT_TYPE_STRUCT || in dumpMethods()
1856 m_typeMgr.getTypeClass(relType) == RT_TYPE_EXCEPTION || in dumpMethods()
1857 (isBaseType(relType) && relType.equals("any"))) in dumpMethods()