Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /******************************************************************** |
michael@0 | 2 | * COPYRIGHT: |
michael@0 | 3 | * Copyright (c) 1997-2011, International Business Machines Corporation and |
michael@0 | 4 | * others. All Rights Reserved. |
michael@0 | 5 | * Copyright (C) 2010 , Yahoo! Inc. |
michael@0 | 6 | ******************************************************************** |
michael@0 | 7 | * File selectfmtimpl.h |
michael@0 | 8 | * |
michael@0 | 9 | * Date Name Description |
michael@0 | 10 | * 11/11/09 kirtig Finished first cut of implementation. |
michael@0 | 11 | *********************************************************************/ |
michael@0 | 12 | |
michael@0 | 13 | |
michael@0 | 14 | #ifndef SELFMTIMPL |
michael@0 | 15 | #define SELFMTIMPL |
michael@0 | 16 | |
michael@0 | 17 | #if !UCONFIG_NO_FORMATTING |
michael@0 | 18 | |
michael@0 | 19 | #include "unicode/format.h" |
michael@0 | 20 | #include "unicode/locid.h" |
michael@0 | 21 | #include "unicode/parseerr.h" |
michael@0 | 22 | #include "unicode/utypes.h" |
michael@0 | 23 | #include "uvector.h" |
michael@0 | 24 | #include "hash.h" |
michael@0 | 25 | |
michael@0 | 26 | U_NAMESPACE_BEGIN |
michael@0 | 27 | |
michael@0 | 28 | #define DOT ((UChar)0x002E) |
michael@0 | 29 | #define SINGLE_QUOTE ((UChar)0x0027) |
michael@0 | 30 | #define SLASH ((UChar)0x002F) |
michael@0 | 31 | #define BACKSLASH ((UChar)0x005C) |
michael@0 | 32 | #define SPACE ((UChar)0x0020) |
michael@0 | 33 | #define TAB ((UChar)0x0009) |
michael@0 | 34 | #define QUOTATION_MARK ((UChar)0x0022) |
michael@0 | 35 | #define ASTERISK ((UChar)0x002A) |
michael@0 | 36 | #define COMMA ((UChar)0x002C) |
michael@0 | 37 | #define HYPHEN ((UChar)0x002D) |
michael@0 | 38 | #define U_ZERO ((UChar)0x0030) |
michael@0 | 39 | #define U_ONE ((UChar)0x0031) |
michael@0 | 40 | #define U_TWO ((UChar)0x0032) |
michael@0 | 41 | #define U_THREE ((UChar)0x0033) |
michael@0 | 42 | #define U_FOUR ((UChar)0x0034) |
michael@0 | 43 | #define U_FIVE ((UChar)0x0035) |
michael@0 | 44 | #define U_SIX ((UChar)0x0036) |
michael@0 | 45 | #define U_SEVEN ((UChar)0x0037) |
michael@0 | 46 | #define U_EIGHT ((UChar)0x0038) |
michael@0 | 47 | #define U_NINE ((UChar)0x0039) |
michael@0 | 48 | #define COLON ((UChar)0x003A) |
michael@0 | 49 | #define SEMI_COLON ((UChar)0x003B) |
michael@0 | 50 | #define CAP_A ((UChar)0x0041) |
michael@0 | 51 | #define CAP_B ((UChar)0x0042) |
michael@0 | 52 | #define CAP_R ((UChar)0x0052) |
michael@0 | 53 | #define CAP_Z ((UChar)0x005A) |
michael@0 | 54 | #define LOWLINE ((UChar)0x005F) |
michael@0 | 55 | #define LEFTBRACE ((UChar)0x007B) |
michael@0 | 56 | #define RIGHTBRACE ((UChar)0x007D) |
michael@0 | 57 | |
michael@0 | 58 | #define LOW_A ((UChar)0x0061) |
michael@0 | 59 | #define LOW_B ((UChar)0x0062) |
michael@0 | 60 | #define LOW_C ((UChar)0x0063) |
michael@0 | 61 | #define LOW_D ((UChar)0x0064) |
michael@0 | 62 | #define LOW_E ((UChar)0x0065) |
michael@0 | 63 | #define LOW_F ((UChar)0x0066) |
michael@0 | 64 | #define LOW_G ((UChar)0x0067) |
michael@0 | 65 | #define LOW_H ((UChar)0x0068) |
michael@0 | 66 | #define LOW_I ((UChar)0x0069) |
michael@0 | 67 | #define LOW_J ((UChar)0x006a) |
michael@0 | 68 | #define LOW_K ((UChar)0x006B) |
michael@0 | 69 | #define LOW_L ((UChar)0x006C) |
michael@0 | 70 | #define LOW_M ((UChar)0x006D) |
michael@0 | 71 | #define LOW_N ((UChar)0x006E) |
michael@0 | 72 | #define LOW_O ((UChar)0x006F) |
michael@0 | 73 | #define LOW_P ((UChar)0x0070) |
michael@0 | 74 | #define LOW_Q ((UChar)0x0071) |
michael@0 | 75 | #define LOW_R ((UChar)0x0072) |
michael@0 | 76 | #define LOW_S ((UChar)0x0073) |
michael@0 | 77 | #define LOW_T ((UChar)0x0074) |
michael@0 | 78 | #define LOW_U ((UChar)0x0075) |
michael@0 | 79 | #define LOW_V ((UChar)0x0076) |
michael@0 | 80 | #define LOW_W ((UChar)0x0077) |
michael@0 | 81 | #define LOW_X ((UChar)0x0078) |
michael@0 | 82 | #define LOW_Y ((UChar)0x0079) |
michael@0 | 83 | #define LOW_Z ((UChar)0x007A) |
michael@0 | 84 | |
michael@0 | 85 | class UnicodeSet; |
michael@0 | 86 | |
michael@0 | 87 | U_NAMESPACE_END |
michael@0 | 88 | |
michael@0 | 89 | #endif /* #if !UCONFIG_NO_FORMATTING */ |
michael@0 | 90 | |
michael@0 | 91 | #endif // SELFMTIMPL |
michael@0 | 92 | //eof |