/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_comphelper.hxx" #include //......................................................................... namespace comphelper { //......................................................................... //------------------------------------------------------------------------------ staruno::Sequence findValue(const staruno::Sequence< ::rtl::OUString >& _rList, const ::rtl::OUString& _rValue, sal_Bool _bOnlyFirst) { sal_Int32 nLength = _rList.getLength(); if( _bOnlyFirst ) { ////////////////////////////////////////////////////////////////////// // An welcher Position finde ich den Wert? sal_Int32 nPos = -1; const ::rtl::OUString* pTArray = _rList.getConstArray(); for (sal_Int32 i = 0; i < nLength; ++i, ++pTArray) { if( pTArray->equals(_rValue) ) { nPos = i; break; } } ////////////////////////////////////////////////////////////////////// // Sequence fuellen if( nPos>-1 ) { staruno::Sequence aRetSeq( 1 ); aRetSeq.getArray()[0] = (sal_Int16)nPos; return aRetSeq; } return staruno::Sequence(); } else { staruno::Sequence aRetSeq( nLength ); sal_Int16* pReturn = aRetSeq.getArray(); ////////////////////////////////////////////////////////////////////// // Wie oft kommt der Wert vor? const ::rtl::OUString* pTArray = _rList.getConstArray(); for (sal_Int32 i = 0; i < nLength; ++i, ++pTArray) { if( pTArray->equals(_rValue) ) { *pReturn = (sal_Int16)i; ++pReturn; } } aRetSeq.realloc(pReturn - aRetSeq.getArray()); return aRetSeq; } } // ----------------------------------------------------------------------------- sal_Bool existsValue(const ::rtl::OUString& Value,const staruno::Sequence< ::rtl::OUString >& _aList) { const ::rtl::OUString * pIter = _aList.getConstArray(); const ::rtl::OUString * pEnd = pIter + _aList.getLength(); return ::std::find(pIter,pEnd,Value) != pEnd; } //......................................................................... } // namespace comphelper //.........................................................................