Home
last modified time | relevance | path

Searched refs:aVal (Results 101 – 125 of 206) sorted by relevance

123456789

/trunk/main/testtools/com/sun/star/comp/bridge/
H A DTestComponent.java167 …public ComplexTypes complex_in( /*IN*/ComplexTypes aVal ) throws com.sun.star.uno.RuntimeException… in complex_in() argument
168 return aVal; in complex_in()
171 …public ComplexTypes complex_inout( /*INOUT*/ComplexTypes[] aVal ) throws com.sun.star.uno.RuntimeE… in complex_inout() argument
172 return aVal[0]; in complex_inout()
175 public void complex_oneway( /*IN*/ComplexTypes aVal ) throws com.sun.star.uno.RuntimeException { in complex_oneway() argument
178 public void complex_noreturn( /*IN*/ComplexTypes aVal ) throws com.sun.star.uno.RuntimeException { in complex_noreturn() argument
/trunk/main/slideshow/source/engine/shapes/
H A Dviewmediashape.cxx413 sal_Int64 aVal=0; in implInitializeVCLBasedPlayerWindow() local
415 rVCLDeviceParams[ 1 ] >>= aVal; in implInitializeVCLBasedPlayerWindow()
417 Window* pWindow = reinterpret_cast< Window* >( aVal ); in implInitializeVCLBasedPlayerWindow()
/trunk/main/vcl/unx/generic/dtrans/
H A Dbmp.cxx726 XGCValues aVal; in setBitmapData() local
727 aVal.function = GXcopy; in setBitmapData()
728 aVal.foreground = 0xffffffff; in setBitmapData()
729 GC aGC = XCreateGC( m_pDisplay, m_aBitmap, GCFunction | GCForeground, &aVal ); in setBitmapData()
/trunk/main/connectivity/source/drivers/odbcbase/
H A DOPreparedStatement.cxx377 void SAL_CALL OPreparedStatement::setTime( sal_Int32 parameterIndex, const Time& aVal ) throw(SQLEx… in setTime() argument
379 TIME_STRUCT x = OTools::TimeToOdbcTime(aVal); in setTime()
384 void SAL_CALL OPreparedStatement::setTimestamp( sal_Int32 parameterIndex, const DateTime& aVal ) th… in setTimestamp() argument
386 TIMESTAMP_STRUCT x = OTools::DateTimeToTimestamp(aVal); in setTimestamp()
/trunk/main/sdext/source/minimizer/
H A Doptimizerdialogcontrols.cxx667 rtl::OUStringBuffer aVal( OUString::valueOf( fVal ) ); in ImpValueOfInMB() local
668 sal_Int32 nX( OUString( aVal.getStr() ).indexOf( '.', 0 ) ); in ImpValueOfInMB()
671 aVal.setLength( nX + 2 ); in ImpValueOfInMB()
672 aVal.setCharAt( nX, nSeparator ); in ImpValueOfInMB()
674 aVal.append( OUString::createFromAscii( " MB" ) ); in ImpValueOfInMB()
675 return aVal.makeStringAndClear(); in ImpValueOfInMB()
/trunk/main/xmloff/source/transform/
H A DMetaTContext.cxx89 XMLMetaContexts_Impl::value_type aVal( rLocalName, pContext ); in CreateChildContext() local
90 m_aContexts.insert( aVal ); in CreateChildContext()
H A DCreateElemTContext.cxx104 XMLTransformerContextVector::value_type aVal( in StartElement() local
106 aChildContexts.push_back( aVal ); in StartElement()
H A DChartPlotAreaOOoTContext.cxx221 XMLAxisContextVector::value_type aVal( pContext ); in AddContent() local
222 m_aChildContexts.push_back( aVal ); in AddContent()
/trunk/main/sw/source/filter/ww8/
H A Dww8par5.cxx342 String aVal; in Read_Book() local
351 nLen = pSBase->WW8ReadString( *pStrm, aVal, pB->GetStartPos(), nLen, in Read_Book()
369 nI < aVal.Len() && aVal.Len() < (MAX_FIELDLEN - 4); ++nI ) in Read_Book()
371 switch( cChar = aVal.GetChar( nI ) ) in Read_Book()
377 aVal.SetChar( nI, '\n' ), bSetAsHex = false; in Read_Book()
399 aVal.Replace( nI, 1 , sTmp ); in Read_Book()
404 if( aVal.Len() > (MAX_FIELDLEN - 4)) in Read_Book()
405 aVal.Erase( MAX_FIELDLEN - 4 ); in Read_Book()
420 … SwFltBookmark( sOrigName, aVal, pB->GetHandle(), IsTOCBookmarkName( sOrigName ) )); in Read_Book()
H A Dww8par.cxx5370 sal_uInt32 aVal[ 13 ]; in LoadDoc() local
5374 nIniFlags = aVal[ 0 ]; in LoadDoc()
5375 nIniFlags1= aVal[ 1 ]; in LoadDoc()
5377 nIniFlyDx = aVal[ 3 ]; in LoadDoc()
5378 nIniFlyDy = aVal[ 4 ]; in LoadDoc()
5380 nFieldFlags = aVal[ 5 ]; in LoadDoc()
5381 nFieldTagAlways[0] = aVal[ 6 ]; in LoadDoc()
5382 nFieldTagAlways[1] = aVal[ 7 ]; in LoadDoc()
5384 nFieldTagBad[0] = aVal[ 9 ]; in LoadDoc()
5385 nFieldTagBad[1] = aVal[ 10 ]; in LoadDoc()
[all …]
/trunk/main/sw/source/ui/uiview/
H A Dview0.cxx537 uno::Any aVal( &bSet, ::getCppuBooleanType() ); in ExecViewOptions() local
541 aCfg.SetProperty( aPropName, aVal ); in ExecViewOptions()
544 xLngProp->setPropertyValue( aPropName, aVal ); in ExecViewOptions()
/trunk/main/cppuhelper/source/
H A Dcomponent_context.cxx251 sal_Int64 aVal; in val2str() local
252 *(sal_Int32 *)&aVal = *(sal_Int32 *)pVal; in val2str()
253 *((sal_Int32 *)&aVal +1)= *((sal_Int32 *)pVal +1); in val2str()
254 buf.append( aVal, 16 ); in val2str()
/trunk/main/pyuno/source/module/
H A Dpyuno.cxx290 sal_Int64 aVal; in val2str() local
291 *(sal_Int32 *)&aVal = *(sal_Int32 *)pVal; in val2str()
292 *((sal_Int32 *)&aVal +1)= *((sal_Int32 *)pVal +1); in val2str()
293 buf.append( aVal, 16 ); in val2str()
/trunk/main/bridges/test/
H A Dtestcomp.cxx246 …CALL complex_in( const ::com::sun::star::test::performance::ComplexTypes& aVal ) throw(::com::sun:… in complex_in() argument
247 { return aVal; } in complex_in()
248 …AL_CALL complex_inout( ::com::sun::star::test::performance::ComplexTypes& aVal ) throw(::com::sun:… in complex_inout() argument
249 { return aVal; } in complex_inout()
/trunk/main/vcl/source/gdi/
H A Dprint.cxx171 PropertyValue aVal; in ReadFromConfig() local
172 aVal.Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "nodepath" ) ); in ReadFromConfig()
174aVal.Value <<= rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/org.openoffice.Office.Common/Print/Op… in ReadFromConfig()
176aVal.Value <<= rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/org.openoffice.Office.Common/Print/Op… in ReadFromConfig()
177 aArgs.getArray()[0] <<= aVal; in ReadFromConfig()
/trunk/main/filter/source/config/cache/
H A Dfiltercache.cxx1575 css::uno::Any aVal = xConfig->getByName(sSetName); in impl_loadSet() local
1576 if (!(aVal >>= xSet) || !xSet.is()) in impl_loadSet()
1680 css::uno::Any aVal = xNode->getByName(PROPNAME_UINAME); in impl_readPatchUINames() local
1682 if (!(aVal >>= xUIName) && !xUIName.is()) in impl_readPatchUINames()
1724 aVal <<= lUINames.getAsConstPropertyValueList(); in impl_readPatchUINames()
1725 rItem[PROPNAME_UINAMES] = aVal; in impl_readPatchUINames()
1799 css::uno::Any aVal = xSet->getByName(sItem); in impl_loadItem() local
1800 if (!(aVal >>= xItem) || !xItem.is()) in impl_loadItem()
/trunk/main/svx/source/form/
H A Dfmshimp.cxx560 Any aVal( xSet->getPropertyValue(FM_PROP_BOUNDFIELD) ); in ShouldHandleElement() local
561 if (aVal.getValueTypeClass() != TypeClass_INTERFACE) in ShouldHandleElement()
565 return aVal.hasValue(); in ShouldHandleElement()
1702 Any aVal( xSet->getPropertyValue(::rtl::OUString::createFromAscii("TwoDigitDateStart")) ); in GetY2KState() local
1703 aVal >>= n; in GetY2KState()
1733 Any aVal; in SetY2KState() local
1734 aVal <<= n; in SetY2KState()
1735 xSet->setPropertyValue(::rtl::OUString::createFromAscii("TwoDigitDateStart"), aVal); in SetY2KState()
1774 Any aVal; in SetY2KState() local
1775 aVal <<= n; in SetY2KState()
[all …]
H A Dformcontroller.cxx2264 Any aVal = xField->getPropertyValue(FM_PROP_ISREADONLY); in setControlLock() local
2265 if (aVal.hasValue() && ::comphelper::getBOOL(aVal)) in setControlLock()
2622 Any aVal = xSet->getPropertyValue(FM_PROP_CYCLE); in loaded() local
2624 ::cppu::enum2int(aVal2,aVal); in loaded()
2625 m_bCycle = !aVal.hasValue() || aVal2 == TabulatorCycle_RECORDS; in loaded()
3236 ::rtl::OString aVal = m_xParser->getContext().getIntlKeywordAscii(OParseContext::KEY_AND); in setFilter()
3237 aCompText += ::rtl::OUString(aVal.getStr(),aVal.getLength(),RTL_TEXTENCODING_ASCII_US); in setFilter()
3372 Any aVal = xModel->getPropertyValue(FM_PROP_BOUNDFIELD); in startFiltering() local
3374 aVal >>= xField; in startFiltering()
/trunk/main/toolkit/source/controls/
H A Dunocontrolcontainer.cxx357 uno::Any aVal = xPSet->getPropertyValue( aPropName ); in implUpdateVisibility() local
358 aVal >>= nControlStep; in implUpdateVisibility()
791 ::com::sun::star::uno::Any aVal = xPSet->getPropertyValue( aPropName ); in createPeer()
793 aVal >>= nDialogStep; in createPeer()
/trunk/main/chart2/source/tools/
H A DDataSeriesHelper.cxx282 OUString aVal; in lcl_getDataSequenceLabel() local
298 OUString aVal; in lcl_getDataSequenceLabel() local
304 if( aSeq[i] >>= aVal ) in lcl_getDataSequenceLabel()
306 aBuf.append( aVal ); in lcl_getDataSequenceLabel()
/trunk/main/sw/source/core/unocore/
H A Dunostyle.cxx425 uno::Any aVal; in getStyleLoaderOptions() local
427 aVal.setValue(&bTemp, ::getCppuBooleanType()); in getStyleLoaderOptions()
428 …pArray[0] = beans::PropertyValue(C2U(SW_PROP_NAME_STR(UNO_NAME_LOAD_TEXT_STYLES)), -1, aVal, beans… in getStyleLoaderOptions()
429 aVal.setValue(&bTemp, ::getCppuBooleanType()); in getStyleLoaderOptions()
431 aVal.setValue(&bTemp, ::getCppuBooleanType()); in getStyleLoaderOptions()
432 …pArray[2] = beans::PropertyValue(C2U(SW_PROP_NAME_STR(UNO_NAME_LOAD_PAGE_STYLES)), -1, aVal, beans… in getStyleLoaderOptions()
433 aVal.setValue(&bTemp, ::getCppuBooleanType()); in getStyleLoaderOptions()
435 aVal.setValue(&bTemp, ::getCppuBooleanType()); in getStyleLoaderOptions()
1125 sal_Bool SetProperty(const ::rtl::OUString& rName, uno::Any aVal);
1159 sal_Bool SwStyleProperties_Impl::SetProperty(const ::rtl::OUString& rName, uno::Any aVal) in SetProperty() argument
[all …]
/trunk/main/basic/source/sbx/
H A Dsbxvar.cxx458 ::rtl::OUString aVal; in LoadData()
460 aTmp.pOUString = &aVal; in LoadData()
498 aVal = aTmpString; in LoadData()
/trunk/main/vcl/source/window/
H A Dprintdlg.cxx109 PropertyValue aVal; in useHCColorReplacement() local
110 aVal.Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "nodepath" ) ); in useHCColorReplacement()
111aVal.Value <<= rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/org.openoffice.Office.Common/Accessib… in useHCColorReplacement()
112 aArgs.getArray()[0] <<= aVal; in useHCColorReplacement()
1234 PropertyValue aVal; in setupOptionalUI() local
1235 rEntry.Value >>= aVal; in setupOptionalUI()
1236 aPropertyName = aVal.Name; in setupOptionalUI()
2472 rtl::OUString aVal( i_pBox->GetText() ); in IMPL_LINK() local
2473 pVal->Value <<= aVal; in IMPL_LINK()
/trunk/main/uui/source/
H A Dnewerverwarn.cxx124 uno::Any aVal = ::comphelper::ConfigurationHelper::readDirectKey( in IMPL_LINK() local
131 if ( aVal >>= aURL.Complete ) in IMPL_LINK()
/trunk/main/vcl/aqua/source/gdi/
H A Daquaprintaccessoryview.mm1140 PropertyValue aVal;
1141 rEntry.Value >>= aVal;
1142 aPropertyName = aVal.Name;
1144 aVal.Value >>= aSelectionChecked;
1192 PropertyValue aVal;
1193 rEntry.Value >>= aVal;
1194 aPropertyName = aVal.Name;

Completed in 255 milliseconds

123456789