/aoo42x/main/idlc/source/ |
H A D | astinterface.cxx | 57 AstInterface const * ifc, bool optional) const in checkInheritedInterfaceClashes() argument 62 doubleDecls, seen, ifc, true, optional, optional); in checkInheritedInterfaceClashes() 70 InheritedInterface(ifc, optional, documentation)); in addInheritedInterface() 308 i != ifc->getIteratorEnd(); ++i) in checkInheritedInterfaceClashes() 357 AstInterface const * ifc, bool direct, bool optional) in addVisibleInterface() argument 372 i != ifc->getIteratorEnd(); ++i) in addVisibleInterface() 379 ifc->m_inheritedInterfaces.begin()); in addVisibleInterface() 380 i != ifc->m_inheritedInterfaces.end(); ++i) in addVisibleInterface() 389 i != ifc->getIteratorEnd(); ++i) in addOptionalVisibleMembers() 404 ifc->m_inheritedInterfaces.begin()); in addOptionalVisibleMembers() [all …]
|
H A D | parser.y | 150 AstInterface * ifc, rtl::OString const & name, bool optional, 153 AstDeclaration * decl = ifc->lookupByName(name); 159 NT_interface, &ifc->getScopedName(), decl); 162 ifc->checkInheritedInterfaceClashes( 168 ifc->addInheritedInterface( 705 AstInterface * ifc = static_cast< AstInterface * >( 707 if (!ifc->hasMandatoryInheritedInterfaces() 714 ifc->setDefined(); 1285 AstInterface * ifc = static_cast< AstInterface * >( 1287 if (ifc->usesSingleInheritance()) { [all …]
|
/aoo42x/main/ridljar/test/com/sun/star/uno/ |
H A D | Type_Test.java | 92 Type ifc = new Type(com.sun.star.uno.XInterface.class); in testIsSupertypeOf() local 96 assure("not ANY :> XInterface", !Type.ANY.isSupertypeOf(ifc)); in testIsSupertypeOf() 99 assure("not XInterface :> ANY", !ifc.isSupertypeOf(Type.ANY)); in testIsSupertypeOf() 100 assure("XInterface :> XInterface", ifc.isSupertypeOf(ifc)); in testIsSupertypeOf() 101 assure("XInterface :> XComponentContext", ifc.isSupertypeOf(ctx)); in testIsSupertypeOf() 102 assure("not XComponentContext :> XInterface", !ctx.isSupertypeOf(ifc)); in testIsSupertypeOf() 105 assure("not XInterface :> RuntimeException", !ifc.isSupertypeOf(exc)); in testIsSupertypeOf()
|
/aoo42x/main/qadevOOo/tests/java/ifc/lang/ |
H A D | _XSingleServiceFactory.java | 24 package ifc.lang; 99 Object ifc = UnoRuntime.queryInterface(mustSupport[i], Inst) ; in _createInstance() local 100 if (ifc == null) { in _createInstance() 104 bOK &= ifc != null ; in _createInstance() 144 Object ifc = UnoRuntime.queryInterface(mustSupport[i], Inst) ; in _createInstanceWithArguments() local 145 if (ifc == null) { in _createInstanceWithArguments() 149 bOK &= ifc != null ; in _createInstanceWithArguments()
|
/aoo42x/main/scripting/workben/ifc/scripting/ |
H A D | _XScriptStorageManager.java | 24 package ifc.script.framework.storage; 121 XInterface ifc = (XInterface)oObj.getScriptStorage(id); in _createScriptStorageWithURI() local 123 if (ifc == null) in _createScriptStorageWithURI() 127 XScriptInfoAccess.class, ifc); in _createScriptStorageWithURI() 170 XInterface ifc = (XInterface)oObj.getScriptStorage(storageid); in _getScriptStorage() local 172 if (ifc == null) in _getScriptStorage() 176 XScriptInfoAccess.class, ifc); in _getScriptStorage()
|
H A D | _XScriptNameResolver.java | 24 package ifc.script.framework.runtime; 97 XInterface ifc = (XInterface) oObj.resolve(logicalname, args); in runResolveTest() local 99 if (ifc == null) in runResolveTest() 101 else if (UnoRuntime.queryInterface(XScriptInfo.class, ifc) == null) in runResolveTest() 146 XInterface ifc = (XInterface) in getStorageId() local 151 UnoRuntime.queryInterface(XScriptStorageManager.class, ifc); in getStorageId()
|
H A D | ScriptingUtils.java | 24 package ifc.script.framework; 84 XInterface ifc = (XInterface) in getStorageId() local 89 UnoRuntime.queryInterface(XScriptStorageManager.class, ifc); in getStorageId()
|
H A D | _XScriptSecurity.java | 24 package ifc.script.framework.security; 45 import ifc.script.framework.SecurityDialogUtil; 343 XInterface ifc = (XInterface) in getStorageId() local 348 UnoRuntime.queryInterface(XScriptStorageManager.class, ifc); in getStorageId()
|
H A D | _XScriptInvocation.java | 24 package ifc.script.framework.runtime; 166 XInterface ifc = (XInterface) in getStorageId() local 171 UnoRuntime.queryInterface(XScriptStorageManager.class, ifc); in getStorageId()
|
/aoo42x/main/sal/osl/unx/ |
H A D | util.c | 57 struct ifconf ifc; in osl_getEthernetAddress() local 86 ifc.ifc_len = sizeof(buff); in osl_getEthernetAddress() 87 ifc.ifc_buf = buff; in osl_getEthernetAddress() 88 if ( ioctl(so, SIOCGIFCONF, &ifc) < 0 ) in osl_getEthernetAddress() 102 ifr = ifc.ifc_req; in osl_getEthernetAddress() 103 for ( i = ifc.ifc_len / sizeof(struct ifreq) ; --i >= 0 ; ifr++ ) in osl_getEthernetAddress()
|
/aoo42x/main/cppuhelper/source/ |
H A D | propertysetmixin.cxx | 107 ifc, css::uno::UNO_QUERY); in dispose() 111 ifc.clear(); in dispose() 114 css::uno::Reference< T > ifc; member 180 if (seen->insert(ifc->getName()).second) { in initProperties() 183 ifc->getBaseTypes()); in initProperties() 190 ifc->getMembers()); in initProperties() 522 initProperties(ifc, m_absentOptional, &handleNames); in Impl() 1142 css::uno::Reference< css::uno::XInterface > ifc( in queryInterface() local 1144 return css::uno::Any(&ifc, type); in queryInterface() 1150 return css::uno::Any(&ifc, type); in queryInterface() [all …]
|
/aoo42x/main/qadevOOo/tests/java/ifc/util/ |
H A D | _XCloneable.java | 24 package ifc.util; 65 protected byte[] getImplementationID(XInterface ifc) { in getImplementationID() argument 68 UnoRuntime.queryInterface(XTypeProvider.class, ifc); in getImplementationID() 85 protected String getImplementationName(XInterface ifc) { in getImplementationName() argument 88 UnoRuntime.queryInterface(XServiceInfo.class, ifc); in getImplementationName()
|
/aoo42x/main/idlc/inc/idlc/ |
H A D | astinterface.hxx | 80 AstInterface const * ifc, bool optional) const; 83 AstType const * ifc, bool optional, 115 std::set< rtl::OString > & seenInterfaces, AstInterface const * ifc, 123 AstInterface const * ifc, bool direct, bool optional); 125 void addOptionalVisibleMembers(AstInterface const * ifc);
|
/aoo42x/main/qadevOOo/runner/base/ |
H A D | java_fat_service.java | 156 MultiMethodTest ifc = null; in executeTest() local 159 ifc = (MultiMethodTest) dcl.getInstance( in executeTest() 161 res = ifc.run(entry.SubEntries[j],tEnv,param); in executeTest() 168 ifc = (MultiMethodTest) dcl.getInstance( in executeTest() 170 if ((tEnv != null) && (ifc != null)) { in executeTest() 171 res = ifc.run(entry.SubEntries[j],tEnv,param); in executeTest()
|
H A D | basic_fat.java | 253 BasicIfcTest ifc = null; in executeTest() local 255 ifc = new BasicIfcTest(entry.SubEntries[j].longName); in executeTest() 256 res = ifc.run(entry.SubEntries[j], tEnv, param); in executeTest()
|
/aoo42x/main/bridges/source/cpp_uno/cc5_solaris_sparc64/ |
H A D | uno2cpp.cxx | 464 uno_Interface * ifc = NULL; in unoInterfaceProxyDispatch() local 467 reinterpret_cast< void ** >(&ifc), in unoInterfaceProxyDispatch() 471 if (ifc != NULL) { in unoInterfaceProxyDispatch() 474 &ifc, td, NULL); in unoInterfaceProxyDispatch() 475 ifc->release(ifc); in unoInterfaceProxyDispatch()
|
H A D | cpp2uno.cxx | 454 css::uno::XInterface * ifc = NULL; in vtableCall() local 457 reinterpret_cast< void ** >(&ifc), in vtableCall() 461 if (ifc != NULL) { in vtableCall() 463 reinterpret_cast< uno_Any * >(callStack[0]), &ifc, in vtableCall() 467 ifc->release(); in vtableCall()
|
/aoo42x/main/sw/source/core/access/ |
H A D | acccontext.hxx | 437 #define THROW_RUNTIME_EXCEPTION( ifc, msg ) \ argument 438 ::com::sun::star::uno::Reference < ifc > xThis( this ); \ 443 #define CHECK_FOR_DEFUNC_THIS( ifc, ths ) \ argument 446 ::com::sun::star::uno::Reference < ifc > xThis( ths ); \ 453 #define CHECK_FOR_DEFUNC( ifc ) \ argument 454 CHECK_FOR_DEFUNC_THIS( ifc, this )
|
/aoo42x/main/tools/inc/tools/ |
H A D | diagnose_ex.h | 92 #define ENSURE_ARG_OR_THROW2(c, m, ifc, arg) if( !(c) ) { \ argument 97 ifc, \ 109 #define ENSURE_OR_THROW2(c, m, ifc) if( !(c) ) { \ argument 114 ifc ); }
|
/aoo42x/main/stoc/source/registry_tdprovider/ |
H A D | tdservice.cxx | 394 Reference< XTypeDescription > ifc; in getReferences() local 397 _xTDMgr->getByHierarchicalName( aBaseName ) >>= ifc; in getReferences() 408 OSL_ASSERT(ifc.is()); in getReferences() 409 if (resolveTypedefs(ifc)->getTypeClass() != TypeClass_INTERFACE) { in getReferences() 419 _xInterfaceTD = ifc; in getReferences()
|
/aoo42x/main/javaunohelper/com/sun/star/lib/uno/helper/ |
H A D | PropertySetMixin.java | 137 XTypeDescription ifc; in PropertySetMixin() local 139 ifc = UnoRuntime.queryInterface( in PropertySetMixin() 154 initProperties(ifc, map, handleNames, new HashSet()); in PropertySetMixin() 605 XInterfaceTypeDescription2 ifc = UnoRuntime.queryInterface( in initProperties() local 607 if (seen.add(ifc.getName())) { in initProperties() 608 XTypeDescription[] bases = ifc.getBaseTypes(); in initProperties() 612 XInterfaceMemberTypeDescription[] members = ifc.getMembers(); in initProperties()
|
/aoo42x/main/binaryurp/source/ |
H A D | incomingrequest.cxx | 149 css::uno::Reference< css::uno::XInterface > ifc; in execute_throw() local 154 ifc = prov->getInstance(oid_); in execute_throw() 166 if (ifc.is()) { in execute_throw() 170 ifc.get(), in execute_throw()
|
/aoo42x/main/qadevOOo/tests/java/mod/_forms/ |
H A D | OListBoxControl.java | 136 ifc.awt._XItemListener.TestItemListener listener = in createTestEnvironment() 137 new ifc.awt._XItemListener.TestItemListener() ; in createTestEnvironment() 162 new ifc.form._XChangeBroadcaster.Changer() { in createTestEnvironment()
|
/aoo42x/main/qadevOOo/tests/java/ifc/style/ |
H A D | _PageStyle.java | 24 package ifc.style; 26 import ifc.style._PageProperties;
|
/aoo42x/main/bridges/test/com/sun/star/lib/uno/bridges/java_remote/ |
H A D | Bug98508_Test.java | 71 Test98508Interface ifc in run() local 76 ifc.get(); in run()
|