Home
last modified time | relevance | path

Searched refs:nValue (Results 176 – 200 of 666) sorted by relevance

12345678910>>...27

/trunk/main/sw/source/ui/misc/
H A Dnumberingtypelistbox.cxx92 long nValue = rNames.GetValue(i); in Reload() local
95 switch(nValue) in Reload()
105 if (nValue > style::NumberingType::CHARS_LOWER_LETTER_N) in Reload()
113 if (pTypes[nType] == nValue) in Reload()
125 SetEntryData( nEntry, (void*)nValue ); in Reload()
/trunk/main/accessibility/source/extended/
H A DAccessibleBrowseBoxCheckBoxCell.cxx84 sal_Int32 nValue = 0; in getCurrentValue() local
88 nValue = 0; in getCurrentValue()
91 nValue = 1; in getCurrentValue()
94 nValue = 2; in getCurrentValue()
97 return makeAny(nValue); in getCurrentValue()
/trunk/main/xmloff/source/forms/
H A Dgridcolumnproptranslator.cxx97 sal_Int16 nValue = 0; in valueAlignToParaAdjust() local
98 rValue >>= nValue; in valueAlignToParaAdjust()
102 if ( nValue == pTranslation->nControlValue ) in valueAlignToParaAdjust()
115 sal_Int32 nValue = 0; in valueParaAdjustToAlign() local
116 rValue >>= nValue; in valueParaAdjustToAlign()
120 if ( nValue == pTranslation->nParagraphValue) in valueParaAdjustToAlign()
/trunk/test/testuno/source/fvt/uno/sc/cell/
H A DInsertDeleteCells.java93 int nValue = 0; in testInsertCells() local
98 xSheet.getCellByPosition( nCol, nRow ).setValue( nValue ); in testInsertCells()
100 nValue += 1; in testInsertCells()
223 int nValue = 0; in testDeleteCells() local
228 xSheet.getCellByPosition( nCol, nRow ).setValue( nValue ); in testDeleteCells()
230 nValue += 1; in testDeleteCells()
/trunk/main/framework/source/helper/
H A Dvclstatusindicator.cxx180 void SAL_CALL VCLStatusIndicator::setValue(sal_Int32 nValue) in setValue() argument
186 if (nValue <= m_nRange) in setValue()
187 m_nValue = nValue; in setValue()
192 nValue = m_nValue; in setValue()
200 ((nValue*100) / ::std::max(nRange,(sal_Int32)1)), (sal_Int32)100)); in setValue()
/trunk/main/rsc/inc/
H A Drsctools.hxx170 void Put( sal_uInt32 nValue ) in Put() argument
171 { Put( (sal_Int32)nValue ); } in Put()
172 void Put( sal_uInt16 nValue );
173 void Put( sal_Int16 nValue ) in Put() argument
174 { Put( (sal_uInt16)nValue ); } in Put()
/trunk/main/svx/source/accessibility/
H A DDescriptionGenerator.cxx284 long nValue(0); in AddColor() local
288 aValue >>= nValue; in AddColor()
291 msDescription.append (DGColorNameLookUp::Instance().LookUpColor (nValue)); in AddColor()
324 long nValue = 0; in AddInteger() local
325 aValue >>= nValue; in AddInteger()
326 msDescription.append (nValue); in AddInteger()
/trunk/main/xmloff/source/xforms/
H A DSchemaRestrictionContext.cxx154 sal_Int32 nValue; in lcl_int32() local
155 bool bSuccess = SvXMLUnitConverter::convertNumber( nValue, rValue ); in lcl_int32()
156 return bSuccess ? makeAny( nValue ) : Any(); in lcl_int32()
161 sal_Int32 nValue; in lcl_int16() local
162 bool bSuccess = SvXMLUnitConverter::convertNumber( nValue, rValue ); in lcl_int16()
163 return bSuccess ? makeAny( static_cast<sal_Int16>( nValue ) ) : Any(); in lcl_int16()
/trunk/main/oox/source/xls/
H A Ddrawingbase.cxx47 inline sal_Int64 lclHmmToEmu( sal_Int32 nValue ) in lclHmmToEmu() argument
49 return (nValue < 0) ? -1 : convertHmmToEmu( nValue ); in lclHmmToEmu()
53 inline sal_Int32 lclEmuToHmm( sal_Int64 nValue ) in lclEmuToHmm() argument
55 return (nValue < 0) ? -1 : convertEmuToHmm( nValue ); in lclEmuToHmm()
/trunk/main/connectivity/source/commontools/
H A DCommonTools.cxx189 sal_Int64 nValue = 0; in toString() local
190 OSL_VERIFY( rValue >>= nValue ); in toString()
191 aRes = ::rtl::OUString::valueOf(nValue); in toString()
251 sal_Int32 nValue = 0; in getJavaVM() local
253 if ( uaJVM >>= nValue ) in getJavaVM()
254 pJVM = reinterpret_cast< jvmaccess::VirtualMachine* > (nValue); in getJavaVM()
/trunk/main/sc/inc/
H A Dcollect.hxx151 nValue(nVal), in TypedStrData()
160 nValue(rCpy.nValue), in TypedStrData()
167 double GetValue () const { return nValue; } in GetValue()
173 double nValue; member in TypedStrData
/trunk/main/vcl/source/gdi/
H A Dprint3.cxx427 if( nValue >= 0 ) in ImplPrintJob()
428 aMPS.nLeftMargin = nValue; in ImplPrintJob()
430 if( nValue >= 0 ) in ImplPrintJob()
431 aMPS.nRightMargin = nValue; in ImplPrintJob()
433 if( nValue >= 0 ) in ImplPrintJob()
434 aMPS.nTopMargin = nValue; in ImplPrintJob()
436 if( nValue >= 0 ) in ImplPrintJob()
437 aMPS.nBottomMargin = nValue; in ImplPrintJob()
439 if( nValue >= 0 ) in ImplPrintJob()
442 if( nValue >= 0 ) in ImplPrintJob()
[all …]
H A Dprint.cxx187 sal_Int32 nValue = 0; in ReadFromConfig() local
191 … if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDTRANSPARENCYMODE) >>= nValue ) in ReadFromConfig()
192 SetReducedTransparencyMode( (PrinterTransparencyMode)nValue ); in ReadFromConfig()
195 … if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDGRADIENTMODE) >>= nValue ) in ReadFromConfig()
196 SetReducedGradientMode( (PrinterGradientMode)nValue ); in ReadFromConfig()
197 … if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDGRADIENTSTEPCOUNT) >>= nValue ) in ReadFromConfig()
198 SetReducedGradientStepCount( (sal_uInt16)nValue ); in ReadFromConfig()
201 if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDBITMAPMODE) >>= nValue ) in ReadFromConfig()
202 SetReducedBitmapMode( (PrinterBitmapMode)nValue ); in ReadFromConfig()
203 … if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDBITMAPRESOLUTION) >>= nValue ) in ReadFromConfig()
[all …]
/trunk/main/xmloff/source/core/
H A DDocumentSettingsContext.cxx646 sal_Int32 nValue(0); in EndElement() local
647 SvXMLUnitConverter::convertNumber(nValue, msValue); in EndElement()
648 mrAny <<= static_cast<sal_Int8>(nValue); in EndElement()
652 sal_Int32 nValue(0); in EndElement() local
653 SvXMLUnitConverter::convertNumber(nValue, msValue); in EndElement()
654 mrAny <<= static_cast<sal_Int16>(nValue); in EndElement()
658 sal_Int32 nValue(0); in EndElement() local
659 SvXMLUnitConverter::convertNumber(nValue, msValue); in EndElement()
660 mrAny <<= nValue; in EndElement()
664 sal_Int64 nValue(msValue.toInt64()); in EndElement() local
[all …]
/trunk/main/cui/source/tabpages/
H A Dpage.cxx1787 long nValue = static_cast<long>(rField.GetValue()); in IsPrinterRangeOverflow() local
1789 ( nValue < nFirstMargin || nValue > nLastMargin ) && in IsPrinterRangeOverflow()
1792 rField.SetValue( nValue < nFirstMargin ? nFirstMargin : nLastMargin ); in IsPrinterRangeOverflow()
1807 sal_Int64 nValue = aLeftMarginEdit.GetValue(); in CheckMarginEdits() local
1808 if ( nValue < nFirstLeftMargin || nValue > nLastLeftMargin ) in CheckMarginEdits()
1810 nValue = aRightMarginEdit.GetValue(); in CheckMarginEdits()
1811 if ( nValue < nFirstRightMargin || nValue > nLastRightMargin ) in CheckMarginEdits()
1813 nValue = aTopMarginEdit.GetValue(); in CheckMarginEdits()
1814 if ( nValue < nFirstTopMargin || nValue > nLastTopMargin ) in CheckMarginEdits()
1816 nValue = aBottomMarginEdit.GetValue(); in CheckMarginEdits()
[all …]
/trunk/main/filter/source/graphicfilter/itiff/
H A Dccidecom.cxx746 if ( pHufTab[i].nValue!=pHufTabSave[i].nValue || in MakeLookUp()
762 pLookUp[j].nValue=pHufTab[i].nValue; in MakeLookUp()
869 return pLookUp[nCode].nValue; in ReadCodeAndDecode()
957 nDataBits=pBlackLookUp[nCode].nValue; in Read1DScanlineData()
961 nDataBits=pWhiteLookUp[nCode].nValue; in Read1DScanlineData()
/trunk/main/filter/source/graphicfilter/etiff/
H A Detiff.cxx62 sal_uInt16 nValue; // Der Pixelwert member
482 …mplWriteTag( sal_uInt16 nTagID, sal_uInt16 nDataType, sal_uInt32 nNumberOfItems, sal_uInt32 nValue) in ImplWriteTag() argument
490 nValue <<=16; // in Big Endian Mode WORDS needed to be shifted to a DWORD in ImplWriteTag()
491 *mpOStm << nValue; in ImplWriteTag()
532 pTable[ i ].nValue = (sal_uInt8)( pTable[ i ].nCode = i ); in StartCompression()
556 if ( p->nValue == nV ) in Compress()
584 p->nValue = nV; in Compress()
/trunk/main/sw/source/ui/dbui/
H A Dcreateaddresslistdialog.cxx681 sal_uInt32 nValue = static_cast< sal_uInt32 >(m_aSetNoNF.GetValue()); in IMPL_LINK() local
684 nValue = 1; in IMPL_LINK()
687 if(nValue > 1) in IMPL_LINK()
688 --nValue; in IMPL_LINK()
692 if(nValue < (sal_uInt32)m_aSetNoNF.GetMax()) in IMPL_LINK()
693 ++nValue; in IMPL_LINK()
696 nValue = static_cast< sal_uInt32 >(m_aSetNoNF.GetMax()); in IMPL_LINK()
697 if(nValue != m_aSetNoNF.GetValue()) in IMPL_LINK()
699 m_aSetNoNF.SetValue(nValue); in IMPL_LINK()
/trunk/main/sc/source/core/data/
H A Ddpgroup.cxx414 String lcl_GetTwoDigitString( sal_Int32 nValue ) in lcl_GetTwoDigitString() argument
416 String aRet = String::CreateFromInt32( nValue ); in lcl_GetTwoDigitString()
422 String lcl_GetDateGroupName( sal_Int32 nDatePart, sal_Int32 nValue, SvNumberFormatter* pFormatter ) in lcl_GetDateGroupName() argument
428 aRet = String::CreateFromInt32( nValue ); in lcl_GetDateGroupName()
437 sal_Int16(nValue-1), 0 ); // 0-based, get short name in lcl_GetDateGroupName()
442 aDate += ( nValue - 1 ); // nValue is 1-based in lcl_GetDateGroupName()
453 aRet = lcl_GetTwoDigitString( nValue ); in lcl_GetDateGroupName()
458 aRet.Append( lcl_GetTwoDigitString( nValue ) ); in lcl_GetDateGroupName()
670 for ( sal_Int32 nValue = nStart; nValue <= nEnd; nValue++ ) in FillColumnEntries() local
672 String aName = lcl_GetDateGroupName( nDatePart, nValue, pFormatter ); in FillColumnEntries()
[all …]
/trunk/main/ooxml/source/framework/JavaOOXMLParser/src/org/apache/openoffice/ooxml/parser/
H A DOOXMLParser.java135 Integer nValue = aActionContext.TypeCounts.get(aContext.GetTypeName()); in AddSomeActions()
136 if (nValue == null) in AddSomeActions()
137 nValue = 1; in AddSomeActions()
139 ++nValue; in AddSomeActions()
140 aActionContext.TypeCounts.put(aContext.GetTypeName(), nValue); in AddSomeActions()
/trunk/main/winaccessibility/source/UAccCOM/
H A DAccEditableText.cpp282 sal_Int32 nValue = ouValue.toInt32(); in get_AnyFromOLECHAR() local
283 rAny.setValue(&nValue, getCppuType((sal_Int32 *)0)); in get_AnyFromOLECHAR()
289 boolean nValue = (boolean)ouValue.toBoolean(); in get_AnyFromOLECHAR() local
290 rAny.setValue(&nValue, getCppuType((sal_Bool *)sal_False)); in get_AnyFromOLECHAR()
298 short nValue = (short)ouValue.toInt32(); in get_AnyFromOLECHAR() local
299 rAny.setValue(&nValue, getCppuType((short *)0)); in get_AnyFromOLECHAR()
/trunk/main/filter/source/xsltdialog/
H A Dxmlfiltersettingsdialog.cxx409 sal_Int32 nValue; in createUniqueInterfaceName() local
411 for( nValue = 0; nValue < nValueCount; nValue++, pValues++ ) in createUniqueInterfaceName()
855 sal_Int32 nValue; in onDelete() local
857 for( nValue = 0; (nValue < nValueCount) && !bTypeStillUsed; nValue++, pValues++ ) in onDelete()
1109 sal_Int32 nValue; in initFilterList() local
1111 for( nValue = 0; nValue < nValueCount; nValue++, pValues++ ) in initFilterList()
/trunk/main/vbahelper/source/vbahelper/
H A Dvbawindowbase.cxx62 void setPosSize( const uno::Reference< awt::XWindow >& xWindow, sal_Int32 nValue, sal_Int16 nFlag ) in setPosSize() argument
68 xWindow->setPosSize( nValue, aRect.Y, 0, 0, css::awt::PosSize::X ); in setPosSize()
71 xWindow->setPosSize( aRect.X, nValue, 0, 0, css::awt::PosSize::Y ); in setPosSize()
74 xWindow->setPosSize( 0, 0, nValue, aRect.Height, css::awt::PosSize::WIDTH ); in setPosSize()
77 xWindow->setPosSize( 0, 0, aRect.Width, nValue, css::awt::PosSize::HEIGHT ); in setPosSize()
/trunk/main/svx/inc/svx/
H A Dsxfiitm.hxx34 Fraction nValue; member in SdrFractionItem
38 SdrFractionItem(sal_uInt16 nId, const Fraction& rVal): SfxPoolItem(nId), nValue(rVal) {} in SdrFractionItem()
45 const Fraction& GetValue() const { return nValue; } in GetValue()
46 void SetValue(const Fraction& rVal) { nValue = rVal; } in SetValue()
/trunk/main/xmloff/source/style/
H A Dkernihdl.cxx68 sal_Int16 nValue = sal_Int16(); in exportXML() local
70 if( rValue >>= nValue ) in exportXML()
74 if( nValue == 0 ) in exportXML()
77 rUnitConverter.convertMeasure( aOut, nValue ); in exportXML()

Completed in 170 milliseconds

12345678910>>...27