OLD | NEW |
1 /* | 1 /* |
2 ****************************************************************************** | 2 ****************************************************************************** |
3 * | 3 * |
4 * Copyright (C) 1997-2011, International Business Machines | 4 * Copyright (C) 1997-2014, International Business Machines |
5 * Corporation and others. All Rights Reserved. | 5 * Corporation and others. All Rights Reserved. |
6 * | 6 * |
7 ****************************************************************************** | 7 ****************************************************************************** |
8 * | 8 * |
9 * FILE NAME : utypes.c (previously putil.c) | 9 * FILE NAME : utypes.c (previously putil.c) |
10 * | 10 * |
11 * Date Name Description | 11 * Date Name Description |
12 * 10/07/2004 grhoten split from putil.c | 12 * 10/07/2004 grhoten split from putil.c |
13 ****************************************************************************** | 13 ****************************************************************************** |
14 */ | 14 */ |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 "U_REGEX_MAX_LT_MIN", | 158 "U_REGEX_MAX_LT_MIN", |
159 "U_REGEX_INVALID_BACK_REF", | 159 "U_REGEX_INVALID_BACK_REF", |
160 "U_REGEX_INVALID_FLAG", | 160 "U_REGEX_INVALID_FLAG", |
161 "U_REGEX_LOOK_BEHIND_LIMIT", | 161 "U_REGEX_LOOK_BEHIND_LIMIT", |
162 "U_REGEX_SET_CONTAINS_STRING", | 162 "U_REGEX_SET_CONTAINS_STRING", |
163 "U_REGEX_OCTAL_TOO_BIG", | 163 "U_REGEX_OCTAL_TOO_BIG", |
164 "U_REGEX_MISSING_CLOSE_BRACKET", | 164 "U_REGEX_MISSING_CLOSE_BRACKET", |
165 "U_REGEX_INVALID_RANGE", | 165 "U_REGEX_INVALID_RANGE", |
166 "U_REGEX_STACK_OVERFLOW", | 166 "U_REGEX_STACK_OVERFLOW", |
167 "U_REGEX_TIME_OUT", | 167 "U_REGEX_TIME_OUT", |
168 "U_REGEX_STOPPED_BY_CALLER" | 168 "U_REGEX_STOPPED_BY_CALLER", |
| 169 "U_REGEX_PATTERN_TOO_BIG" |
169 }; | 170 }; |
170 | 171 |
171 static const char * const | 172 static const char * const |
172 _uIDNAErrorName[U_IDNA_ERROR_LIMIT - U_IDNA_ERROR_START] = { | 173 _uIDNAErrorName[U_IDNA_ERROR_LIMIT - U_IDNA_ERROR_START] = { |
173 "U_STRINGPREP_PROHIBITED_ERROR", | 174 "U_STRINGPREP_PROHIBITED_ERROR", |
174 "U_STRINGPREP_UNASSIGNED_ERROR", | 175 "U_STRINGPREP_UNASSIGNED_ERROR", |
175 "U_STRINGPREP_CHECK_BIDI_ERROR", | 176 "U_STRINGPREP_CHECK_BIDI_ERROR", |
176 "U_IDNA_STD3_ASCII_RULES_ERROR", | 177 "U_IDNA_STD3_ASCII_RULES_ERROR", |
177 "U_IDNA_ACE_PREFIX_ERROR", | 178 "U_IDNA_ACE_PREFIX_ERROR", |
178 "U_IDNA_VERIFICATION_ERROR", | 179 "U_IDNA_VERIFICATION_ERROR", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 } | 212 } |
212 | 213 |
213 /* | 214 /* |
214 * Hey, Emacs, please set the following: | 215 * Hey, Emacs, please set the following: |
215 * | 216 * |
216 * Local Variables: | 217 * Local Variables: |
217 * indent-tabs-mode: nil | 218 * indent-tabs-mode: nil |
218 * End: | 219 * End: |
219 * | 220 * |
220 */ | 221 */ |
OLD | NEW |