1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <comphelper/sequence.hxx>
24 css::uno::Sequence
<sal_Int16
> findValue(const css::uno::Sequence
< OUString
>& _rList
, const OUString
& _rValue
, bool _bOnlyFirst
)
26 sal_Int32 nLength
= _rList
.getLength();
30 // at which position do I find the value?
32 const OUString
* pTArray
= _rList
.getConstArray();
33 for (sal_Int32 i
= 0; i
< nLength
; ++i
, ++pTArray
)
35 if( pTArray
->equals(_rValue
) )
45 css::uno::Sequence
<sal_Int16
> aRetSeq( 1 );
46 aRetSeq
.getArray()[0] = (sal_Int16
)nPos
;
51 return css::uno::Sequence
<sal_Int16
>();
56 css::uno::Sequence
<sal_Int16
> aRetSeq( nLength
);
57 sal_Int16
* pReturn
= aRetSeq
.getArray();
59 // how often does the value occur?
60 const OUString
* pTArray
= _rList
.getConstArray();
61 for (sal_Int32 i
= 0; i
< nLength
; ++i
, ++pTArray
)
63 if( pTArray
->equals(_rValue
) )
65 *pReturn
= (sal_Int16
)i
;
70 aRetSeq
.realloc(pReturn
- aRetSeq
.getArray());
75 } // namespace comphelper
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */