Home
last modified time | relevance | path

Searched refs:nValue (Results 1 – 25 of 666) sorted by last modified time

12345678910>>...27

/trunk/main/sw/source/filter/html/
H A Dparcss1.hxx137 double nValue; // und als Zahl (TWIPs für LENGTH) member
144 : cOp(cO), eType(eTyp), aValue(rVal), nValue(nVal), pNext(0) in CSS1Expression()
154 double GetNumber() const { return nValue; } in GetNumber()
170 cOp = cO; eType = eTyp; aValue = rVal; nValue = nVal; pNext = 0; in Set()
175 return nValue < 0. ? 0UL : (sal_uInt32)(nValue + .5); in GetULength()
180 return (sal_Int32)(nValue + (nValue < 0. ? -.5 : .5 )); in GetSLength()
208 double nValue; // der Wert des Tokens als Zahl member in CSS1Parser
/trunk/main/forms/source/misc/
H A Dlimitedformats.cxx257 sal_Int32 nValue = -1; in getFormatKeyPropertyValue() local
258 ::cppu::enum2int(nValue, aEnumPropertyValue); in getFormatKeyPropertyValue()
266 (NULL != pFormats->pDescription) && (nLookup < nValue); in getFormatKeyPropertyValue()
/trunk/main/sw/source/core/access/
H A Daccportions.cxx445 sal_Int32 nValue ) const in FindBreak()
448 DBG_ASSERT( rPositions[0] <= nValue, "need min value" ); in FindBreak()
449 DBG_ASSERT( rPositions[rPositions.size()-1] >= nValue, in FindBreak()
451 DBG_ASSERT( rPositions[rPositions.size()-2] >= nValue, in FindBreak()
462 ( (nMin != 0) && (rPositions[nMin] < nValue) ), in FindBreak()
477 if( nValue > rPositions[nMiddle] ) in FindBreak()
485 if( (rPositions[nMin] < nValue) && (rPositions[nMin+1] <= nValue) ) in FindBreak()
491 DBG_ASSERT( (nMin == 0) || (rPositions[nMin-1] <= nValue), in FindBreak()
502 sal_Int32 nValue ) const in FindLastBreak()
504 size_t nResult = FindBreak( rPositions, nValue ); in FindLastBreak()
[all …]
/trunk/main/oox/inc/oox/helper/
H A Dbinaryoutputstream.hxx66 void writeValue( Type nValue );
70 inline BinaryOutputStream& operator<<( Type nValue ) { writeValue( nValue ); return *this; } in operator <<() argument
83 void BinaryOutputStream::writeValue( Type nValue ) in writeValue() argument
85 ByteOrderConverter::convertLittleEndian( nValue ); in writeValue()
86 writeMemory( &nValue, static_cast< sal_Int32 >( sizeof( Type ) ), sizeof( Type ) ); in writeValue()
129 inline BinaryXOutputStream& operator<<( Type nValue ) { writeValue( nValue ); return *this; } in operator <<() argument
170 inline SequenceOutputStream& operator<<( Type nValue ) { writeValue( nValue ); return *this; } in operator <<() argument
/trunk/main/xmloff/source/forms/
H A Dpropertyexport.cxx576 sal_Int32 nValue = 0; in implConvertAny() local
577 ::cppu::enum2int(nValue, _rValue); in implConvertAny()
578 m_rContext.getGlobalContext().GetMM100UnitConverter().convertNumber(aBuffer, nValue); in implConvertAny()
/trunk/main/filter/source/flash/
H A Dswfwriter2.cxx45 while( nValue ) in getMaxBitsUnsigned()
48 nValue >>= 1; in getMaxBitsUnsigned()
58 if( nValue < 0 ) in getMaxBitsSigned()
59 nValue *= -1; in getMaxBitsSigned()
107 writeUB( nValue, nBits ); in writeFB()
186 void Tag::addI32( sal_Int32 nValue )
195 *this << nValue; in addUI32()
200 void Tag::addI16( sal_Int16 nValue )
209 *this << (sal_uInt8)nValue; in addUI16()
210 *this << (sal_uInt8)(nValue >> 8); in addUI16()
[all …]
H A Dswfwriter1.cxx61 extern sal_uInt16 getMaxBitsUnsigned( sal_uInt32 nValue );
62 extern sal_uInt16 getMaxBitsSigned( sal_Int32 nValue );
/trunk/main/accessibility/source/extended/
H A Daccessiblelistboxentry.cxx1182 sal_Int32 nValue(0), nValueMin(0), nValueMax(0); in setCurrentValue() local
1183 aNumber >>= nValue; in setCurrentValue()
1187 if ( nValue < nValueMin ) in setCurrentValue()
1188 nValue = nValueMin; in setCurrentValue()
1189 else if ( nValue > nValueMax ) in setCurrentValue()
1190 nValue = nValueMax; in setCurrentValue()
1192 pBox->SetCheckButtonState(pEntry, (SvButtonState) nValue ); in setCurrentValue()
/trunk/main/vcl/unx/generic/fontmanager/
H A Dfontconfig.cxx240 FcBool FcPatternAddInteger( FcPattern* pPattern, const char* pObject, int nValue ) in FcPatternAddInteger() argument
241 { return m_pFcPatternAddInteger( pPattern, pObject, nValue ); } in FcPatternAddInteger()
242 FcBool FcPatternAddDouble( FcPattern* pPattern, const char* pObject, double nValue ) in FcPatternAddDouble() argument
243 { return m_pFcPatternAddDouble( pPattern, pObject, nValue ); } in FcPatternAddDouble()
246 FcBool FcPatternAddBool( FcPattern* pPattern, const char* pObject, bool nValue ) in FcPatternAddBool() argument
247 { return m_pFcPatternAddBool( pPattern, pObject, nValue ); } in FcPatternAddBool()
/trunk/main/vcl/source/control/
H A Dspinbtn.cxx436 void SpinButton::SetValue( long nValue ) in SetValue() argument
439 if ( nValue > mnMaxRange ) in SetValue()
440 nValue = mnMaxRange; in SetValue()
441 if ( nValue < mnMinRange ) in SetValue()
442 nValue = mnMinRange; in SetValue()
444 if ( mnValue != nValue ) in SetValue()
446 mnValue = nValue; in SetValue()
/trunk/main/sw/source/filter/ww8/
H A Dww8par.cxx267 sal_uInt32 nValue; in lclAppendString32() local
268 rStrm >>( nValue ); in lclAppendString32()
269 lclAppendString32( rString, rStrm, nValue, b16Bit ); in lclAppendString32()
H A Dww8par.hxx424 inline ReturnType ulimit_cast( Type nValue, ReturnType nMax ) in ulimit_cast() argument
425 { return static_cast< ReturnType >( ::std::min< Type >( nValue, nMax ) ); } in ulimit_cast()
429 inline ReturnType ulimit_cast( Type nValue ) in ulimit_cast() argument
430 { return ulimit_cast( nValue, ::std::numeric_limits< ReturnType >::max() ); } in ulimit_cast()
/trunk/main/editeng/source/editeng/
H A Dimpedit.hxx544 void SetParaAttrib( sal_uInt8 nFunc, EditSelection aSel, sal_uInt16 nValue );
/trunk/main/dbaccess/source/core/api/
H A DRowSetCache.cxx1621 sal_Int32 nValue = (m_nPosition - m_nStartPos) - 1; in calcPosition() local
1622 CHECK_MATRIX_POS(nValue); in calcPosition()
1623 …return ( nValue < 0 || nValue >= static_cast<sal_Int32>(m_pMatrix->size()) ) ? m_pMatrix->end() : … in calcPosition()
/trunk/main/dbaccess/source/ui/misc/
H A DUITools.cxx1348 sal_Int32 nValue = aColumnSizeDlg.GetValue(); in adjustBrowseBoxColumnWidth() local
1349 if ( -1 == nValue ) in adjustBrowseBoxColumnWidth()
1351 nValue = _pBox->GetDefaultColumnWidth( _pBox->GetColumnTitle( _nColId ) ); in adjustBrowseBoxColumnWidth()
1355 Size aSizeMM( nValue / 10, 0 ); in adjustBrowseBoxColumnWidth()
1356 nValue = _pBox->LogicToPixel( aSizeMM, MapMode( MAP_MM ) ).Width(); in adjustBrowseBoxColumnWidth()
1358 _pBox->SetColumnWidth( _nColId, nValue ); in adjustBrowseBoxColumnWidth()
/trunk/main/sw/source/ui/uno/
H A Dunotxdoc.cxx2200 sal_Int32 nValue; in getPropertyValue() local
2203 case WID_DOC_CHAR_COUNT :nValue = aStat.nChar;break; in getPropertyValue()
2204 case WID_DOC_PARA_COUNT :nValue = aStat.nPara;break; in getPropertyValue()
2205 case WID_DOC_WORD_COUNT :nValue = aStat.nWord;break; in getPropertyValue()
2207 aAny <<= nValue; in getPropertyValue()
/trunk/main/svx/source/table/
H A Dcell.cxx943 void SAL_CALL Cell::setValue( double nValue ) throw (RuntimeException) in setValue() argument
945 if( mfValue == nValue ) in setValue()
947 mfValue = nValue; in setValue()
979 sal_Int32 nValue = 0; in GetAnyForItem() local
980 aAny >>= nValue; in GetAnyForItem()
981 aAny <<= (sal_Int16)nValue; in GetAnyForItem()
H A Dcell.hxx138 …SVX_DLLPRIVATE virtual void SAL_CALL setValue( double nValue ) throw (::com::sun::star::uno::Runti…
/trunk/main/filter/source/graphicfilter/eps/
H A Deps.cxx101 sal_uInt16 nValue; // Der Pixelwert member
2646 pTable[ i ].nValue = (sal_uInt8)( pTable[ i ].nCode = i ); in StartCompression()
2669 if ( p->nValue == nV ) in Compress()
2697 p->nValue = nV; in Compress()
/trunk/main/svx/source/unodraw/
H A Dunoshap2.cxx756 sal_Int16 nValue = sal_Int16(); in lcl_mapFormToAPIValue() local
757 OSL_VERIFY( _rValue >>= nValue ); in lcl_mapFormToAPIValue()
762 if ( nValue == pEntry->nFormValue ) in lcl_mapFormToAPIValue()
773 sal_Int32 nValue = 0; in lcl_mapAPIToFormValue() local
774 OSL_VERIFY( _rValue >>= nValue ); in lcl_mapAPIToFormValue()
779 if ( nValue == pEntry->nAPIValue ) in lcl_mapAPIToFormValue()
/trunk/main/sfx2/source/sidebar/
H A DTheme.cxx1073 sal_Int32 nValue (0); in ProcessNewValue() local
1074 if (rValue >>= nValue) in ProcessNewValue()
1076 maIntegers[nIndex] = nValue; in ProcessNewValue()
1082 sal_Bool nValue (0); in ProcessNewValue() local
1083 if (rValue >>= nValue) in ProcessNewValue()
1085 maBooleans[nIndex] = (nValue==sal_True); in ProcessNewValue()
/trunk/main/vcl/inc/vcl/
H A Dpdfextoutdevdata.hxx476 bool SetStructureAttributeNumerical( PDFWriter::StructAttribute eAttr, sal_Int32 nValue );
H A Dpdfwriter.hxx1220 bool SetStructureAttributeNumerical( enum StructAttribute eAttr, sal_Int32 nValue );
/trunk/main/filter/source/msfilter/
H A Dsvdfppt.cxx4909 sal_Bool PPTTextRulerInterpreter::GetDefaultTab( sal_uInt32 /*nLevel*/, sal_uInt16& nValue ) const in GetDefaultTab()
4913 nValue = mpImplRuler->nDefaultTab; in GetDefaultTab()
4917 sal_Bool PPTTextRulerInterpreter::GetTextOfs( sal_uInt32 nLevel, sal_uInt16& nValue ) const in GetTextOfs()
4921 nValue = mpImplRuler->nTextOfs[ nLevel ]; in GetTextOfs()
4925 sal_Bool PPTTextRulerInterpreter::GetBulletOfs( sal_uInt32 nLevel, sal_uInt16& nValue ) const in GetBulletOfs()
4929 nValue = mpImplRuler->nBulletOfs[ nLevel ]; in GetBulletOfs()
/trunk/main/sc/source/ui/vba/
H A Dvbarange.cxx2320 sal_Int32 nValue = 0; in Rows() local
2329 if( aIndex >>= nValue ) in Rows()
2331 aRange.aStart.SetRow( aRange.aStart.Row() + --nValue ); in Rows()
2367 sal_Int32 nValue = 0; in Columns() local
2376 if ( aIndex >>= nValue ) in Columns()
2378 aRange.aStart.SetCol( aRange.aStart.Col() + static_cast< SCCOL > ( --nValue ) ); in Columns()

Completed in 400 milliseconds

12345678910>>...27