|
PostgreSQL Source Code git master
|

Go to the source code of this file.
Data Structures | |
| struct | pg_unicode_decomposition |
Macros | |
| #define | DECOMP_NO_COMPOSE 0x80 /* don't use for re-composition */ |
| #define | DECOMP_INLINE |
| #define | DECOMP_COMPAT 0x20 /* compatibility mapping */ |
| #define | DECOMPOSITION_SIZE(x) ((x)->dec_size_flags & 0x1F) |
| #define | DECOMPOSITION_NO_COMPOSE(x) (((x)->dec_size_flags & (DECOMP_NO_COMPOSE | DECOMP_COMPAT)) != 0) |
| #define | DECOMPOSITION_IS_INLINE(x) (((x)->dec_size_flags & DECOMP_INLINE) != 0) |
| #define | DECOMPOSITION_IS_COMPAT(x) (((x)->dec_size_flags & DECOMP_COMPAT) != 0) |
Variables | |
| static const pg_unicode_decomposition | UnicodeDecompMain [6843] |
| static const uint32 | UnicodeDecomp_codepoints [5138] |
| #define DECOMP_COMPAT 0x20 /* compatibility mapping */ |
Definition at line 30 of file unicode_norm_table.h.
| #define DECOMP_INLINE |
Definition at line 29 of file unicode_norm_table.h.
| #define DECOMP_NO_COMPOSE 0x80 /* don't use for re-composition */ |
Definition at line 28 of file unicode_norm_table.h.
| #define DECOMPOSITION_IS_COMPAT | ( | x | ) | (((x)->dec_size_flags & DECOMP_COMPAT) != 0) |
Definition at line 35 of file unicode_norm_table.h.
| #define DECOMPOSITION_IS_INLINE | ( | x | ) | (((x)->dec_size_flags & DECOMP_INLINE) != 0) |
Definition at line 34 of file unicode_norm_table.h.
| #define DECOMPOSITION_NO_COMPOSE | ( | x | ) | (((x)->dec_size_flags & (DECOMP_NO_COMPOSE | DECOMP_COMPAT)) != 0) |
Definition at line 33 of file unicode_norm_table.h.
Definition at line 32 of file unicode_norm_table.h.
|
static |
Definition at line 6887 of file unicode_norm_table.h.
Referenced by get_code_decomposition(), and recompose_code().
|
static |
Definition at line 38 of file unicode_norm_table.h.
Referenced by get_code_entry(), and recompose_code().