Home
last modified time | relevance | path

Searched refs:superType (Results 1 – 8 of 8) sorted by relevance

/AOO41X/main/codemaker/source/cunomaker/
H A Dcunotype.cxx583 OString superType(m_reader.getSuperTypeName()); in dumpGetCunoType() local
585 if ( !superType.isEmpty() ) in dumpGetCunoType()
587 if ( superType.equals("com/sun/star/uno/Exception") ) in dumpGetCunoType()
605 << superType.replace('/', '.') << "\" );\n"; in dumpGetCunoType()
645 if ( !superType.isEmpty() || bIsBaseException ) in dumpGetCunoType()
705 OString superType(m_reader.getSuperTypeName()); in dumpCGetCunoType() local
706 if ( !superType.isEmpty() ) in dumpCGetCunoType()
731 if ( !superType.isEmpty() ) in dumpCGetCunoType()
734 << superType.replace('/', '.') << "\" );\n"; in dumpCGetCunoType()
769 if ( !superType.isEmpty() ) in dumpCGetCunoType()
[all …]
H A Dcunotype.hxx105 void dumpInheritedMembers(FileStream& o, rtl::OString& superType);
161 void dumpInheritedFunctions(FileStream& o, rtl::OString& superType);
/AOO41X/main/codemaker/source/idlmaker/
H A Didltype.cxx358 OString superType(pReader->getSuperTypeName()); in checkInheritedMemberCount() local
359 if ( !superType.isEmpty() ) in checkInheritedMemberCount()
361 TypeReader aSuperReader(m_typeMgr.getTypeReader(superType)); in checkInheritedMemberCount()
783 OString superType(m_reader.getSuperTypeName()); in dumpHFile() local
784 if ( !superType.isEmpty() ) in dumpHFile()
785 o << " : " << scopedName(m_typeName, superType); in dumpHFile()
981 OString superType(pReader->getSuperTypeName()); in checkInheritedMemberCount() local
982 if ( !superType.isEmpty() ) in checkInheritedMemberCount()
984 TypeReader aSuperReader(m_typeMgr.getTypeReader(superType)); in checkInheritedMemberCount()
1268 OString superType(m_reader.getSuperTypeName()); in dumpHFile() local
[all …]
/AOO41X/main/codemaker/source/cppumaker/
H A Dcpputype.cxx489 OString superType; in dumpNormalGetCppuType() local
491 superType = rtl::OUStringToOString( in dumpNormalGetCppuType()
495 if ( !superType.isEmpty() ) in dumpNormalGetCppuType()
497 if ( superType.equals("com/sun/star/uno/Exception") ) in dumpNormalGetCppuType()
503 dumpType(o, superType, true, false, false, true); in dumpNormalGetCppuType()
555 if ( !superType.isEmpty() || bIsBaseException ) in dumpNormalGetCppuType()
604 OString superType; in dumpComprehensiveGetCppuType() local
606 superType = rtl::OUStringToOString( in dumpComprehensiveGetCppuType()
609 if ( !superType.isEmpty() ) { in dumpComprehensiveGetCppuType()
612 dumpType(o, superType, false, false, false, true); in dumpComprehensiveGetCppuType()
[all …]
/AOO41X/main/codemaker/source/bonobowrappermaker/
H A Dcorbatype.cxx450 OString superType(pReader->getSuperTypeName()); in checkInheritedMemberCount() local
451 if ( !superType.isEmpty() ) in checkInheritedMemberCount()
453 TypeReader aSuperReader(m_typeMgr.getTypeReader(superType)); in checkInheritedMemberCount()
1998 OString superType(pReader->getSuperTypeName()); in checkInheritedMemberCount() local
1999 if ( !superType.isEmpty() ) in checkInheritedMemberCount()
2001 TypeReader aSuperReader(m_typeMgr.getTypeReader(superType)); in checkInheritedMemberCount()
2133 OString superType(m_reader.getSuperTypeName()); in dumpFunctions() local
2165 if ( !superType.isEmpty() ) in dumpFunctions()
2168 dumpUnoType(o, superType, sal_False, sal_False); in dumpFunctions()
2170 dumpCorbaType(o, superType, sal_False, sal_False); in dumpFunctions()
[all …]
/AOO41X/main/ridljar/test/com/sun/star/lib/uno/typedesc/
H A DTypeDescription_Test.java212 public TypeSignature(TypeSignature superType, String[] methodNames, in TypeSignature() argument
216 this._superType = superType; in TypeSignature()
219 methodOffset = superType == null ? 0 in TypeSignature()
220 : superType.methodOffset + superType.methodNames.length; in TypeSignature()
223 fieldOffset = superType == null ? 0 in TypeSignature()
224 : superType.fieldOffset + superType.fieldNames.length; in TypeSignature()
/AOO41X/main/rdbmaker/source/codemaker/
H A Ddependency.cxx261 OString superType(reader.getSuperTypeName(i)); in checkTypeDependencies() local
262 dependencies.insert(type, superType, TYPEUSE_SUPER); in checkTypeDependencies()
263 checkTypeDependencies(typeMgr, dependencies, superType); in checkTypeDependencies()
/AOO41X/main/ridljar/com/sun/star/lib/uno/typedesc/
H A DTypeDescription.java575 ITypeDescription superType = getSuperType(); in calculateFieldDescriptions() local
576 IFieldDescription[] superDescs = superType == null in calculateFieldDescriptions()
577 ? null : superType.getFieldDescriptions(); in calculateFieldDescriptions()