Home
last modified time | relevance | path

Searched refs:rSeq (Results 1 – 25 of 60) sorted by relevance

123

/trunk/main/chart2/source/inc/
H A DContainerHelper.hxx72 …SequenceContainer( const ::com::sun::star::uno::Sequence< typename Container::value_type > & rSeq ) in SequenceToSTLSequenceContainer() argument
74 Container aResult( rSeq.getLength()); in SequenceToSTLSequenceContainer()
75 ::std::copy( rSeq.getConstArray(), rSeq.getConstArray() + rSeq.getLength(), in SequenceToSTLSequenceContainer()
98 …nceToSTLContainer( const ::com::sun::star::uno::Sequence< typename Container::value_type > & rSeq ) in SequenceToSTLContainer() argument
101 ::std::copy( rSeq.getConstArray(), rSeq.getConstArray() + rSeq.getLength(), in SequenceToSTLContainer()
117 SequenceToVector( const ::com::sun::star::uno::Sequence< T > & rSeq ) in SequenceToVector() argument
119 return SequenceToSTLSequenceContainer< ::std::vector< T > >( rSeq ); in SequenceToVector()
131 SequenceToSet( const ::com::sun::star::uno::Sequence< T > & rSeq ) in SequenceToSet() argument
133 return SequenceToSTLContainer< ::std::set< T > >( rSeq ); in SequenceToSet()
/trunk/main/comphelper/inc/comphelper/
H A Dstlunosequence.hxx68 V* stl_begin(::com::sun::star::uno::Sequence<V>& rSeq) in stl_begin() argument
69 { return rSeq.getArray(); } in stl_begin()
72 V* stl_end(::com::sun::star::uno::Sequence<V>& rSeq) in stl_end() argument
73 { return rSeq.getArray() + rSeq.getLength(); } in stl_end()
76 const V* stl_begin(const ::com::sun::star::uno::Sequence<V>& rSeq) in stl_begin() argument
77 { return rSeq.getConstArray(); } in stl_begin()
80 const V* stl_end(const ::com::sun::star::uno::Sequence<V>& rSeq) in stl_end() argument
81 { return rSeq.getConstArray() + rSeq.getLength(); } in stl_end()
/trunk/main/writerfilter/source/doctok/
H A DWW8StructBase.cxx85 sal_uInt8 getU8(const WW8StructBase::Sequence & rSeq, in getU8() argument
88 return rSeq[nOffset]; in getU8()
91 sal_uInt16 getU16(const WW8StructBase::Sequence & rSeq, in getU16() argument
94 return getU8(rSeq, nOffset) | (getU8(rSeq, nOffset + 1) << 8); in getU16()
97 sal_uInt32 getU32(const WW8StructBase::Sequence & rSeq, in getU32() argument
100 sal_uInt32 nResult = getU8(rSeq, nOffset); in getU32()
101 nResult |= (getU8(rSeq, nOffset + 1) << 8); in getU32()
102 nResult |= (getU8(rSeq, nOffset + 2) << 16); in getU32()
103 nResult |= (getU8(rSeq, nOffset + 3) << 24); in getU32()
H A DWW8StructBase.hxx292 sal_uInt8 getU8(const WW8StructBase::Sequence & rSeq, sal_uInt32 nOffset);
300 sal_uInt16 getU16(const WW8StructBase::Sequence & rSeq, sal_uInt32 nOffset);
308 sal_uInt32 getU32(const WW8StructBase::Sequence & rSeq, sal_uInt32 nOffset);
/trunk/main/sal/inc/rtl/
H A Dbyteseq.hxx46 inline ByteSequence::ByteSequence( const ByteSequence & rSeq ) SAL_THROW( () ) in ByteSequence() argument
49 ::rtl_byte_sequence_assign( &_pSequence, rSeq._pSequence ); in ByteSequence()
98 inline ByteSequence & ByteSequence::operator = ( const ByteSequence & rSeq ) SAL_THROW( () ) in operator =() argument
100 ::rtl_byte_sequence_assign( &_pSequence, rSeq._pSequence ); in operator =()
104 inline sal_Bool ByteSequence::operator == ( const ByteSequence & rSeq ) const SAL_THROW( () ) in operator ==()
106 return ::rtl_byte_sequence_equals( _pSequence, rSeq._pSequence ); in operator ==()
133 inline sal_Bool ByteSequence::operator != ( const ByteSequence & rSeq ) const SAL_THROW( () ) in operator !=()
135 return (! operator == ( rSeq )); in operator !=()
H A Dbyteseq.h190 inline ByteSequence( const ByteSequence & rSeq ) SAL_THROW( () );
233 inline ByteSequence & SAL_CALL operator = ( const ByteSequence & rSeq ) SAL_THROW( () );
286 inline sal_Bool SAL_CALL operator == ( const ByteSequence & rSeq ) const SAL_THROW( () );
292 inline sal_Bool SAL_CALL operator != ( const ByteSequence & rSeq ) const SAL_THROW( () );
/trunk/main/cppu/inc/com/sun/star/uno/
H A DSequence.hxx60 inline Sequence< E >::Sequence( const Sequence< E > & rSeq ) SAL_THROW( () ) in Sequence() argument
62 ::osl_incrementInterlockedCount( &rSeq._pSequence->nRefCount ); in Sequence()
63 _pSequence = rSeq._pSequence; in Sequence()
119 inline Sequence< E > & Sequence< E >::operator = ( const Sequence< E > & rSeq ) SAL_THROW( () ) in operator =() argument
123 &_pSequence, rSeq._pSequence, rType.getTypeLibType(), (uno_ReleaseFunc)cpp_release ); in operator =()
129 inline sal_Bool Sequence< E >::operator == ( const Sequence< E > & rSeq ) const in operator ==()
132 if (_pSequence == rSeq._pSequence) in operator ==()
137 const_cast< Sequence< E > * >( &rSeq ), rType.getTypeLibType(), in operator ==()
144 inline sal_Bool Sequence< E >::operator != ( const Sequence< E > & rSeq ) const in operator !=()
147 return (! operator == ( rSeq )); in operator !=()
H A DSequence.h102 inline Sequence( const Sequence< E > & rSeq ) SAL_THROW( () );
137 inline Sequence< E > & SAL_CALL operator = ( const Sequence< E > & rSeq )
201 inline sal_Bool SAL_CALL operator == ( const Sequence< E > & rSeq ) const
209 inline sal_Bool SAL_CALL operator != ( const Sequence< E > & rSeq ) const
/trunk/main/linguistic/source/
H A Dspelldta.cxx108 const Sequence< OUString > &rSeq, in SeqHasEntry()
112 sal_Int32 nLen = rSeq.getLength(); in SeqHasEntry()
113 const OUString *pEntry = rSeq.getConstArray(); in SeqHasEntry()
170 void SeqRemoveNegEntries( Sequence< OUString > &rSeq, in SeqRemoveNegEntries() argument
176 sal_Int32 nLen = rSeq.getLength(); in SeqRemoveNegEntries()
177 OUString *pEntries = rSeq.getArray(); in SeqRemoveNegEntries()
192 aNew = MergeProposalSeqs( aNew, rSeq, sal_False ); in SeqRemoveNegEntries()
193 rSeq = aNew; in SeqRemoveNegEntries()
/trunk/main/sc/source/ui/Accessibility/
H A DAccessibleCsvControl.cxx216 void ScAccessibleCsvControl::getUuid( Sequence< sal_Int8 >& rSeq ) in getUuid() argument
220 if( !rSeq.hasElements() ) in getUuid()
222 rSeq.realloc( 16 ); in getUuid()
223 rtl_createUuid( reinterpret_cast< sal_uInt8* >( rSeq.getArray() ), NULL, sal_True ); in getUuid()
339 inline sal_Int32 lcl_ExpandSequence( Sequence< PropertyValue >& rSeq, sal_Int32 nExp ) in lcl_ExpandSequence() argument
342 rSeq.realloc( rSeq.getLength() + nExp ); in lcl_ExpandSequence()
343 return rSeq.getLength() - nExp; in lcl_ExpandSequence()
354 void lcl_FillFontAttributes( Sequence< PropertyValue >& rSeq, const Font& rFont ) in lcl_FillFontAttributes() argument
360 sal_Int32 nIndex = lcl_ExpandSequence( rSeq, 7 ); in lcl_FillFontAttributes()
364 …lcl_FillProperty( rSeq[ nIndex++ ], CREATE_OUSTRING( "CharFontCharSet" ), aFontItem, MID_FONT_… in lcl_FillFontAttributes()
[all …]
/trunk/main/extensions/source/ole/
H A Dunoconversionutilities.hxx132 SAFEARRAY* createUnoSequenceWrapper(const Any& rSeq);
137 SAFEARRAY* createUnoSequenceWrapper(const Any& rSeq, VARTYPE elemtype);
1034 if (rSeq.getValueTypeClass() != TypeClass_SEQUENCE) in createUnoSequenceWrapper()
1045 OUString sTypeName= rSeq.getValueType().getTypeName(); in createUnoSequenceWrapper()
1080 uno_Sequence * pMultiSeq= *(uno_Sequence* const*) rSeq.getValue(); in createUnoSequenceWrapper()
1269 sal_Int32 dimCount= (*(uno_Sequence* const *) rSeq.getValue())->nElements; in getElementCountAndTypeOfSequence()
1276 rSeq.getValueTypeDescription( &pSeqDesc); in getElementCountAndTypeOfSequence()
1282 uno_Sequence* pSeq = *(uno_Sequence* const*) rSeq.getValue(); in getElementCountAndTypeOfSequence()
1305 if( rSeq.getValueTypeClass() != TypeClass_SEQUENCE ) in createUnoSequenceWrapper()
1310 uno_Sequence * punoSeq= *(uno_Sequence**) rSeq.getValue(); in createUnoSequenceWrapper()
[all …]
/trunk/main/chart2/source/tools/
H A DCommonConverters.cxx420 drawing::Position3D SequenceToPosition3D( const uno::Sequence< double >& rSeq ) in SequenceToPosition3D() argument
422 … OSL_ENSURE(rSeq.getLength()==3,"The sequence needs to have length 3 for conversion into vector"); in SequenceToPosition3D()
425 aRet.PositionX = rSeq.getLength()>0?rSeq[0]:0.0; in SequenceToPosition3D()
426 aRet.PositionY = rSeq.getLength()>1?rSeq[1]:0.0; in SequenceToPosition3D()
427 aRet.PositionZ = rSeq.getLength()>2?rSeq[2]:0.0; in SequenceToPosition3D()
/trunk/main/writerfilter/inc/resourcemodel/
H A DSubSequence.hxx44 void dumpLine(OutputWithDepth<string> & o, SubSequence<T> & rSeq,
291 void dumpLine(OutputWithDepth<string> & o, SubSequence<T> & rSeq, in dumpLine() argument
294 sal_uInt32 nCount = rSeq.getCount(); in dumpLine()
307 snprintf(sBuffer, 255, "%02x ", rSeq[i]); in dumpLine()
323 static_cast<unsigned char>(rSeq[i]); in dumpLine()
/trunk/main/cppuhelper/source/
H A Dinterfacecontainer.cxx52 static void realloc( Sequence< Reference< XInterface > > & rSeq, sal_Int32 nNewLen ) in realloc() argument
55 rSeq.realloc( nNewLen ); in realloc()
61 static void sequenceRemoveElementAt( Sequence< Reference< XInterface > > & rSeq, sal_Int32 index ) in sequenceRemoveElementAt() argument
64 sal_Int32 nNewLen = rSeq.getLength() - 1; in sequenceRemoveElementAt()
66 Sequence< Reference< XInterface > > aDestSeq( rSeq.getLength() - 1 ); in sequenceRemoveElementAt()
68 …const Reference< XInterface > * pSource = ((const Sequence< Reference< XInterface > > &)rSeq).getC… in sequenceRemoveElementAt()
75 rSeq = aDestSeq; in sequenceRemoveElementAt()
/trunk/main/framework/source/uiconfiguration/
H A Dwindowstateconfiguration.cxx248 …pl_fillStructFromSequence( WindowStateInfo& rWinStateInfo, const Sequence< PropertyValue >& rSeq );
1065 …mpl_fillStructFromSequence( WindowStateInfo& rWinStateInfo, const Sequence< PropertyValue >& rSeq ) in impl_fillStructFromSequence() argument
1068 sal_Int32 nCount( rSeq.getLength() ); in impl_fillStructFromSequence()
1075 if ( rSeq[i].Name.equals( m_aPropArray[j] )) in impl_fillStructFromSequence()
1089 if ( rSeq[i].Value >>= bValue ) in impl_fillStructFromSequence()
1129 if ( rSeq[i].Value >>= eDockingArea ) in impl_fillStructFromSequence()
1141 if ( rSeq[i].Value >>= aPoint ) in impl_fillStructFromSequence()
1161 if ( rSeq[i].Value >>= aSize ) in impl_fillStructFromSequence()
1180 if ( rSeq[i].Value >>= aValue ) in impl_fillStructFromSequence()
1191 if ( rSeq[i].Value >>= nValue ) in impl_fillStructFromSequence()
[all …]
/trunk/main/comphelper/source/misc/
H A Dserviceinfohelper.cxx89 void ServiceInfoHelper::addToSequence( ::com::sun::star::uno::Sequence< ::rtl::OUString >& rSeq, sa… in addToSequence() argument
91 sal_uInt32 nCount = rSeq.getLength(); in addToSequence()
93 rSeq.realloc( nCount + nServices ); in addToSequence()
94 rtl::OUString* pStrings = rSeq.getArray(); in addToSequence()
/trunk/main/drawinglayer/source/tools/
H A Dconverters.cxx45 const drawinglayer::primitive2d::Primitive2DSequence& rSeq, in convertToBitmapEx() argument
56 if(rSeq.hasElements() && nDiscreteWidth && nDiscreteHeight) in convertToBitmapEx()
62 drawinglayer::primitive2d::Primitive2DSequence aSequence(rSeq); in convertToBitmapEx()
74 rSeq)); in convertToBitmapEx()
/trunk/main/framework/source/services/
H A Dmediatypedetectionhelper.cxx86 uno::Sequence< OUString >& rSeq )
90 for( sal_Int32 i = rSeq.getLength(); i--; )
93 OUString& rUrl = rSeq[i];
/trunk/main/accessibility/source/extended/
H A DAccessibleBrowseBoxTableBase.cxx304 void AccessibleBrowseBoxTableBase::implGetSelectedRows( Sequence< sal_Int32 >& rSeq ) in implGetSelectedRows() argument
306 mpBrowseBox->GetAllSelectedRows( rSeq ); in implGetSelectedRows()
309 void AccessibleBrowseBoxTableBase::implGetSelectedColumns( Sequence< sal_Int32 >& rSeq ) in implGetSelectedColumns() argument
311 mpBrowseBox->GetAllSelectedColumns( rSeq ); in implGetSelectedColumns()
/trunk/main/xmloff/source/draw/
H A Dximpcustomshape.cxx1266 uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeParameterPair >& rSeq = in EndElement() local
1269 for ( i = 0; i < rSeq.getLength(); i++ ) in EndElement()
1271 CheckAndResolveEquationParameter( rSeq[ i ].First, pH ); in EndElement()
1272 CheckAndResolveEquationParameter( rSeq[ i ].Second, pH ); in EndElement()
1278 uno::Sequence< com::sun::star::drawing::EnhancedCustomShapeTextFrame >& rSeq = in EndElement() local
1281 for ( i = 0; i < rSeq.getLength(); i++ ) in EndElement()
1283 CheckAndResolveEquationParameter( rSeq[ i ].TopLeft.First, pH ); in EndElement()
1284 CheckAndResolveEquationParameter( rSeq[ i ].TopLeft.Second, pH ); in EndElement()
1285 CheckAndResolveEquationParameter( rSeq[ i ].BottomRight.First, pH ); in EndElement()
1286 CheckAndResolveEquationParameter( rSeq[ i ].BottomRight.Second, pH ); in EndElement()
/trunk/main/stoc/source/corereflection/
H A Dcrcomp.cxx313 const Sequence< Reference< XIdlClass > > & rSeq = xType->getSuperclasses(); in isAssignableFrom() local
314 if (rSeq.getLength()) in isAssignableFrom()
316 OSL_ENSURE( rSeq.getLength() == 1, "### unexpected len of super classes!" ); in isAssignableFrom()
317 return isAssignableFrom( rSeq[0] ); in isAssignableFrom()
/trunk/main/vcl/unx/generic/window/
H A Dsalframe.cxx3153 if( rSeq.getLength() ) in beginUnicodeSequence()
3163 aEv.maText = rSeq; in beginUnicodeSequence()
3178 if( rSeq.getLength() > 0 ) in appendUnicodeSequence()
3185 rtl::OUStringBuffer aBuf( rSeq.getLength() + 1 ); in appendUnicodeSequence()
3186 aBuf.append( rSeq ); in appendUnicodeSequence()
3188 rSeq = aBuf.makeStringAndClear(); in appendUnicodeSequence()
3193 aEv.maText = rSeq; in appendUnicodeSequence()
3216 if( rSeq.getLength() > 1 && rSeq.getLength() < 6 ) in endUnicodeSequence()
3219 rtl::OUString aNumbers( rSeq.copy( 1 ) ); in endUnicodeSequence()
3235 bool bWasInput = rSeq.getLength() > 0; in endUnicodeSequence()
[all …]
/trunk/main/sc/source/ui/unoobj/
H A Ddatauno.cxx210 void ScImportDescriptor::FillProperties( uno::Sequence<beans::PropertyValue>& rSeq, const ScImportP… in FillProperties() argument
212 DBG_ASSERT( rSeq.getLength() == GetPropertyCount(), "falscher Count" ); in FillProperties()
214 beans::PropertyValue* pArray = rSeq.getArray(); in FillProperties()
253 const beans::PropertyValue* pPropArray = rSeq.getConstArray(); in FillImportParam()
254 long nPropCount = rSeq.getLength(); in FillImportParam()
320 void ScSortDescriptor::FillProperties( uno::Sequence<beans::PropertyValue>& rSeq, const ScSortParam… in FillProperties() argument
322 DBG_ASSERT( rSeq.getLength() == GetPropertyCount(), "falscher Count" ); in FillProperties()
324 beans::PropertyValue* pArray = rSeq.getArray(); in FillProperties()
382 …rtDescriptor::FillSortParam( ScSortParam& rParam, const uno::Sequence<beans::PropertyValue>& rSeq ) in FillSortParam() argument
386 const beans::PropertyValue* pPropArray = rSeq.getConstArray(); in FillSortParam()
[all …]
/trunk/main/cui/source/options/
H A Doptlingu.cxx103 static Sequence< sal_Int16 > lcl_LocaleSeqToLangSeq( const Sequence< Locale > &rSeq ) in lcl_LocaleSeqToLangSeq() argument
105 sal_Int32 nLen = rSeq.getLength(); in lcl_LocaleSeqToLangSeq()
108 const Locale *pSeq = rSeq.getConstArray(); in lcl_LocaleSeqToLangSeq()
117 static sal_Bool lcl_SeqHasLang( const Sequence< sal_Int16 > &rSeq, sal_Int16 nLang ) in lcl_SeqHasLang() argument
119 sal_Int32 nLen = rSeq.getLength(); in lcl_SeqHasLang()
120 const sal_Int16 *pLang = rSeq.getConstArray(); in lcl_SeqHasLang()
132 const Sequence< OUString > &rSeq, const OUString &rEntry ) in lcl_SeqGetEntryPos()
135 sal_Int32 nLen = rSeq.getLength(); in lcl_SeqGetEntryPos()
136 const OUString *pItem = rSeq.getConstArray(); in lcl_SeqGetEntryPos()
602 sal_Int32 nLen = rSeq.getLength(); in lcl_SeqGetIndex()
[all …]
/trunk/main/sc/source/ui/view/
H A Dprevwsh.cxx886 void __EXPORT ScPreviewShell::WriteUserDataSequence(uno::Sequence < beans::PropertyValue >& rSeq, s… in WriteUserDataSequence() argument
888 rSeq.realloc(3); in WriteUserDataSequence()
889 beans::PropertyValue* pSeq = rSeq.getArray(); in WriteUserDataSequence()
904 …Shell::ReadUserDataSequence(const uno::Sequence < beans::PropertyValue >& rSeq, sal_Bool /* bBrows… in ReadUserDataSequence() argument
906 sal_Int32 nCount(rSeq.getLength()); in ReadUserDataSequence()
910 const beans::PropertyValue* pSeq = rSeq.getConstArray(); in ReadUserDataSequence()

Completed in 211 milliseconds

123