Update contrib.
2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 #include "SortUtilImpl.h"
26 namespace SortUtilImpl
29 inline TPtrC StripLeadingWhiteSpace_inline(const TDesC& aText)
31 const TText* p = aText.Ptr();
32 const TText* const end = p + aText.Length();
35 if (!TChar(*p).IsSpace())
37 return aText.Mid(p - aText.Ptr());
40 // All of aText was whitespace: return empty string
44 TPtrC StripLeadingWhiteSpace(const TDesC& aText)
46 return StripLeadingWhiteSpace_inline(aText);
49 TPtrC FindNextNonEmptyKey
50 (const MSortKeyArray& aKeys,
55 while (aIndex < aKeys.SortKeyCount())
57 const TSortKey key(aKeys.SortKeyAt(aIndex));
59 if (key.Type() == aType)
61 result.Set(StripLeadingWhiteSpace_inline(key.Text()));
62 if (result.Length() > 0)
71 } // namespace SortUtilImpl