/external/icu/icu4c/source/data/locales/ |
D | root.txt | 23 accountingFormat:alias{"/LOCALE/NumberElements/arab/patterns/currencyFormat"} 67 accountingFormat:alias{"/LOCALE/NumberElements/latn/patterns/currencyFormat"} 180 AmPmMarkers:alias{"/LOCALE/calendar/gregorian/AmPmMarkers"} 181 AmPmMarkersNarrow:alias{"/LOCALE/calendar/gregorian/AmPmMarkersNarrow"} 182 DateTimePatterns:alias{"/LOCALE/calendar/generic/DateTimePatterns"} 183 NoonMarker:alias{"/LOCALE/calendar/gregorian/NoonMarker"} 184 NoonMarkerNarrow:alias{"/LOCALE/calendar/gregorian/NoonMarkerNarrow"} 185 appendItems:alias{"/LOCALE/calendar/generic/appendItems"} 186 availableFormats:alias{"/LOCALE/calendar/generic/availableFormats"} 187 dayNames:alias{"/LOCALE/calendar/gregorian/dayNames"} [all …]
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | ldml2icu_locale.txt | 27 …source="locale"][@path="../calendar[@type='(%A)']"] ; /calendar/$1lo ; values=/LOCALE/calendar/$2 29 …ar[@type='(%A)']/dayPeriods"] ; /calendar/$1/AmPmMarkers:alias ; values=/LOCALE/calendar/$2/AmPmMa… 30 ; /calendar/$1/AmPmMarkersNarrow:alias ; values=/LOCALE/calendar/$2/AmPmMarkersNarrow 31 ; /calendar/$1/NoonMarker:alias ; values=/LOCALE/calendar/$2/NoonMarker 32 ; /calendar/$1/NoonMarkerNarrow:alias ; values=/LOCALE/calendar/$2/NoonMarkerNarrow 34 …@type='abbreviated']"] ; /calendar/gregorian/AmPmMarkers:alias ; values=/LOCALE/calendar/gregorian… 35 …'abbreviated']"] ; /calendar/gregorian/AmPmMarkersNarrow:alias ; values=/LOCALE/calendar/gregorian… 37 …locale"][@path="../../%W[@type='(%A)']/%W"] ; /calendar/$1/$2:alias ; values=/LOCALE/calendar/$3/$2 39 …"locale"][@path="../eraAbbr"] ; /calendar/$1/eras/narrow:alias ; values=/LOCALE/calendar/$1/eras/a… 40 …e="locale"][@path="../eraAbbr"] ; /calendar/$1/eras/wide:alias ; values=/LOCALE/calendar/$1/eras/a… [all …]
|
D | LDMLConstants.java | 249 public static final String LOCALE = "locale"; field in LDMLConstants
|
/external/icu/icu4c/source/test/testdata/ |
D | root.txt | 99 rootAliasClient:alias {"/LOCALE/rootAliasDestination"} 101 nestedRootAliasClient:alias {"/LOCALE/rootAliasTable/destination"} 113 b7996:alias {"/LOCALE/tableT7996/c7996"}
|
D | te.txt | 105 aliasClient:alias {"/LOCALE/aliasDestination"}
|
/external/libexif/m4m/ |
D | gp-check-shell-environment.m4 | 1 dnl @synopsis GP_CHECK_SHELL_ENVIRONMENT([SHOW-LOCALE-VARS]) 5 dnl If SHOW-LOCALE-VARS is set to [true], print all LC_* and LANG*
|
/external/python/httplib2/doc/html/_static/ |
D | doctools.js | 107 LOCALE : 'unknown', property 129 this.LOCALE = catalog.locale;
|
/external/python/cpython2/Lib/ |
D | re.py | 122 L = LOCALE = sre_compile.SRE_FLAG_LOCALE # assume current 8-bit locale 255 if p.flags & LOCALE:
|
/external/python/cpython3/Lib/ |
D | re.py | 146 LOCALE = sre_compile.SRE_FLAG_LOCALE # assume current 8-bit locale variable in RegexFlag 153 L = LOCALE
|
/external/icu/icu4c/source/tools/ctestfw/ |
D | uperf.cpp | 62 LOCALE, enumerator 185 if(options[LOCALE].doesOccur) { in init() 186 locale = options[LOCALE].value; in init()
|
/external/ImageMagick/config/ |
D | ImageMagick.rc | 56 LOCALE.XML IMAGEMAGICK DISCARDABLE "..\\bin\\locale.xml"
|
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
D | PerfTest.java | 341 static final int LOCALE = 12; field in PerfTest 525 …if (options[LOCALE].doesOccur) locale = LocaleUtility.getLocaleFromName(options[LOCALE].valu… in parseOptions()
|
/external/python/cpython2/Lib/test/ |
D | test_re.py | 404 "abcd abc bcd bx", re.LOCALE).group(1), "bx") 406 "abc bcd bc abxd", re.LOCALE).group(1), "bx") 425 "1aa! a", re.LOCALE).group(0), "1aa! a") 648 self.assertEqual(_sre.getlower(ord('A'), re.LOCALE), ord('a')) 741 self.assertEqual(re.L, re.LOCALE) 983 re.compile('', re.LOCALE|re.UNICODE) 987 re.compile('(?u)', re.LOCALE) 1310 obj = re.compile(pattern, re.LOCALE)
|
/external/icu/icu4c/source/data/unit/ |
D | root.txt | 13 units:alias{"/LOCALE/unitsShort"} 14 unitsNarrow:alias{"/LOCALE/unitsShort"}
|
/external/python/cpython2/Doc/library/ |
D | re.rst | 182 :const:`LOCALE` or :const:`UNICODE` mode is in force. 350 depends on the values of the ``UNICODE`` and ``LOCALE`` flags. 361 of ``LOCALE`` and ``UNICODE``. 378 :const:`LOCALE` flag has no extra effect on matching of the space. 386 :const:`LOCALE` flag has no extra effect on non-whitespace match. If 392 When the :const:`LOCALE` and :const:`UNICODE` flags are not specified, matches 394 ``[a-zA-Z0-9_]``. With :const:`LOCALE`, it will match the set ``[0-9_]`` plus 400 When the :const:`LOCALE` and :const:`UNICODE` flags are not specified, matches 402 With :const:`LOCALE`, it will match any character not in the set ``[0-9_]``, and 410 If both :const:`LOCALE` and :const:`UNICODE` flags are included for a [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_re.py | 663 b"abcd abc bcd bx", re.LOCALE).group(1), b"bx") 665 b"abc bcd bc abxd", re.LOCALE).group(1), b"bx") 676 b"1aa! a", re.LOCALE).group(0), b"1aa! a") 1039 self.assertEqual(re.L, re.LOCALE) 1548 pat = re.compile(bpat, re.LOCALE | re.IGNORECASE) 1557 pat = re.compile(br'\w', re.LOCALE) 1567 self.assertRaises(ValueError, re.compile, '', re.LOCALE) 1569 self.assertRaises(ValueError, re.compile, b'', re.LOCALE | re.ASCII) 1571 self.assertRaises(ValueError, re.compile, b'(?a)', re.LOCALE) 2245 obj = re.compile(bpat, re.LOCALE)
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ICUResourceBundle.java | 1377 private static final String LOCALE = "LOCALE"; 1452 if(bundleName.equals(LOCALE)){ 1454 … keyPath = rpath.substring(LOCALE.length() + 2/* prepending and appending / */, rpath.length());
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | ICUResourceBundle.java | 1386 private static final String LOCALE = "LOCALE"; 1461 if(bundleName.equals(LOCALE)){ 1463 … keyPath = rpath.substring(LOCALE.length() + 2/* prepending and appending / */, rpath.length());
|
/external/python/cpython3/Doc/library/ |
D | re.rst | 219 :const:`ASCII` or :const:`LOCALE` mode is in force. 464 determined by the current locale if the :const:`LOCALE` flag is used. 477 determined by the current locale if the :const:`LOCALE` flag is used. 530 this is equivalent to ``[a-zA-Z0-9_]``. If the :const:`LOCALE` flag is 539 becomes the equivalent of ``[^a-zA-Z0-9_]``. If the :const:`LOCALE` flag is 663 flag unless the :const:`re.LOCALE` flag is also used. 675 LOCALE 687 :const:`re.LOCALE` can be used only with bytes patterns and is 691 Compiled regular expression objects with the :const:`re.LOCALE` flag no
|
/external/ImageMagick/ |
D | AUTHORS.txt | 102 Original author of PerlMagick. Author of the LOCALE coder.
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | LDMLUtilities.java | 325 if (source.equals(LDMLConstants.LOCALE)) { in convertXPath2ICU() 364 if (source.equals(LDMLConstants.LOCALE)) { in convertXPath2ICU() 911 if (source.equals(LDMLConstants.LOCALE)) { in resolveAliases()
|
D | VettingViewer.java | 2008 String LOCALE = MyOptions.locale.option.getValue(); in main() local 2065 String localeStringID = LOCALE; in main()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0a2.rst | 208 expressions now are errors. The re.LOCALE flag now can be used only with
|
/external/python/cpython2/Doc/howto/ |
D | regex.rst | 540 | :const:`LOCALE`, :const:`L` | Do a locale-aware match | 562 set the :const:`LOCALE` flag. 566 LOCALE 577 Setting the :const:`LOCALE` flag when compiling a regular expression will cause
|
/external/python/cpython3/Doc/howto/ |
D | regex.rst | 548 | :const:`LOCALE`, :const:`L` | Do a locale-aware match. | 573 it will if you also set the :const:`LOCALE` flag. 577 LOCALE 591 Setting the :const:`LOCALE` flag when compiling a regular expression will cause
|