OLD | NEW |
1 /* | 1 /* |
2 ****************************************************************************** | 2 ****************************************************************************** |
3 * | 3 * |
4 * Copyright (C) 1997-2011, International Business Machines | 4 * Copyright (C) 1997-2011, 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 * |
(...skipping 147 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" | |
170 }; | 169 }; |
171 | 170 |
172 static const char * const | 171 static const char * const |
173 _uIDNAErrorName[U_IDNA_ERROR_LIMIT - U_IDNA_ERROR_START] = { | 172 _uIDNAErrorName[U_IDNA_ERROR_LIMIT - U_IDNA_ERROR_START] = { |
174 "U_STRINGPREP_PROHIBITED_ERROR", | 173 "U_STRINGPREP_PROHIBITED_ERROR", |
175 "U_STRINGPREP_UNASSIGNED_ERROR", | 174 "U_STRINGPREP_UNASSIGNED_ERROR", |
176 "U_STRINGPREP_CHECK_BIDI_ERROR", | 175 "U_STRINGPREP_CHECK_BIDI_ERROR", |
177 "U_IDNA_STD3_ASCII_RULES_ERROR", | 176 "U_IDNA_STD3_ASCII_RULES_ERROR", |
178 "U_IDNA_ACE_PREFIX_ERROR", | 177 "U_IDNA_ACE_PREFIX_ERROR", |
179 "U_IDNA_VERIFICATION_ERROR", | 178 "U_IDNA_VERIFICATION_ERROR", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 } | 211 } |
213 | 212 |
214 /* | 213 /* |
215 * Hey, Emacs, please set the following: | 214 * Hey, Emacs, please set the following: |
216 * | 215 * |
217 * Local Variables: | 216 * Local Variables: |
218 * indent-tabs-mode: nil | 217 * indent-tabs-mode: nil |
219 * End: | 218 * End: |
220 * | 219 * |
221 */ | 220 */ |
OLD | NEW |