sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* The LCharSet object used by the Test locale.
|
sl@0
|
16 |
* Generated by COLTAB.
|
sl@0
|
17 |
*
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "ls_std.h"
|
sl@0
|
22 |
#include <collate.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
const TUint KUidTestCollationMethod = 0x1000B07C;
|
sl@0
|
25 |
|
sl@0
|
26 |
static const TUint32 TheTestKey[] =
|
sl@0
|
27 |
{
|
sl@0
|
28 |
0x74b0109,0x74b0121,0x71f0109,0x71f0121,0x7030109,0x7030121,0x6f70109,0x6f70121,
|
sl@0
|
29 |
0x6e30109,0x6e30121,0x6cf0109,0x6cf0121,
|
sl@0
|
30 |
};
|
sl@0
|
31 |
|
sl@0
|
32 |
static const TUint32 TheTestIndex[] =
|
sl@0
|
33 |
{
|
sl@0
|
34 |
0x410001,0x420003,0x430005,0x440007,0x450009,0x46000b,0x610000,0x620002,
|
sl@0
|
35 |
0x630004,0x640006,0x650008,0x66000a,
|
sl@0
|
36 |
};
|
sl@0
|
37 |
|
sl@0
|
38 |
static const TCollationKeyTable TheTestTable =
|
sl@0
|
39 |
{ TheTestKey, TheTestIndex, 12, NULL, NULL, 0 };
|
sl@0
|
40 |
|
sl@0
|
41 |
static const TCollationMethod TheCollationMethod[] =
|
sl@0
|
42 |
{
|
sl@0
|
43 |
{
|
sl@0
|
44 |
KUidTestCollationMethod, // the method for the locale
|
sl@0
|
45 |
NULL, // use the standard table as the main table
|
sl@0
|
46 |
&TheTestTable, // the locale values override the standard values
|
sl@0
|
47 |
0 // the flags are standard
|
sl@0
|
48 |
},
|
sl@0
|
49 |
{
|
sl@0
|
50 |
KUidBasicCollationMethod, // the standard unlocalised method
|
sl@0
|
51 |
NULL, // null means use the standard table
|
sl@0
|
52 |
NULL, // there's no override table
|
sl@0
|
53 |
0 // the flags are standard
|
sl@0
|
54 |
}
|
sl@0
|
55 |
};
|
sl@0
|
56 |
|
sl@0
|
57 |
static const TCollationDataSet TheCollationDataSet =
|
sl@0
|
58 |
{
|
sl@0
|
59 |
TheCollationMethod,
|
sl@0
|
60 |
2
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
// The one and only locale character set object.
|
sl@0
|
64 |
const LCharSet TheCharSet =
|
sl@0
|
65 |
{
|
sl@0
|
66 |
NULL,
|
sl@0
|
67 |
&TheCollationDataSet
|
sl@0
|
68 |
};
|