Lines Matching refs:nVal

95 	sal_Int32						nVal;  member in ImpItemListRow
109 nVal(0), in ImpItemListRow()
165 && nVal==rEntry.nVal in operator ==()
994 aEntry.nVal=-4711; in SetAttributes()
1015 …case ITEM_BYTE : aEntry.bIsNum=sal_True; aEntry.nVal=((SfxByteItem &)rItem).GetValue(); aEn… in SetAttributes()
1016 …case ITEM_INT16 : aEntry.bIsNum=sal_True; aEntry.nVal=((SfxInt16Item &)rItem).GetValue(); aEn… in SetAttributes()
1017 …case ITEM_UINT16 : aEntry.bIsNum=sal_True; aEntry.nVal=((SfxUInt16Item&)rItem).GetValue(); aEn… in SetAttributes()
1018 …case ITEM_INT32 : aEntry.bIsNum=sal_True; aEntry.nVal=((SfxInt32Item &)rItem).GetValue(); … in SetAttributes()
1019 …case ITEM_UINT32 : aEntry.bIsNum=sal_True; aEntry.nVal=((SfxUInt32Item&)rItem).GetValue(); aEn… in SetAttributes()
1020 …case ITEM_ENUM : aEntry.bCanNum=sal_True; aEntry.nVal=((SfxEnumItemInterface&)rItem).GetEnumV… in SetAttributes()
1021 …case ITEM_BOOL : aEntry.bCanNum=sal_True; aEntry.nVal=((SfxBoolItem &)rItem).GetValue(); aEn… in SetAttributes()
1022 …case ITEM_FLAG : aEntry.bCanNum=sal_True; aEntry.nVal=((SfxFlagItem &)rItem).GetValue(); aEn… in SetAttributes()
1023 …case ITEM_FONTHEIGHT: aEntry.bCanNum=sal_True; aEntry.nVal=((SvxFontHeightItem&)rItem).GetHeight()… in SetAttributes()
1024 …case ITEM_FONTWIDTH : aEntry.bCanNum=sal_True; aEntry.nVal=((SvxCharScaleWidthItem&)rItem).GetValu… in SetAttributes()
1035 aEntry.aValue.Insert(UniString::CreateFromInt32(aEntry.nVal),0); in SetAttributes()
1038 … if (aEntry.eItemType==ITEM_BOOL) aEntry.aValue.AppendAscii(aEntry.nVal!=0 ? "True" : "False"); in SetAttributes()
1039 else if (aEntry.bCanNum) aEntry.aValue = UniString::CreateFromInt32(aEntry.nVal); in SetAttributes()
1041 …CHAR_WEIGHT) aEntry.aValue=((SfxEnumItemInterface&)rItem).GetValueTextByPos((sal_Bool)aEntry.nVal); in SetAttributes()
1220 double nVal = aNewText.ToFloat(); in IMPL_LINK() local
1221 nLongVal = (long)(nVal * 100 + 0.5); in IMPL_LINK()