/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
H A D | CanonGSUBBuilder.java | 365 ClassTable exceptions = new ClassTable(); in buildCombiningClassTable() 369 exceptions.addMapping(0x05C1, 10); // Point Shin Dot in buildCombiningClassTable() 370 exceptions.addMapping(0x05C2, 11); // Point Sin Dot in buildCombiningClassTable() 371 exceptions.addMapping(0x05BC, 21); // Point Dagesh or Mapiq in buildCombiningClassTable() 372 exceptions.addMapping(0x05BF, 23); // Point Rafe in buildCombiningClassTable() 373 exceptions.addMapping(0x05B9, 27); // Point Holam in buildCombiningClassTable() 374 exceptions.addMapping(0x0323, 220); // Comb. Dot Below (low punctum) in buildCombiningClassTable() 375 exceptions.addMapping(0x0591, 220); // Accent Etnahta in buildCombiningClassTable() 376 exceptions.addMapping(0x0596, 220); // Accent Tipeha in buildCombiningClassTable() 377 exceptions in buildCombiningClassTable() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/ |
H A D | ExceptionHandler.java | 46 ArabicShapingException exceptions[] = new ArabicShapingException[locales.length]; in getTestObjects() 49 exceptions[i] = new ArabicShapingException(locales[i].toString()); in getTestObjects() 52 return exceptions; in getTestObjects() 62 StringPrepParseException exceptions[] = new StringPrepParseException[locales.length]; in getTestObjects() 65 exceptions[i] = new StringPrepParseException(locales[i].toString(), i, rules, i); in getTestObjects() 68 return exceptions; in getTestObjects() 77 UResourceTypeMismatchException exceptions[] = new UResourceTypeMismatchException[locales.length]; in getTestObjects() 80 exceptions[i] = new UResourceTypeMismatchException(locales[i].toString()); in getTestObjects() 83 return exceptions; in getTestObjects() 92 InvalidFormatException exceptions[] in getTestObjects() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
H A D | ExceptionHandler.java | 45 ArabicShapingException exceptions[] = new ArabicShapingException[locales.length]; in getTestObjects() 48 exceptions[i] = new ArabicShapingException(locales[i].toString()); in getTestObjects() 51 return exceptions; in getTestObjects() 61 StringPrepParseException exceptions[] = new StringPrepParseException[locales.length]; in getTestObjects() 64 exceptions[i] = new StringPrepParseException(locales[i].toString(), i, rules, i); in getTestObjects() 67 return exceptions; in getTestObjects() 76 UResourceTypeMismatchException exceptions[] = new UResourceTypeMismatchException[locales.length]; in getTestObjects() 79 exceptions[i] = new UResourceTypeMismatchException(locales[i].toString()); in getTestObjects() 82 return exceptions; in getTestObjects() 91 InvalidFormatException exceptions[] in getTestObjects() [all...] |
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | __init__.py | 14 from .exceptions import TemplateAssertionError 15 from .exceptions import TemplateError 16 from .exceptions import TemplateNotFound 17 from .exceptions import TemplateRuntimeError 18 from .exceptions import TemplatesNotFound 19 from .exceptions import TemplateSyntaxError 20 from .exceptions import UndefinedError
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | __init__.py | 14 from .exceptions import TemplateAssertionError 15 from .exceptions import TemplateError 16 from .exceptions import TemplateNotFound 17 from .exceptions import TemplateRuntimeError 18 from .exceptions import TemplatesNotFound 19 from .exceptions import TemplateSyntaxError 20 from .exceptions import UndefinedError
|
/third_party/jinja2/ |
H A D | __init__.py | 10 from .exceptions import TemplateAssertionError as TemplateAssertionError 11 from .exceptions import TemplateError as TemplateError 12 from .exceptions import TemplateNotFound as TemplateNotFound 13 from .exceptions import TemplateRuntimeError as TemplateRuntimeError 14 from .exceptions import TemplatesNotFound as TemplatesNotFound 15 from .exceptions import TemplateSyntaxError as TemplateSyntaxError 16 from .exceptions import UndefinedError as UndefinedError
|
/third_party/python/Lib/test/ |
H A D | test_except_star.py | 188 self.assertEqual(len(exc.exceptions), len(template.exceptions)) 189 for e, t in zip(exc.exceptions, template.exceptions): 604 exc.exceptions[0].__context__, 608 self.assertMetadataEqual(orig, exc.exceptions[0].__context__) 626 exc.exceptions[0].__context__, 630 self.assertMetadataEqual(orig, exc.exceptions[0].__context__) 686 exc.exceptions[0].__context__, 690 exc.exceptions[ [all...] |
H A D | test_exception_group.py | 41 MSG = r'second argument \(exceptions\) must be a sequence' 47 MSG = r'second argument \(exceptions\) must be a non-empty sequence' 52 MSG = (r'Item [0-9]+ of second argument \(exceptions\)' 138 self.assertEqual(str(eg), "flat (2 sub-exceptions)") 145 self.assertEqual(str(eg), "nested (4 sub-exceptions)") 158 self.assertEqual(str(eg), "flat (2 sub-exceptions)") 167 self.assertEqual(str(eg), "nested (3 sub-exceptions)") 183 self.assertEqual(str(eg), "flat (2 sub-exceptions)") 189 self.assertEqual(str(eg), "nested (4 sub-exceptions)") 239 self.assertIsInstance(eg.exceptions[ [all...] |
/third_party/node/lib/internal/ |
H A D | promise_hooks.js | 26 const exceptions = []; 33 ArrayPrototypePush(exceptions, err); 37 // Triggering exceptions is deferred to allow other hooks to complete 38 for (let i = 0; i < exceptions.length; i++) { 39 const err = exceptions[i]; 47 const exceptions = []; 54 ArrayPrototypePush(exceptions, err); 58 // Triggering exceptions is deferred to allow other hooks to complete 59 for (let i = 0; i < exceptions.length; i++) { 60 const err = exceptions[ [all...] |
/third_party/python/Lib/asyncio/ |
H A D | staggered.py | 9 from . import exceptions as exceptions_mod 58 tuple *(winner_result, winner_index, exceptions)* where 68 - *exceptions*: list of exceptions returned by the coroutines. 69 ``len(exceptions)`` is equal to the number of coroutines actually 79 exceptions = [] 102 # Prepare place to put this coroutine's exceptions if not won 103 exceptions.append(None) 104 assert len(exceptions) == this_index + 1 111 exceptions[this_inde [all...] |
H A D | futures.py | 15 from . import exceptions namespace 138 exc = exceptions.CancelledError() 140 exc = exceptions.CancelledError(self._cancel_message) 200 raise exceptions.InvalidStateError('Result is not ready.') 218 raise exceptions.InvalidStateError('Exception is not set.') 260 raise exceptions.InvalidStateError(f'{self._state}: {self!r}') 272 raise exceptions.InvalidStateError(f'{self._state}: {self!r}') 321 return exceptions.CancelledError(*exc.args) 323 return exceptions.TimeoutError(*exc.args) 325 return exceptions [all...] |
H A D | locks.py | 9 from . import exceptions namespace 117 except exceptions.CancelledError: 279 except exceptions.CancelledError: 283 raise exceptions.CancelledError 390 except exceptions.CancelledError: 518 raise exceptions.BrokenBarrierError("Barrier aborted") 537 raise exceptions.BrokenBarrierError("Abort or reset of barrier")
|
H A D | tasks.py | 25 from . import exceptions namespace 252 raise exceptions.InvalidStateError( 255 if not isinstance(exc, exceptions.CancelledError): 277 except exceptions.CancelledError as exc: 453 except exceptions.CancelledError as exc: 454 raise exceptions.TimeoutError() from exc 467 except exceptions.CancelledError: 491 except exceptions.CancelledError as exc: 492 raise exceptions.TimeoutError() from exc 562 exceptions!) o [all...] |
H A D | taskgroups.py | 8 from . import exceptions namespace 24 Any exceptions other than `asyncio.CancelledError` raised within 26 The exceptions are then combined and raised as an `ExceptionGroup`. 79 exc if et is exceptions.CancelledError else None 113 except exceptions.CancelledError as ex: 138 if et is not None and et is not exceptions.CancelledError: 171 # Since Python 3.8 Tasks propagate all exceptions correctly, 230 # # Ignore any exceptions raised in the TaskGroup
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/ |
H A D | test_corpus.js | 14 const exceptions = require('../exceptions.js'); 20 sandbox.stub(exceptions, 'getSoftSkipped').callsFake(() => { 69 sandbox.stub(exceptions, 'getGeneratedSoftSkipped').callsFake( 92 sandbox.stub(exceptions, 'getSoftSkipped').callsFake( 97 sandbox.stub(exceptions, 'getGeneratedSoftSkipped').callsFake(
|
H A D | test_regressions.js | 18 const exceptions = require('../exceptions.js'); 66 // auto generated exceptions. 67 sandbox.stub(exceptions, 'getGeneratedSloppy').callsFake( 78 sandbox.stub(exceptions, 'getGeneratedSloppy').callsFake(
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | UCaseProps.java | 72 // read exceptions[] in readData() 75 exceptions=ICUBinary.getString(bytes, count, 0); in readData() 152 * @param excWord (in) initial exceptions word 154 * @param excOffset (in) offset into exceptions[] after excWord=exceptions.charAt(excOffset++); 162 value=exceptions.charAt(excOffset); in getSlotValueAndOffset() 165 value=exceptions.charAt(excOffset++); in getSlotValueAndOffset() 166 value=(value<<16)|exceptions.charAt(excOffset); in getSlotValueAndOffset() 176 value=exceptions.charAt(excOffset); in getSlotValue() 179 value=exceptions in getSlotValue() 1550 private String exceptions; global() field in UCaseProps [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | UCaseProps.java | 76 // read exceptions[] in readData() 79 exceptions=ICUBinary.getString(bytes, count, 0); in readData() 156 * @param excWord (in) initial exceptions word 158 * @param excOffset (in) offset into exceptions[] after excWord=exceptions.charAt(excOffset++); 166 value=exceptions.charAt(excOffset); in getSlotValueAndOffset() 169 value=exceptions.charAt(excOffset++); in getSlotValueAndOffset() 170 value=(value<<16)|exceptions.charAt(excOffset); in getSlotValueAndOffset() 180 value=exceptions.charAt(excOffset); in getSlotValue() 183 value=exceptions in getSlotValue() 1535 private String exceptions; global() field in UCaseProps [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | metadata.py | 55 exceptions: List[Exception] 57 def __init__(self, message: str, exceptions: List[Exception]) -> None: 59 self.exceptions = exceptions 62 return f"{self.__class__.__name__}({self.message!r}, {self.exceptions!r})" 671 If *validate* is true, all metadata will be validated. All exceptions 678 exceptions: List[Exception] = [] 683 exceptions.append(metadata_version_exc) 701 exceptions.append(exc) 713 exceptions [all...] |
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
H A D | corpus.js | 13 const exceptions = require('./exceptions.js'); 46 !exceptions.isTestSkippedAbs(absPath)); 56 if (exceptions.isTestSkippedRel(relPath)) { 58 } else if (exceptions.isTestSoftSkippedAbs(absPath) || 59 exceptions.isTestSoftSkippedRel(relPath)) {
|
/third_party/skia/bench/ |
H A D | check_bench_regressions.py | 150 # Tuple of dictionaries recording exceptions that are slower and faster, 153 exceptions = ({}, {}) 173 exceptions[SLOWER].setdefault(off_ratio, []).append(exception) 175 exceptions[FASTER].setdefault(off_ratio, []).append(exception) 178 if exceptions[i]: 179 ratios = exceptions[i].keys() 183 li.extend(exceptions[i][ratio])
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | eloop.c | 115 struct eloop_sock_table exceptions; member 258 eloop.exceptions.type = EVENT_TYPE_EXCEPTION; in eloop_init() 519 struct eloop_sock_table *exceptions, in eloop_sock_table_set_fds() 570 if (exceptions && exceptions->table) { in eloop_sock_table_set_fds() 571 for (i = 0; i < exceptions->count; i++) { in eloop_sock_table_set_fds() 576 fd = exceptions->table[i].sock; in eloop_sock_table_set_fds() 628 struct eloop_sock_table *exceptions, in eloop_sock_table_dispatch() 641 eloop_sock_table_dispatch_table(exceptions, pollfds_map, in eloop_sock_table_dispatch() 703 eloop.exceptions in eloop_sock_table_dispatch() 517 eloop_sock_table_set_fds(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd *pollfds, struct pollfd **pollfds_map, int max_pollfd_map) eloop_sock_table_set_fds() argument 626 eloop_sock_table_dispatch(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd **pollfds_map, int max_pollfd_map) eloop_sock_table_dispatch() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | eloop.c | 115 struct eloop_sock_table exceptions; member 260 eloop.exceptions.type = EVENT_TYPE_EXCEPTION; in eloop_init() 522 struct eloop_sock_table *exceptions, in eloop_sock_table_set_fds() 573 if (exceptions && exceptions->table) { in eloop_sock_table_set_fds() 574 for (i = 0; i < exceptions->count; i++) { in eloop_sock_table_set_fds() 579 fd = exceptions->table[i].sock; in eloop_sock_table_set_fds() 631 struct eloop_sock_table *exceptions, in eloop_sock_table_dispatch() 644 eloop_sock_table_dispatch_table(exceptions, pollfds_map, in eloop_sock_table_dispatch() 706 eloop.exceptions in eloop_sock_table_dispatch() 520 eloop_sock_table_set_fds(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd *pollfds, struct pollfd **pollfds_map, int max_pollfd_map) eloop_sock_table_set_fds() argument 629 eloop_sock_table_dispatch(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd **pollfds_map, int max_pollfd_map) eloop_sock_table_dispatch() argument [all...] |
/third_party/icu/tools/unicode/c/genprops/ |
H A D | casepropsbuilder.cpp | 68 and the case-sensitive bit is moved into the excWord. This will allow for more exceptions words. 84 i3 exceptionsLength; -- length in uint16_t of the exceptions array 94 const uint16_t exceptions[exceptionsLength]; 128 A sub-array of the exceptions array is indexed by the exception index in a 301 UnicodeString exceptions; member in CasePropsBuilder 346 "the array of exceptions properties\n"); in CasePropsBuilder() 470 // Store it in an exceptions slot. in setProps() 512 "or reasons for data structure exceptions\n", in setProps() 518 /* handle exceptions */ in setProps() 520 /* simply store exceptions fo in setProps() [all...] |
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
H A D | valhall.c.py | 26 from mako import exceptions namespace 178 print(exceptions.text_error_template().render())
|