Home
last modified time | relevance | path

Searched refs:xType (Results 1 – 24 of 24) sorted by relevance

/trunk/main/cppuhelper/source/
H A Dtdmgr.cxx108 if (xType.is()) in createCTD()
110 OUString aTypeName( xType->getName() ); in createCTD()
176 if (xType.is()) in createCTD()
193 OUString aTypeName( xType->getName() ); in createCTD()
234 if (xType.is() && xType->getTypeParameters().getLength() == 0) in createCTD()
419 if (xType.is()) in createCTD()
460 Uik uik = xType->getUik(); in createCTD()
485 if (xType.is()) in createCTD()
506 if (xType.is()) in createCTD()
535 if (xType.is()) in createCTD()
[all …]
H A Dstdidlclass.cxx82 …virtual sal_Bool SAL_CALL isAssignableFrom( const Reference< XIdlClass >& xType ) throw(RuntimeExc… in isAssignableFrom() argument
83 { return equals( xType ); } in isAssignableFrom()
/trunk/main/cli_ure/source/climaker/
H A Dclimaker_emit.cxx503 xType, UNO_QUERY_THROW ); in get_type()
550 xType->getConstants() ); in get_type()
686 xType->acquire(); in get_type()
702 xType, UNO_QUERY); in get_type()
743 xType->getBaseTypes(); in get_type()
780 xType->acquire(); in get_type()
814 xType->acquire(); in get_type()
815 entry->m_xType = xType.get(); in get_type()
844 xType->acquire(); in get_type()
885 xType->getMembers() ); in complete_iface_type()
[all …]
H A Dclimaker_share.h220 css::reflection::XConstantTypeDescription > const & xType );
223 css::reflection::XConstantsTypeDescription > const & xType );
226 css::reflection::XEnumTypeDescription > const & xType );
233 css::reflection::XCompoundTypeDescription > const & xType );
236 css::reflection::XInterfaceTypeDescription2 > const & xType );
239 css::reflection::XSingletonTypeDescription2 > const & xType );
248 css::reflection::XServiceTypeDescription2 > const & xType );
261 css::reflection::XTypeDescription > const & xType );
/trunk/main/rdbmaker/source/rdbmaker/
H A Dtypeblop.cxx141 if ( xType->getTypeClass() == TypeClass_INTERFACE ) in getInheritedMemberCount()
143 Reference< XInterfaceTypeDescription > xIFace(xType, UNO_QUERY); in getInheritedMemberCount()
285 Reference< XTypeDescription > xType; in getTypeBlop() local
286 aTypeAny >>= xType; in getTypeBlop()
288 if ( !xType.is() ) in getTypeBlop()
291 switch (xType->getTypeClass()) in getTypeBlop()
316 Reference< XModuleTypeDescription > xMFace(xType, UNO_QUERY); in getTypeBlop()
435 if (xType->getTypeClass() == TypeClass_EXCEPTION) in getTypeBlop()
441 Reference< XCompoundTypeDescription > xComp(xType, UNO_QUERY); in getTypeBlop()
473 Reference< XEnumTypeDescription > xEnum(xType, UNO_QUERY); in getTypeBlop()
[all …]
/trunk/main/unodevtools/source/unodevtools/
H A Dtypeblob.cxx288 Reference< XTypeDescription > xType; in getTypeBlob() local
289 aTypeAny >>= xType; in getTypeBlob()
291 if ( !xType.is() ) in getTypeBlob()
294 Reference< XPublished > xPublished(xType, UNO_QUERY); in getTypeBlob()
296 switch (xType->getTypeClass()) in getTypeBlob()
300 Reference< XConstantsTypeDescription > xCFace(xType, UNO_QUERY); in getTypeBlob()
324 Reference< XModuleTypeDescription > xMFace(xType, UNO_QUERY); in getTypeBlob()
478 Reference< XStructTypeDescription > xStruct(xType, UNO_QUERY); in getTypeBlob()
538 Reference< XCompoundTypeDescription > xComp(xType, UNO_QUERY); in getTypeBlob()
580 Reference< XEnumTypeDescription > xEnum(xType, UNO_QUERY); in getTypeBlob()
[all …]
/trunk/main/stoc/source/corereflection/
H A Dcrbase.cxx107 sal_Bool IdlClassImpl::equals( const Reference< XIdlClass >& xType ) in equals() argument
110 return (xType.is() && in equals()
111 (xType->getTypeClass() == _eTypeClass) && (xType->getName() == _aName)); in equals()
130 sal_Bool IdlClassImpl::isAssignableFrom( const Reference< XIdlClass > & xType ) in isAssignableFrom() argument
134 if (equals( xType ) || eAssign == TypeClass_ANY) // default shot in isAssignableFrom()
140 TypeClass eFrom = xType->getTypeClass(); in isAssignableFrom()
H A Dcrarray.cxx205 sal_Bool ArrayIdlClassImpl::isAssignableFrom( const Reference< XIdlClass > & xType ) in isAssignableFrom() argument
208 return (xType.is() && in isAssignableFrom()
209 (equals( xType ) || in isAssignableFrom()
210 (xType->getTypeClass() == getTypeClass() && // must be sequence|array in isAssignableFrom()
211 getComponentType()->isAssignableFrom( xType->getComponentType() )))); in isAssignableFrom()
H A Dcrcomp.cxx301 sal_Bool CompoundIdlClassImpl::isAssignableFrom( const Reference< XIdlClass > & xType ) in isAssignableFrom() argument
304 if (xType.is()) in isAssignableFrom()
306 TypeClass eTC = xType->getTypeClass(); in isAssignableFrom()
309 if (equals( xType )) in isAssignableFrom()
313 const Sequence< Reference< XIdlClass > > & rSeq = xType->getSuperclasses(); in isAssignableFrom()
H A Dbase.hxx188 …virtual sal_Bool SAL_CALL equals( const Reference< XIdlClass >& xType ) throw(::com::sun::star::un…
190 …virtual sal_Bool SAL_CALL isAssignableFrom( const Reference< XIdlClass > & xType ) throw(::com::su…
244 …virtual sal_Bool SAL_CALL isAssignableFrom( const Reference< XIdlClass > & xType ) throw(::com::su…
277 …virtual sal_Bool SAL_CALL isAssignableFrom( const Reference< XIdlClass > & xType ) throw(::com::su…
308 …virtual sal_Bool SAL_CALL isAssignableFrom( const Reference< XIdlClass > & xType ) throw(::com::su…
H A Dcriface.cxx853 sal_Bool InterfaceIdlClassImpl::isAssignableFrom( const Reference< XIdlClass > & xType ) in isAssignableFrom() argument
856 if (xType.is() && xType->getTypeClass() == TypeClass_INTERFACE) in isAssignableFrom()
858 if (equals( xType )) in isAssignableFrom()
862 const Sequence< Reference< XIdlClass > > & rSeq = xType->getSuperclasses(); in isAssignableFrom()
/trunk/main/xmloff/source/xforms/
H A Dxformsexport.cxx155 const Reference<XPropertySet>& xType );
481 const Reference<XPropertySet>& xType ) in lcl_getXSDType() argument
487 xType->getPropertyValue( OUSTRING("TypeClass") ) >>= nDataTypeClass; in lcl_getXSDType()
542 const Reference<XPropertySet>& xType ) in lcl_exportDataType() argument
546 xType->getPropertyValue( OUSTRING("IsBasic") ) >>= bIsBasic; in lcl_exportDataType()
554 xType->getPropertyValue( OUSTRING("Name") ) >>= sName; in lcl_exportDataType()
562 lcl_getXSDType( rExport, xType ) ); in lcl_exportDataType()
570 Reference<XPropertySet>( xType, UNO_QUERY ), in lcl_exportDataType()
591 Reference<XPropertySet> xType( xEnum->nextElement(), UNO_QUERY ); in exportXFormsSchemas() local
592 lcl_exportDataType( rExport, xType ); in exportXFormsSchemas()
/trunk/main/idl/source/prj/
H A Ddatabase.cxx573 SvMetaTypeRef xType = new SvMetaType( pType->GetName(), 'h', "dummy" ); in ReadKnownType() local
574 xType->SetRef( pType ); in ReadKnownType()
575 xType->SetIn( bIn ); in ReadKnownType()
576 xType->SetOut( bOut ); in ReadKnownType()
577 xType->SetCall0( nCall0 ); in ReadKnownType()
578 xType->SetCall1( nCall1 ); in ReadKnownType()
580 aTmpTypeList.Append( xType ); in ReadKnownType()
581 return xType; in ReadKnownType()
/trunk/main/chart2/source/controller/chartapiwrapper/
H A DMinMaxLineWrapper.cxx193 Reference< chart2::XChartType > xType( aTypes[nN] ); in setPropertyValue() local
194 if( xType->getChartType().equals(CHART2_SERVICE_NAME_CHARTTYPE_CANDLESTICK) ) in setPropertyValue()
196 Reference< chart2::XDataSeriesContainer > xSeriesContainer(xType,uno::UNO_QUERY); in setPropertyValue()
232 Reference< chart2::XChartType > xType( aTypes[nN] ); in getPropertyValue() local
233 if( xType->getChartType().equals(CHART2_SERVICE_NAME_CHARTTYPE_CANDLESTICK) ) in getPropertyValue()
235 Reference< chart2::XDataSeriesContainer > xSeriesContainer(xType,uno::UNO_QUERY); in getPropertyValue()
H A DUpDownBarWrapper.cxx195 Reference< chart2::XChartType > xType( aTypes[nN] ); in setPropertyValue() local
196 if( xType->getChartType().equals(CHART2_SERVICE_NAME_CHARTTYPE_CANDLESTICK) ) in setPropertyValue()
219 Reference< chart2::XChartType > xType( aTypes[nN] ); in getPropertyValue() local
220 if( xType->getChartType().equals(CHART2_SERVICE_NAME_CHARTTYPE_CANDLESTICK) ) in getPropertyValue()
/trunk/main/udkapi/com/sun/star/reflection/
H A DXIdlClass.idl69 of a second one (<code>xType</code>).
71 @param xType
75 from values of <code>xType</code>.
77 boolean isAssignableFrom( [in] XIdlClass xType );
/trunk/main/chart2/source/tools/
H A DDiagramHelper.cxx1485 Reference< chart2::XChartType > xType( aTypes[nN] ); in isSupportingFloorAndWall() local
1486 if( xType.is() && xType->getChartType().match(CHART2_SERVICE_NAME_CHARTTYPE_PIE) ) in isSupportingFloorAndWall()
1488 if( xType.is() && xType->getChartType().match(CHART2_SERVICE_NAME_CHARTTYPE_NET) ) in isSupportingFloorAndWall()
1490 if( xType.is() && xType->getChartType().match(CHART2_SERVICE_NAME_CHARTTYPE_FILLED_NET) ) in isSupportingFloorAndWall()
/trunk/main/svx/source/fmcomp/
H A Dfmgridif.cxx714 Sequence< sal_Bool > SAL_CALL FmXGridControl::queryFieldDataType( const Type& xType ) throw(Runtime… in queryFieldDataType() argument
720 return xPeerSupplier->queryFieldDataType(xType); in queryFieldDataType()
727 Sequence< Any > SAL_CALL FmXGridControl::queryFieldData( sal_Int32 nRow, const Type& xType ) throw(… in queryFieldData() argument
733 return xPeerSupplier->queryFieldData(nRow, xType); in queryFieldData()
1281 Sequence< sal_Bool > SAL_CALL FmXGridPeer::queryFieldDataType( const Type& xType ) throw(RuntimeExc… in queryFieldDataType() argument
1309 switch (xType.getTypeClass()) in queryFieldDataType()
1333 sal_Bool bRequestedAsAny = (xType.getTypeClass() == TypeClass_ANY); in queryFieldDataType()
1377 Sequence< Any > SAL_CALL FmXGridPeer::queryFieldData( sal_Int32 nRow, const Type& xType ) throw(Run… in queryFieldData() argument
1404 sal_Bool bRequestedAsAny = (xType.getTypeClass() == TypeClass_ANY); in queryFieldData()
1429 switch (xType.getTypeClass()) in queryFieldData()
/trunk/main/offapi/com/sun/star/form/
H A DXGridFieldDataSupplier.idl72 sequence<boolean> queryFieldDataType( [in] type xType );
83 [in] type xType );
/trunk/main/unoxml/source/rdf/
H A Dlibrdf_repository.cxx2027 const uno::Reference< rdf::XURI > xType(xLiteral->getDatatype()); in mkNode() local
2030 if (!xType.is()) { in mkNode()
2036 mkURI(i_pWorld, xType), safe_librdf_free_uri); in mkNode()
2042 if (!xType.is()) { in mkNode()
2192 uno::Reference<rdf::XURI> xType(convertToXURI(pType)); in convertToXNode() local
2193 OSL_ENSURE(xType.is(), "convertToXNode: null uri"); in convertToXNode()
2195 rdf::Literal::createWithType(m_xContext, valueU, xType), in convertToXNode()
/trunk/main/framework/qa/complex/imageManager/
H A DCheckImageManager.java123 XTypeProvider xType = UnoRuntime.queryInterface(XTypeProvider.class, xImageManager); in performChecks() local
124 _XTypeProvider _xType = new _XTypeProvider(param, xType); in performChecks()
/trunk/main/svx/inc/svx/
H A Dfmgridif.hxx280 …al_Bool > SAL_CALL queryFieldDataType( const ::com::sun::star::uno::Type& xType ) throw(::com::sun…
281 …L_CALL queryFieldData( sal_Int32 nRow, const ::com::sun::star::uno::Type& xType ) throw(::com::sun…
458 …al_Bool > SAL_CALL queryFieldDataType( const ::com::sun::star::uno::Type& xType ) throw(::com::sun…
459 …L_CALL queryFieldData( sal_Int32 nRow, const ::com::sun::star::uno::Type& xType ) throw(::com::sun…
/trunk/main/sfx2/source/doc/
H A DDocumentMetadataAccess.cxx354 uno::Reference<rdf::XURI> xType; in addContentOrStylesFileImpl() local
356 xType.set(getURI<rdf::URIs::ODF_CONTENTFILE>(i_rImpl.m_xContext)); in addContentOrStylesFileImpl()
358 xType.set(getURI<rdf::URIs::ODF_STYLESFILE>(i_rImpl.m_xContext)); in addContentOrStylesFileImpl()
362 addFile(i_rImpl, xType.get(), i_rPath); in addContentOrStylesFileImpl()
/trunk/main/sc/workben/
H A Dtest.cxx1761 XTextFieldTypeRef xType = xTypes->getFieldType( FIELDTYPE_INTERNET ); in IMPL_LINK() local
1763 if ( xCursor && xType ) in IMPL_LINK()
1772 XTextFieldRef xField = xTypes->insertTextField( xType, xPos ); in IMPL_LINK()
1791 xType->queryInterface(XIndexAccess::getSmartUik()); in IMPL_LINK()

Completed in 132 milliseconds