Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "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.
15 * Code used to actually access lookup tables. Included by
16 * automatically generated files which define the tables to
17 * implement the functions prototyped in Charconv_table_utilties.h
24 This function attempts to look up "Foreign" character and return
25 the Unicode character defined as being the appropriate representation
26 for this character set.
27 @param aRow The most significant 8 bits of the input charachter.
28 @param aColumn The least significant 8 bits of the input charachter.
29 @return KUnicodeUnmappedChar if no mapping is defined for the input character, otherwise a valid unicode character.
32 TUint16 lookupUnicodeChar(TUint aRow, TUint aColumn)
34 const TUint16* unicodeColumn ;
37 unicodeColumn = ForeignToUnicodeRowMappings[aRow] ;
40 if ((aColumn >= unicodeColumn[KlowestIndex]) &&
41 (aColumn <= unicodeColumn[KhighestIndex]))
43 aColumn += KFirstDataIndex ;
44 aColumn -= unicodeColumn[KlowestIndex] ;
45 unicodeChar = unicodeColumn[aColumn] ;
49 unicodeChar = KUnicodeUnmappedChar ;
54 unicodeChar = KUnicodeUnmappedChar ;
62 This function attempts to look up a Unicode character and return
63 the "Foreign" character defined as being the appropriate representation
64 for this character set.
65 @param aRow The most significant 8 bits of the input character.
66 @param aColumn The least significant 8 bits of the input character.
67 @return KForeignUnmappedChar if no mapping is defined for the input character, otherwise a valid unicode character.
70 TUint16 lookupForeignChar(TUint aRow, TUint aColumn)
73 const TUint16* foreignColumn ;
76 foreignColumn = UnicodeToForeignRowMappings[aRow] ;
79 if ((aColumn >= foreignColumn[KlowestIndex]) &&
80 (aColumn <= foreignColumn[KhighestIndex]))
82 aColumn += KFirstDataIndex ;
83 aColumn -= foreignColumn[KlowestIndex] ;
84 foreignChar = foreignColumn[aColumn] ;
88 foreignChar = KForeignUnmappedChar ;
93 foreignChar = KForeignUnmappedChar ;
100 This function returns the value of KUnicodeUnmappedChar (may vary for
101 different character sets..
102 @return Value of KUnicodeUnmappedChar for this particular implementation
105 TUint16 getUnicodeUnmappedCharacter(void)
107 return KUnicodeUnmappedChar ;
112 This function returns the value of KForeignUnmappedChar (may vary for
113 different character sets..
114 @return Value of KForeignUnmappedChar for this particular implementation
117 TUint16 getForeignUnmappedCharacter(void)
119 return KForeignUnmappedChar ;