Lines Matching refs:aAny

60 		Any aAny;  in ImpIsTreeAvailable()  local
61 aAny <<= (OUString)rTree.GetToken( i++, (sal_Unicode)'/' ); in ImpIsTreeAvailable()
66 aPathArgument.Value = aAny; in ImpIsTreeAvailable()
131 Any aAny; in ImpInitTree() local
134 aAny <<= sTree; in ImpInitTree()
136 aPathArgument.Value = aAny; in ImpInitTree()
141 aAny <<= bAsyncron; in ImpInitTree()
143 aModeArgument.Value = aAny; in ImpInitTree()
293 Any aAny; in ReadBool() local
300 else if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) ) in ReadBool()
302 aAny >>= bRetValue; in ReadBool()
313 Any aAny; in ReadInt32() local
320 else if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) ) in ReadInt32()
322 aAny >>= nRetValue; in ReadInt32()
334 Any aAny; in ReadSize() local
350 else if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) ) in ReadSize()
352 if ( aAny >>= aXPropSet ) in ReadSize()
354 if ( ImplGetPropertyValue( aAny, aXPropSet, sWidth, sal_True ) ) in ReadSize()
355 aAny >>= aRetValue.Width; in ReadSize()
356 if ( ImplGetPropertyValue( aAny, aXPropSet, sHeight, sal_True ) ) in ReadSize()
357 aAny >>= aRetValue.Height; in ReadSize()
378 Any aAny; in ReadString() local
385 else if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) ) in ReadString()
387 aAny >>= aRetValue; in ReadString()
398 Any aAny, aRetValue( rDefault ); in ReadAny() local
404 else if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) ) in ReadAny()
406 aRetValue = aAny; in ReadAny()
424 Any aAny; in WriteBool() local
425 if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) ) in WriteBool()
428 if ( aAny >>= bOldValue ) in WriteBool()
432 aAny <<= bNewValue; in WriteBool()
435 xPropSet->setPropertyValue( rKey, aAny ); in WriteBool()
457 Any aAny; in WriteInt32() local
459 if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) ) in WriteInt32()
462 if ( aAny >>= nOldValue ) in WriteInt32()
466 aAny <<= nNewValue; in WriteInt32()
469 xPropSet->setPropertyValue( rKey, aAny ); in WriteInt32()
499 Any aAny; in WriteSize() local
503 if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) ) in WriteSize()
508 if ( aAny >>= aXPropSet ) in WriteSize()
510 if ( ImplGetPropertyValue( aAny, aXPropSet, sWidth, sal_True ) ) in WriteSize()
511 aAny >>= nOldWidth; in WriteSize()
512 if ( ImplGetPropertyValue( aAny, aXPropSet, sHeight, sal_True ) ) in WriteSize()
513 aAny >>= nOldHeight; in WriteSize()
517 aAny <<= rNewValue.Width; in WriteSize()
518 aXPropSet->setPropertyValue( sWidth, aAny ); in WriteSize()
519 aAny <<= rNewValue.Height; in WriteSize()
520 aXPropSet->setPropertyValue( sHeight, aAny ); in WriteSize()
541 Any aAny; in WriteString() local
543 if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) ) in WriteString()
546 if ( aAny >>= aOldValue ) in WriteString()
550 aAny <<= rNewValue; in WriteString()
553 xPropSet->setPropertyValue( rKey, aAny ); in WriteString()
574 Any aAny; in WriteAny() local
575 if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) ) in WriteAny()
577 if ( aAny != rNewAny ) in WriteAny()