tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

selfmtimpl.h (3442B)


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