Home
last modified time | relevance | path

Searched refs:aAny (Results 51 – 75 of 485) sorted by last modified time

12345678910>>...20

/trunk/main/accessibility/source/standard/
H A Dvclxaccessiblebox.cxx498 Any aAny; in getCurrentValue() local
506 aAny <<= sText; in getCurrentValue()
520 aAny <<= xName->getAccessibleName(); in getCurrentValue()
526 return aAny; in getCurrentValue()
548 Any aAny; in getMaximumValue() local
549 return aAny; in getMaximumValue()
555 Any aAny; in getMinimumValue() local
556 return aAny; in getMinimumValue()
/trunk/main/sw/source/filter/xml/
H A Dwrtxml.cxx188 uno::Any aAny; in _Write() local
198 aAny <<= nProgressRange; in _Write()
200 xInfoSet->setPropertyValue(sProgressRange, aAny); in _Write()
202 aAny <<= static_cast < sal_Int32 >( -1 ); in _Write()
204 xInfoSet->setPropertyValue(sProgressMax, aAny); in _Write()
217 xInfoSet->setPropertyValue( sShowChanges, aAny ); in _Write()
457 aAny = xInfoSet->getPropertyValue( sShowChanges ); in _Write()
461 if ( *(sal_Bool*)aAny.getValue() ) in _Write()
551 uno::Any aAny; in WriteThroughComponent() local
552 aAny <<= aMime; in WriteThroughComponent()
[all …]
H A Dswxml.cxx360 Any aAny = xProps->getPropertyValue( in ReadThroughComponent() local
364 *(sal_Bool *)aAny.getValue(); in ReadThroughComponent()
757 Any aAny; in Read() local
781 Any aAny; in Read() local
790 Any aAny; in Read() local
832 Any aAny; in Read() local
836 aAny.setValue( &bTmp, ::getBooleanCppuType() ); in Read()
840 aAny.setValue( &bTmp, ::getBooleanCppuType() ); in Read()
843 aAny <<= rDoc.GetRedlinePassword(); in Read()
966 aAny >>= aKey; in Read()
[all …]
/trunk/main/starmath/source/
H A Dmathmlexport.cxx347 uno::Any aAny; in WriteThroughComponent() local
348 aAny <<= aMime; in WriteThroughComponent()
351 xSet->setPropertyValue( aPropName, aAny ); in WriteThroughComponent()
357 aAny.setValue( &bFalse, ::getBooleanCppuType() ); in WriteThroughComponent()
358 xSet->setPropertyValue( aPropName, aAny ); in WriteThroughComponent()
364 aAny.setValue( &bTrue, ::getBooleanCppuType() ); in WriteThroughComponent()
365 xSet->setPropertyValue( aTmpPropName, aAny ); in WriteThroughComponent()
/trunk/main/sw/source/core/unocore/
H A Dswunohelper.cxx108 UNO_NMSPC::Any aAny; in UCB_CopyFile() local
114 aAny <<= aInfo; in UCB_CopyFile()
117 aAny ); in UCB_CopyFile()
166 UNO_NMSPC::Any aAny = aCnt.getPropertyValue( in UCB_IsReadOnlyFileName() local
168 if(aAny.hasValue()) in UCB_IsReadOnlyFileName()
169 bIsReadOnly = *(sal_Bool*)aAny.getValue(); in UCB_IsReadOnlyFileName()
H A Dunoobj.cxx2017 uno::Any aAny; in GetPropertyValue() local
2030 *pEntry, rPaM, &aAny, eTemp ); in GetPropertyValue()
2041 rPropSet.getPropertyValue(*pEntry, aSet, aAny); in GetPropertyValue()
2044 return aAny; in GetPropertyValue()
2395 uno::Any aAny; in getPropertyValue() local
2399 aAny <<= bSet; in getPropertyValue()
2405 aAny <<= bSet; in getPropertyValue()
2409 aAny = SwUnoCursorHelper::GetPropertyValue(rUnoCursor, in getPropertyValue()
2412 return aAny; in getPropertyValue()
/trunk/main/slideshow/source/engine/
H A Dslideshowimpl.cxx1552 uno::Any aAny; in registerUserPaintPolygons() local
1555 aAny <<= eLS; in registerUserPaintPolygons()
1556 … aXPropSet->setPropertyValue( rtl::OUString::createFromAscii("LineStyle"), aAny ); in registerUserPaintPolygons()
1562 aAny <<= RGBAColor2UnoColor(nLineColor); in registerUserPaintPolygons()
1563 … aXPropSet->setPropertyValue( rtl::OUString::createFromAscii("LineColor"), aAny ); in registerUserPaintPolygons()
1568 aAny <<= (sal_Int32)fLineWidth; in registerUserPaintPolygons()
1569 … aXPropSet->setPropertyValue( rtl::OUString::createFromAscii("LineWidth"), aAny ); in registerUserPaintPolygons()
/trunk/main/vcl/aqua/source/gdi/
H A Dsalprn.cxx350 …Any aAny = xConfigAccess->getByName( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "UseSystemPrintDi… in getUseNativeDialog() local
351 if( aAny >>= bValue ) in getUseNativeDialog()
/trunk/main/writerfilter/source/dmapper/
H A DDomainMapper_Impl.cxx608 uno::Any aAny; in lcl_CorrectIndents() local
617 if (aAny.hasValue()) in lcl_CorrectIndents()
618 aAny >>= nLeftMargin; in lcl_CorrectIndents()
622 if (aAny.hasValue()) in lcl_CorrectIndents()
632 if (aAny.hasValue()) in lcl_CorrectIndents()
635 aAny >>= aBorderLine; in lcl_CorrectIndents()
642 if (aAny.hasValue()) in lcl_CorrectIndents()
643 aAny >>= nRightMargin; in lcl_CorrectIndents()
647 if (aAny.hasValue()) in lcl_CorrectIndents()
657 if (aAny.hasValue()) in lcl_CorrectIndents()
[all …]
/trunk/main/ucb/source/ucp/file/
H A Dprov.cxx573 Any aAny; in getPropertyValue() local
574 aAny <<= m_FileSystemNotation; in getPropertyValue()
575 return aAny; in getPropertyValue()
579 Any aAny; in getPropertyValue() local
580 aAny <<= m_HomeDirectory; in getPropertyValue()
581 return aAny; in getPropertyValue()
585 Any aAny; in getPropertyValue() local
586 aAny <<= m_HostName; in getPropertyValue()
587 return aAny; in getPropertyValue()
/trunk/main/framework/qa/complex/framework/autosave/
H A DProtocol.java606 public synchronized void log( /*IN*/ Object aAny ) in log() argument
609 impl_logAny(sValue, aAny); in log()
840 if (com.sun.star.uno.AnyConverter.isVoid(aAny)) in impl_logAny()
845 if (com.sun.star.uno.AnyConverter.isChar(aAny)) in impl_logAny()
862 if (com.sun.star.uno.AnyConverter.isByte(aAny)) in impl_logAny()
869 if (com.sun.star.uno.AnyConverter.isShort(aAny)) in impl_logAny()
876 if (com.sun.star.uno.AnyConverter.isInt(aAny)) in impl_logAny()
883 if (com.sun.star.uno.AnyConverter.isLong(aAny)) in impl_logAny()
911 if (com.sun.star.uno.AnyConverter.isEnum(aAny)) in impl_logAny()
917 if (com.sun.star.uno.AnyConverter.isType(aAny)) in impl_logAny()
[all …]
/trunk/main/extensions/source/update/check/
H A Dupdatecheckconfig.cxx135 uno::Any aAny( m_aNameAccess.getValue(pStr) ); in getStringValue() local
138 aAny >>= aRet; in getStringValue()
154 uno::Any aAny( m_aNameAccess.getValue(DOWNLOAD_SIZE) ); in getDownloadSize() local
157 aAny >>= nRet; in getDownloadSize()
/trunk/main/sd/source/filter/xml/
H A Dsdxmlwrp.cxx426 Any aAny = xProps->getPropertyValue( in ReadThroughComponent() local
429 sal_Bool bEncrypted = aAny.getValueType() == ::getBooleanCppuType() && in ReadThroughComponent()
430 *(sal_Bool *)aAny.getValue(); in ReadThroughComponent()
1052 uno::Any aAny; aAny <<= OUString( RTL_CONSTASCII_USTRINGPARAM("text/xml") ); in Export() local
1053 … xProps->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("MediaType")), aAny); in Export()
/trunk/main/sc/source/filter/xml/
H A Dxmlwrap.cxx183 … uno::Any aAny = xSet->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM("Encrypted") ) ); in ImportFromComponent() local
184 aAny >>= bEncrypted; in ImportFromComponent()
685 …uno::Any aAny = xInfoSet->getPropertyValue(OUString(RTL_CONSTASCII_USTRINGPARAM("ScriptConfigurati… in Import() local
687 if( aAny >>= xCodeNameAccess ) in Import()
/trunk/main/filter/source/xsltdialog/
H A Dxmlfiltertestdialog.cxx343 Any aAny( xFilterContainer->getByName( *pFilterName ) ); in onExportBrowse() local
344 if( !(aAny >>= aValues) ) in onExportBrowse()
384 aAny = xTypeDetection->getByName( aType ); in onExportBrowse()
387 if( aAny >>= aValues2 ) in onExportBrowse()
H A Dxmlfiltertabdialog.cxx190 Any aAny( xFilterContainer->getByName( *pFilterName ) ); in onOk() local
191 if( !(aAny >>= aValues) ) in onOk()
H A Dxmlfiltersettingsdialog.cxx403 Any aAny( mxFilterContainer->getByName( *pFilterName ) ); in createUniqueInterfaceName() local
404 if( !(aAny >>= aValues) ) in createUniqueInterfaceName()
589 Any aAny( makeAny( aFilterData ) ); in insertOrEdit() local
652 Any aAny( makeAny( aValues ) ); in insertOrEdit() local
659 mxTypeDetection->insertByName( pFilterEntry->maType, aAny ); in insertOrEdit()
849 Any aAny( mxFilterContainer->getByName( *pFilterName ) ); in onDelete() local
850 if( !(aAny >>= aValues) ) in onDelete()
1100 Any aAny( mxFilterContainer->getByName( *pFilterName ) ); in initFilterList() local
1101 if( !(aAny >>= aValues) ) in initFilterList()
1179 aAny = mxTypeDetection->getByName( pTempFilter->maType ); in initFilterList()
[all …]
/trunk/main/xmloff/source/draw/
H A Danimimp.cxx577 Any aAny; in EndElement() local
607 aAny <<= (sal_Bool)sal_True; in EndElement()
608 xSet->setPropertyValue( mpImpl->msDimPrev, aAny ); in EndElement()
610 aAny <<= (sal_Int32)maDimColor.GetColor(); in EndElement()
615 aAny <<= (sal_Bool)sal_True; in EndElement()
626 aAny = bool2any( sal_True ); in EndElement()
649 aAny <<= maSoundURL; in EndElement()
650 xSet->setPropertyValue( mpImpl->msSound, aAny ); in EndElement()
652 aAny <<= bool2any( mbPlayFull ); in EndElement()
655 aAny <<= bool2any( sal_True ); in EndElement()
[all …]
/trunk/main/basic/source/runtime/
H A Dstep0.cxx358 Any aAny = pUnoObj->getUnoAny(); in checkUnoStructCopy() local
359 if( aAny.getValueType().getTypeClass() == TypeClass_STRUCT ) in checkUnoStructCopy()
361 SbUnoObject* pNewUnoObj = new SbUnoObject( pUnoObj->GetName(), aAny ); in checkUnoStructCopy()
/trunk/main/xmloff/source/text/
H A Dtxtflde.cxx1034 aAny >>= xName; in ExportField()
1509 aAny >>= sName; in ExportFieldHelper()
2745 aAny >>= aValues; in ProcessBibliographyData()
2926 Any aAny; in GetDependentFieldPropertySet() local
2929 aAny >>= aFields; in GetDependentFieldPropertySet()
3565 aAny >>= fDouble; in GetDoubleProperty()
3585 aAny >>= nInt; in GetIntProperty()
3595 aAny >>= nInt; in GetInt16Property()
3605 aAny >>= nInt; in GetInt8Property()
3615 aAny >>= aTime; in GetDateTimeProperty()
[all …]
/trunk/main/cui/source/options/
H A Doptlingu.cxx1398 Any aAny; in FillItemSet() local
1402 aAny <<= bChecked; in FillItemSet()
1407 aAny <<= nVal; in FillItemSet()
1411 xProp->setPropertyValue( aPropName, aAny ); in FillItemSet()
1412 aLngCfg.SetProperty( aPropName, aAny ); in FillItemSet()
/trunk/main/sd/source/core/
H A DCustomAnimationEffect.cxx922 Any aAny; in getRepeatCount() local
923 return aAny; in getRepeatCount()
937 Any aAny; in getEnd() local
938 return aAny; in getEnd()
/trunk/main/scaddins/source/analysis/
H A Danalysishelper.cxx257 ANY aAny = xOpt->getPropertyValue( STRFROMASCII( "NullDate" ) ); in GetNullDate() local
259 if( aAny >>= aDate ) in GetNullDate()
/trunk/main/extensions/source/bibliography/
H A Dbibbeam.cxx158 uno::Any aAny = xPropSet->getPropertyValue( C2U("DefaultControl") ); in createGridWin() local
160 aAny >>= aControlName; in createGridWin()
H A Dgeneral.cxx502 uno::Any aAny = xPropSet->getPropertyValue( C2U("DefaultControl") ); in AddXControl() local
504 aAny >>= aControlName; in AddXControl()
518 aAny <<= (sal_Int16)1; in AddXControl()
519 xPropSet->setPropertyValue(C2U("BoundColumn"), aAny); in AddXControl()
521 aAny.setValue( &eSet, ::getCppuType((const ListSourceType*)0) ); in AddXControl()
522 xPropSet->setPropertyValue(C2U("ListSourceType"), aAny); in AddXControl()
531 xPropSet->setPropertyValue(C2U("ListSource"), aAny); in AddXControl()
540 aAny.setValue(&aValues, ::getCppuType((uno::Sequence<rtl::OUString>*)0)); in AddXControl()
542 xPropSet->setPropertyValue(C2U("StringItemList"), aAny); in AddXControl()
545 aAny.setValue( &bTrue, ::getBooleanCppuType() ); in AddXControl()
[all …]

Completed in 206 milliseconds

12345678910>>...20