/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/i18n/ |
D | PhoneRegionTest.java | 2 * Copyright (C) 2017 The Libphonenumber Authors. 8 * http://www.apache.org/licenses/LICENSE-2.0 31 assertThat(Stream.of(r("US"), r("GB"), r("AE"), r("001"), r("KR"), r("MN")).sorted()) in testOrdering() 32 .containsAtLeast(r("AE"), r("GB"), r("KR"), r("MN"), r("US"), r("001")) in testOrdering() 38 assertThat(PhoneRegion.getWorld()).isEqualTo(r("001")); in testWorld() 43 assertThat(assertThrows(IllegalArgumentException.class, () -> PhoneRegion.of("ABC"))) in testBadArgs() 46 assertThat(assertThrows(IllegalArgumentException.class, () -> PhoneRegion.of("us"))) in testBadArgs() 49 assertThat(assertThrows(IllegalArgumentException.class, () -> PhoneRegion.of("000"))) in testBadArgs()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/i18n/ |
D | PhoneRegion.java | 2 * Copyright (C) 2017 The Libphonenumber Authors. 8 * http://www.apache.org/licenses/LICENSE-2.0 29 * A simple type-safe identifier for CLDR regions for phone numbers. Only basic checking of regions 38 private static final Pattern VALID_CODE = Pattern.compile("[A-Z]{2}|001"); 39 // Since we want "ZZ" < "001" in the ordering. 41 comparing(r -> r.locale().getCountry(), 45 private static final PhoneRegion WORLD = of("001"); 47 /** Returns the "world" region (001). */ 58 * Returns the region identified by the given case-insensitive CLDR String representation. 72 /** Returns the string representation for the region (either a two-letter or three-digit code). */
|
/third_party/skia/third_party/externals/icu/source/data/misc/ |
D | metaZones.txt | 3 // Generated using tools/cldr/cldr-to-icu/build-icu-data.xml 7 001{"America/Rio_Branco"} 10 001{"Asia/Kabul"} 13 001{"Africa/Maputo"} 23 001{"Africa/Nairobi"} 35 001{"Africa/El_Aaiun"} 38 001{"Africa/Johannesburg"} 43 001{"Africa/Lagos"} 45 BJ{"Africa/Porto-Novo"} 56 001{"Asia/Aqtobe"} [all …]
|
/third_party/icu/icu4c/source/data/misc/ |
D | metaZones.txt | 3 // Generated using tools/cldr/cldr-to-icu/build-icu-data.xml 7 001{"America/Rio_Branco"} 10 001{"Asia/Kabul"} 13 001{"Africa/Maputo"} 23 001{"Africa/Nairobi"} 35 001{"Africa/El_Aaiun"} 38 001{"Africa/Johannesburg"} 43 001{"Africa/Lagos"} 45 BJ{"Africa/Porto-Novo"} 56 001{"Asia/Aqtobe"} [all …]
|
/third_party/libjpeg-turbo/ |
D | .travis.yml | 5 - /^[0-9]+\.[0-9]+\.[0-9]+/ 6 - /^jpeg-.*/ 10 - os: linux 14 - docker 15 - os: osx 18 - os: linux 22 CFLAGS_RELWITHDEBINFO="-O1 -g -fsanitize=address,undefined -fno-omit-frame-pointer" 23 CMAKE_FLAGS="-DENABLE_SHARED=0" 29 - nasm 30 - os: linux [all …]
|
/third_party/node/tools/ |
D | certdata.txt | 16 # -- Attribute -- -- type -- -- value -- 34 # -- Attribute -- -- type -- -- value -- 77 # Issuer: CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE 79 # Subject: CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE 82 # Fingerprint (SHA-256): EB:D4:10:40:E4:BB:3E:C7:42:C9:E3:81:D3:1E:F2:A4:1A:48:B6:68:5C:96:E7:CE:F3… 108 \002\013\004\000\000\000\000\001\025\113\132\303\224 111 \060\202\003\165\060\202\002\135\240\003\002\001\002\002\013\004 112 \000\000\000\000\001\025\113\132\303\224\060\015\006\011\052\206 113 \110\206\367\015\001\001\005\005\000\060\127\061\013\060\011\006 126 \151\147\156\040\122\157\157\164\040\103\101\060\202\001\042\060 [all …]
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/ |
D | TerritoryContainment.java | 1 // © 2017 and later: Unicode, Inc. and others. 28 * such as {@code "016"}. The root node of the graph is {@code "001"}. 42 private static final String WORLD = "001"; 43 private static final Pattern REGION = Pattern.compile("[A-Z]{2}|[0-9]{3}"); 52 // sub-regions to have more than one parent. in getContainment() 54 supplementalData.accept(CldrData.PathOrder.DTD, v -> { in getContainment() 63 /** Maps each macro-region to all its leaf contents (direct and indirect). */ 69 … r -> checkArgument(REGION.matcher(r).matches(), "bad region '%s' in: %s", r, graph)); in TerritoryContainment() 81 // (and since this is a build-time tool, that's probably fine). in TerritoryContainment() 84 // For leaf regions (direct or indirect) just retain any sub-regions which don't in TerritoryContainment() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | escaping_test.cc | 1 // Copyright 2017 The Abseil Authors. 7 // https://www.apache.org/licenses/LICENSE-2.0 80 // Check in-place unescaping in TEST() 173 "\\uD835", // surrogate character (D800-DFFF) in TEST() 174 "\\U0000DD04", // surrogate character (D800-DFFF) in TEST() 212 "\\u0000\\n" // short-form (4-digit) null escape plus newline 214 "\\U00000000"; // long-form (8-digit) null escape 309 // values obtained with "echo -n '...' | uuencode -m test" 312 {{"\001", 1}, "AQ=="}, 331 {{"\000\001", 2}, "AAE="}, [all …]
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.4rc1.rst | 5 .. release date: 2017-07-23 20 vulnerabilities including: CVE-2017-9233 (External entity infinite loop 21 DoS), CVE-2016-9063 (Integer overflow, re-fix), CVE-2016-0718 (Fix 22 regression bugs from 2.2.0's fix to CVE-2016-0718) and CVE-2012-0876 23 (Counter hash flooding with SipHash). Note: the CVE-2016-5300 (Use 24 os-specific entropy sources like getrandom) doesn't impact Python, since Python 32 .. nonce: 1VG7R- 49 Update expat copy from 2.1.1 to 2.2.0 to get fixes of CVE-2016-0718 and 50 CVE-2016-4472. See https://sourceforge.net/p/expat/bugs/537/ for more 56 .. date: 2017-07-11-06-31-32 [all …]
|
/third_party/skia/third_party/externals/expat/expat/lib/ |
D | siphash.h | 2 * siphash.h - SipHash-2-4 in a single header file 3 * -------------------------------------------------------------------------- 5 * by Jean-Philippe Aumasson and Daniel J. Berstein. 11 * -------------------------------------------------------------------------- 14 * 2020-10-03 (Sebastian Pipping) 15 * - Drop support for Visual Studio 9.0/2008 and earlier 17 * 2019-08-03 (Sebastian Pipping) 18 * - Mark part of sip24_valid as to be excluded from clang-format 19 * - Re-format code using clang-format 9 21 * 2018-07-08 (Anton Maklakov) [all …]
|
/third_party/python/Modules/expat/ |
D | siphash.h | 2 * siphash.h - SipHash-2-4 in a single header file 3 * -------------------------------------------------------------------------- 5 * by Jean-Philippe Aumasson and Daniel J. Berstein. 11 * -------------------------------------------------------------------------- 14 * 2020-10-03 (Sebastian Pipping) 15 * - Drop support for Visual Studio 9.0/2008 and earlier 17 * 2019-08-03 (Sebastian Pipping) 18 * - Mark part of sip24_valid as to be excluded from clang-format 19 * - Re-format code using clang-format 9 21 * 2018-07-08 (Anton Maklakov) [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/util/data/ |
D | localeMatcherTest.txt | 1 # © 2017 and later: Unicode, Inc. and others. 4 # Data-driven test for the language/locale matcher. 11 # @supported=<comma-separated supported languages> 17 # <comma-separated desired languages> >> match | desired | combined 18 # - match is the expected best supported language 19 # - desired is the expected best desired language 20 # - combined is the expected result of combine(match, desired) 30 # es-419, es-AR, and es-MX are in a cluster; es is in a different one 32 @supported=es-419, es-ES 33 es-AR >> es-419 [all …]
|
/third_party/icu/icu4c/source/test/testdata/ |
D | localeMatcherTest.txt | 1 # © 2017 and later: Unicode, Inc. and others. 4 # Data-driven test for the language/locale matcher. 11 # @supported=<comma-separated supported languages> 17 # <comma-separated desired languages> >> match | desired | combined 18 # - match is the expected best supported language 19 # - desired is the expected best desired language 20 # - combined is the expected result of combine(match, desired) 30 # es-419, es-AR, and es-MX are in a cluster; es is in a different one 32 @supported=es-419, es-ES 33 es-AR >> es-419 [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/data/ |
D | localeMatcherTest.txt | 1 # © 2017 and later: Unicode, Inc. and others. 4 # Data-driven test for the language/locale matcher. 11 # @supported=<comma-separated supported languages> 17 # <comma-separated desired languages> >> match | desired | combined 18 # - match is the expected best supported language 19 # - desired is the expected best desired language 20 # - combined is the expected result of combine(match, desired) 30 # es-419, es-AR, and es-MX are in a cluster; es is in a different one 32 @supported=es-419, es-ES 33 es-AR >> es-419 [all …]
|
/third_party/json/tests/src/ |
D | unit-unicode1.cpp | 6 // SPDX-FileCopyrightText: 2013-2022 Niels Lohmann <https://nlohmann.me> 7 // SPDX-License-Identifier: MIT 11 // for some reason including this after the json header leads to linker errors with VS 2017... 28 // code points are represented as a six-character sequence: a in skip() 39 // generate all UTF-8 code points; in total, 1112064 code points are in skip() 40 // generated: 0x1FFFFF code points - 2048 invalid values between in skip() 51 // values for UTF-16 encoding of the high and low surrogates, and in skip() 54 // no UTF forms, including UTF-16, can encode these code points. in skip() 70 // 12-character sequence, encoding the UTF-16 surrogate pair in skip() 71 const auto codepoint1 = 0xd800u + (((cp - 0x10000u) >> 10) & 0x3ffu); in skip() [all …]
|
/third_party/rust/crates/regex/bench/log/07/ |
D | boost | 3 test misc::anchored_literal_long_match ... bench: 174 ns/iter (+/- 0) = 2241 MB/s 4 test misc::anchored_literal_long_non_match ... bench: 329 ns/iter (+/- 3) = 1185 MB/s 5 test misc::anchored_literal_short_match ... bench: 168 ns/iter (+/- 0) = 154 MB/s 6 test misc::anchored_literal_short_non_match ... bench: 121 ns/iter (+/- 0) = 214 MB/s 7 test misc::easy0_1K ... bench: 660 ns/iter (+/- 3) = 1592 MB/s 8 test misc::easy0_1MB ... bench: 514,707 ns/iter (+/- 2,689) = 2037 MB/s 9 test misc::easy0_32 ... bench: 170 ns/iter (+/- 2) = 347 MB/s 10 test misc::easy0_32K ... bench: 16,208 ns/iter (+/- 99) = 2023 MB/s 11 test misc::easy1_1K ... bench: 756 ns/iter (+/- 1) = 1380 MB/s 12 test misc::easy1_1MB ... bench: 514,816 ns/iter (+/- 2,832) = 2036 MB/s [all …]
|
/third_party/skia/third_party/externals/expat/expat/ |
D | Changes | 7 #616 #649 #650 CVE-2022-43680 -- Fix heap use-after-free after overeager 9 XML_ExternalEntityParserCreate in out-of-memory situations 13 #629 #640 CVE-2022-40674 -- Heap use-after-free vulnerability in 31 #34 #466 #484 CVE-2013-0340/CWE-776 -- Protect against billion laughs attacks 32 (denial-of-service; flavors targeting CPU time or RAM or both, 40 - A new error code XML_ERROR_AMPLIFICATION_LIMIT_BREACH to 42 - Two new API functions .. 43 - XML_SetBillionLaughsAttackProtectionMaximumAmplification and 44 - XML_SetBillionLaughsAttackProtectionActivationThreshold 47 If you ever need to increase the defaults for non-attack XML [all …]
|
/third_party/elfutils/tests/ |
D | run-strip-remove-keep.sh | 2 # Copyright (C) 2017 Red Hat, Inc. 18 . $srcdir/test-subr.sh 20 # strip -o output and -f debug files 27 echo strip --keep-section=.strtab testfile 28 testrun ${abs_top_builddir}/src/strip --keep-section=.strtab -o testfile.elf -f testfile.debug test… 30 testrun ${abs_top_builddir}/src/elflint --gnu testfile.elf 32 testrun ${abs_top_builddir}/src/elflint --gnu -d testfile.debug 34 testrun_compare ${abs_top_builddir}/src/readelf -S testfile.elf <<\EOF 41 [ 2] .note.ABI-tag NOTE 08048108 000108 000020 0 A 0 0 4 69 testrun_compare ${abs_top_builddir}/src/readelf -S testfile.debug <<\EOF [all …]
|
/third_party/python/Doc/reference/ |
D | lexical_analysis.rst | 15 can be given by an encoding declaration and defaults to UTF-8, see :pep:`3120` 20 .. _line-structure: 30 .. _logical-lines: 33 ------------- 44 .. _physical-lines: 47 -------------- 49 A physical line is a sequence of characters terminated by an end-of-line 51 termination sequences can be used - the Unix form using ASCII LF (linefeed), 65 -------- 79 --------------------- [all …]
|
/third_party/icu/icu4c/source/test/intltest/ |
D | numbertest_skeletons.cpp | 1 // © 2017 and later: Unicode, Inc. and others. 44 u"precision-integer", in validTokens() 45 u"precision-unlimited", in validTokens() 67 u"precision-increment/3.14", in validTokens() 68 u"precision-increment/3.14/w", in validTokens() 69 u"precision-currency-standard", in validTokens() 70 u"precision-currency-standard/w", in validTokens() 71 u"precision-integer rounding-mode-half-up", in validTokens() 72 u".00# rounding-mode-ceiling", in validTokens() 73 u".00/@@* rounding-mode-floor", in validTokens() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | asrc_sinc.c | 2 * Copyright (c) 2008-2009 Rob Sykes <robs@users.sourceforge.net> 3 * Copyright (c) 2017 Paul B Mahol 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 48 AVFilterContext *ctx = outlink->src; in request_frame() 49 SincContext *s = ctx->priv; in request_frame() 50 const float *coeffs = s->coeffs; in request_frame() 54 nb_samples = FFMIN(s->nb_samples, s->n - s->pts); in request_frame() 61 memcpy(frame->data[0], coeffs + s->pts, nb_samples * sizeof(float)); in request_frame() 63 frame->pts = s->pts; in request_frame() 64 s->pts += nb_samples; in request_frame() [all …]
|
/third_party/libffi/m4/ |
D | ax_gcc_archflag.m4 | 2 # https://www.gnu.org/software/autoconf-archive/ax_gcc_archflag.html 7 # AX_GCC_ARCHFLAG([PORTABLE?], [ACTION-SUCCESS], [ACTION-FAILURE]) 12 # architecture for use with gcc's -march=arch or -mtune=arch flags. If 14 # ACTION-SUCCESS is executed; otherwise $ax_cv_gcc_archflag is set to 15 # "unknown" and ACTION-FAILURE is executed. The default ACTION-SUCCESS is 19 # the flag is set to -mtune (or equivalent) so that the architecture is 21 # the latter case, the flag is set to -march (or equivalent) so that 22 # architecture-specific instructions are enabled. 24 # The user can specify --with-gcc-arch=<arch> in order to override the 25 # macro's choice of architecture, or --without-gcc-arch to disable this. [all …]
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
D | glnames.py | 9 # Copyright (C) 1996-2021 by 21 usage: %s <output-file> 38 # https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6post.html 418 # https://github.com/adobe-type-tools/agl-aglfn 1862 controlESC;001B 1866 controlFS;001C 1867 controlGS;001D 1871 controlRS;001E 1876 controlSUB;001A 1878 controlUS;001F [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/tool/locale/ |
D | LocaleDistanceBuilder.java | 1 // © 2017 and later: Unicode, Inc. and others. 68 resolve("001"); in TerritoryContainment() 78 leaves = toLeavesOnly.get("001"); in TerritoryContainment() 149 int end = s.length() - 1; in addSubtag() 312 DistanceTable dt = new DistanceTable(-1); in addSubtables() 343 DistanceTable dt = new DistanceTable(-1); in addSubtables() 358 // Remove script table -*-*-50 where there are no other script rules in prune() 369 // Remove region table -*-*-4 where there are no other region rules. in prune() 411 // Collapse ANY-ANY into one single *. in toTrie() 418 builder.addSubtag(desired, -1); in toTrie() [all …]
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/locale/ |
D | LocaleDistanceBuilder.java | 1 // © 2017 and later: Unicode, Inc. and others. 68 resolve("001"); in TerritoryContainment() 78 leaves = toLeavesOnly.get("001"); in TerritoryContainment() 149 int end = s.length() - 1; in addSubtag() 312 DistanceTable dt = new DistanceTable(-1); in addSubtables() 343 DistanceTable dt = new DistanceTable(-1); in addSubtables() 358 // Remove script table -*-*-50 where there are no other script rules in prune() 369 // Remove region table -*-*-4 where there are no other region rules. in prune() 411 // Collapse ANY-ANY into one single *. in toTrie() 418 builder.addSubtag(desired, -1); in toTrie() [all …]
|