/external/libcxx/test/std/algorithms/alg.nonmodifying/mismatch/ |
mismatch_pred.pass.cpp | 46 binary_counting_predicate<EQ, int> bcp((EQ())); 47 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), std::ref(bcp)) 49 assert(bcp.count() > 0 && bcp.count() < sa); 50 bcp.reset(); 58 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib + sb), std::ref(bcp)) 60 assert(bcp.count() > 0 && bcp.count() < std::min(sa, sb));
|
/external/fonttools/Lib/fontTools/pens/ |
boundsPen.py | 45 def _qCurveToOne(self, bcp, pt): 47 bounds = updateBounds(bounds, bcp) 72 def _qCurveToOne(self, bcp, pt): 75 if not pointInRect(bcp, bounds): 77 self._getCurrentPoint(), bcp, pt))
|
pointInsidePen.py | 169 def _qCurveToOne_unfinished(self, bcp, point): 175 x2, y2 = bcp
|
/external/icu/icu4c/source/test/intltest/ |
punyref.c | 82 /* flagged(bcp) tests whether a basic code point is flagged */ 83 /* (uppercase). The behavior is undefined if bcp is not a */ 86 #define flagged(bcp) ((punycode_uint)(bcp) - 65 < 26) 88 /* encode_basic(bcp,flag) forces a basic code point to lowercase */ 91 /* is caseless. The behavior is undefined if bcp is not a basic */ 94 static char encode_basic(punycode_uint bcp, int flag) 96 bcp -= (bcp - 97 < 26) << 5; 97 return (char) bcp + ((!flag && (bcp - 65 < 26)) << 5) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
KeyTypeData.java | 209 // Empty value indicates that BCP key is same with the legacy key. 245 // reverse bcp type alias map 314 // Empty value indicates that BCP type is same with the legacy type. 320 // equivalent to bcp type value of a different 371 // // {<legacy type>, <bcp type - if different>}, 393 // // {<legacy type>, <bcp type - if different>}, 407 // // {<bcp deprecated>, <bcp preferred> 412 // // {<legacy key>, <bcp key - if different>, <type map>, <type alias>, <bcp type alias>} [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
KeyTypeData.java | 207 // Empty value indicates that BCP key is same with the legacy key. 243 // reverse bcp type alias map 312 // Empty value indicates that BCP type is same with the legacy type. 318 // equivalent to bcp type value of a different 369 // // {<legacy type>, <bcp type - if different>}, 391 // // {<legacy type>, <bcp type - if different>}, 405 // // {<bcp deprecated>, <bcp preferred> 410 // // {<legacy key>, <bcp key - if different>, <type map>, <type alias>, <bcp type alias>} [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/ |
PunycodeReference.java | 91 /* flagged(bcp) tests whether a basic code point is flagged */ 92 /* (uppercase). The behavior is undefined if bcp is not a */ 95 private static boolean flagged(int bcp){ 96 return ((bcp) - 65 < 26); 99 /* encode_basic(bcp,flag) forces a basic code point to lowercase */ 102 /* is caseless. The behavior is undefined if bcp is not a basic */ 105 private static char encode_basic(int bcp, int flag) 107 bcp -= (((bcp - 97) < 26) ? 1 :0 ) << 5; 108 boolean mybcp = (bcp - 65 < 26) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
PunycodeReference.java | 90 /* flagged(bcp) tests whether a basic code point is flagged */ 91 /* (uppercase). The behavior is undefined if bcp is not a */ 94 private static boolean flagged(int bcp){ 95 return ((bcp) - 65 < 26); 98 /* encode_basic(bcp,flag) forces a basic code point to lowercase */ 101 /* is caseless. The behavior is undefined if bcp is not a basic */ 104 private static char encode_basic(int bcp, int flag) 106 bcp -= (((bcp - 97) < 26) ? 1 :0 ) << 5; 107 boolean mybcp = (bcp - 65 < 26) [all...] |
/external/hyphenation-patterns/Ethi/ |
hyph-und-ethi.lic.txt | 14 % The BCP 47 language tag for that file is "mul-ethi" to reflect the fact that
|
/external/hyphenation-patterns/ |
README.android | 45 und-ethi, to properly follow BCP 47 naming.
|
/external/skia/src/ports/ |
SkFontMgr_android_parser.h | 34 /** Gets a BCP 47 language identifier for this SkLanguage. 35 @return a BCP 47 language identifier representing this language 39 /** Performs BCP 47 fallback to return an SkLanguage one step more general. 56 //! BCP 47 language identifier
|
/external/pdfium/xfa/src/fdp/src/fde/ |
fde_geobject.cpp | 92 FX_FLOAT bcp = 4.0f / 3 * (1 - FXSYS_cos(half_delta)) / FXSYS_sin(half_delta);
local 103 p1.Set(cx + rx * (cos_alpha - bcp * sin_alpha),
104 cy + ry * (sin_alpha + bcp * cos_alpha));
106 p2.Set(cx + rx * (cos_beta + bcp * sin_beta),
107 cy + ry * (sin_beta - bcp * cos_beta));
|
/external/pdfium/fpdfsdk/src/pdfwindow/ |
PWL_ComboBox.cpp | 312 PWL_CREATEPARAM bcp = cp; local 313 bcp.pParentWnd = this; 314 bcp.dwFlags = PWS_VISIBLE | PWS_CHILD | PWS_BORDER | PWS_BACKGROUND; 315 bcp.sBackgroundColor = PWL_SCROLLBAR_BKCOLOR; 316 bcp.sBorderColor = PWL_DEFAULT_BLACKCOLOR; 317 bcp.dwBorderWidth = 2; 318 bcp.nBorderStyle = PBS_BEVELED; 319 bcp.eCursorType = FXCT_ARROW; 321 m_pButton->Create(bcp);
|
/external/harfbuzz_ng/ |
TODO | 36 - BCP 47 language handling / API (language_matches?)
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
IllformedLocaleException.java | 12 * indicate that an argument is not a well-formed BCP 47 tag.
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
IllformedLocaleException.java | 11 * indicate that an argument is not a well-formed BCP 47 tag.
|
/libcore/ojluni/src/main/java/java/util/spi/ |
LocaleNameProvider.java | 47 * Returns a localized name for the given <a href="http://www.rfc-editor.org/rfc/bcp/bcp47.txt"> 72 * Returns a localized name for the given <a href="http://www.rfc-editor.org/rfc/bcp/bcp47.txt"> 102 * Returns a localized name for the given <a href="http://www.rfc-editor.org/rfc/bcp/bcp47.txt">
|
/cts/tests/tests/text/src/android/text/style/cts/ |
SuggestionSpanTest.java | 32 * @return A well-formed BCP 47 language tag representation.
|
/external/dnsmasq/contrib/dns-loc/ |
dnsmasq2-loc-rfc1876.patch | 315 + u_char *bcp; 406 + bcp = binary; 407 + *bcp++ = (u_int8_t) 0; /* version byte */ 408 + *bcp++ = siz; 409 + *bcp++ = hp; 410 + *bcp++ = vp; 411 + PUTLONG(latit,bcp); 412 + PUTLONG(longit,bcp); 413 + PUTLONG(alt,bcp);
|
/external/icu/icu4c/source/common/ |
uloc_keytype.cpp | 150 // empty value indicates that BCP key is same with the legacy key. 255 // empty value indicates that BCP type is same with the legacy type. 273 // equivalent to bcp type value of a different 359 // check if this is an alias of bcp type
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/ |
IllformedLocaleException.java | 11 * indicate that an argument is not a well-formed BCP 47 tag.
|
/libcore/ojluni/src/main/java/java/util/ |
IllformedLocaleException.java | 37 * indicate that an argument is not a well-formed BCP 47 tag.
|
/external/icu/icu4c/source/common/unicode/ |
uloc.h | [all...] |
/system/core/rootdir/ |
Android.mk | 155 bcp_dep := $(intermediates)/$(bcp_md5).bcp.dep 157 $(hide) mkdir -p $(dir $@) && rm -rf $(dir $@)*.bcp.dep && touch $@
|
/libcore/luni/src/main/java/libcore/icu/ |
ICU.java | 182 // - A BCP-47 extension subtag: In this case, the item key will be exactly one 188 // There can't be any collisions in practice because the BCP-47 spec imposes 203 // This is a BCP-47 extension subtag. 465 * Takes a BCP-47 language tag (Locale.toLanguageTag()). e.g. en-US, not en_US 470 * Returns a locale name, not a BCP-47 language tag. e.g. en_US not en-US.
|