/third_party/skia/third_party/externals/harfbuzz/test/api/ |
D | test-ot-alternates.c | 35 hb_codepoint_t alternates[3]; in test_ot_layout_lookup_get_glyph_alternates() local 37 …7, ==, hb_ot_layout_lookup_get_glyph_alternates (face, 1, 1091, 2, &alternates_count, alternates)); in test_ot_layout_lookup_get_glyph_alternates() 40 g_assert_cmpuint (1606, ==, alternates[0]); in test_ot_layout_lookup_get_glyph_alternates() 41 g_assert_cmpuint (1578, ==, alternates[1]); in test_ot_layout_lookup_get_glyph_alternates() 42 g_assert_cmpuint (1592, ==, alternates[2]); in test_ot_layout_lookup_get_glyph_alternates()
|
D | meson.build | 20 'test-ot-alternates.c',
|
D | Makefile.am | 44 test-ot-alternates \
|
/third_party/harfbuzz/test/api/ |
D | test-ot-alternates.c | 35 hb_codepoint_t alternates[3]; in test_ot_layout_lookup_get_glyph_alternates() local 37 …7, ==, hb_ot_layout_lookup_get_glyph_alternates (face, 1, 1091, 2, &alternates_count, alternates)); in test_ot_layout_lookup_get_glyph_alternates() 40 g_assert_cmpuint (1606, ==, alternates[0]); in test_ot_layout_lookup_get_glyph_alternates() 41 g_assert_cmpuint (1578, ==, alternates[1]); in test_ot_layout_lookup_get_glyph_alternates() 42 g_assert_cmpuint (1592, ==, alternates[2]); in test_ot_layout_lookup_get_glyph_alternates()
|
D | meson.build | 19 'test-ot-alternates.c',
|
D | Makefile.am | 43 test-ot-alternates \
|
/third_party/boost/boost/xpressive/detail/core/ |
D | linker.hpp | 287 alternates_vector<BidiIter> const &alternates in alt_link() 292 std::for_each(alternates.begin(), alternates.end(), alt_link_pred(this, peeker, next)); in alt_link() 298 fusion::sequence_base<Alternates> const &alternates in alt_link() 304 fusion::for_each(alternates.derived(), alt_link_pred(this, peeker, next)); in alt_link() 306 fusion::for_each(alternates.cast(), alt_link_pred(this, peeker, next)); in alt_link()
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | hlsdemux_m3u8.c | 973 GList *alternates; 987 alternates = 989 assert_equals_int (alternates != NULL, TRUE); 990 media = GST_M3U8_MEDIA (g_list_nth_data (alternates, 0)); 1003 alternates = gst_m3u8_client_get_alternates (client, 1005 assert_equals_int (g_list_length (alternates), 3); 1007 assert_equals_string (g_list_nth_data (alternates, 0), "English"); 1008 assert_equals_string (g_list_nth_data (alternates, 1), "Commentary"); 1009 assert_equals_string (g_list_nth_data (alternates, 2), "Deutsche"); 1020 GList *alternates; [all …]
|
/third_party/python/Lib/lib2to3/fixes/ |
D | fix_imports.py | 61 def alternates(members): function 67 bare_names = alternates(mapping.keys())
|
D | fix_urllib.py | 8 from lib2to3.fixes.fix_imports import alternates, FixImports 53 members = alternates(members)
|
D | fix_renames.py | 17 def alternates(members): function
|
/third_party/boost/boost/xpressive/detail/core/matcher/ |
D | alternate_matcher.hpp | 95 explicit alternate_matcher(Alternates const &alternates = Alternates()) in alternate_matcher() 96 : alternates_(alternates) in alternate_matcher()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-layout-gsub-table.hh | 542 { return hb_any (alternates, glyphs); } in intersects() 545 { c->output->add_array (alternates.arrayZ, alternates.len); } in closure() 548 { c->output->add_array (alternates.arrayZ, alternates.len); } in collect_glyphs() 553 unsigned int count = alternates.len; in apply() 575 c->replace_glyph (alternates[alt_index - 1]); in apply() 585 if (alternates.len && alternate_count) in get_alternates() 587 + alternates.sub_array (start_offset, alternate_count) in get_alternates() 591 return alternates.len; in get_alternates() 600 return_trace (alternates.serialize (c, alts)); in serialize() 610 + hb_iter (alternates) in subset() [all …]
|
/third_party/harfbuzz/src/ |
D | hb-ot-layout-gsub-table.hh | 539 { return hb_any (alternates, glyphs); } in intersects() 542 { c->output->add_array (alternates.arrayZ, alternates.len); } in closure() 545 { c->output->add_array (alternates.arrayZ, alternates.len); } in collect_glyphs() 550 unsigned int count = alternates.len; in apply() 567 c->replace_glyph (alternates[alt_index - 1]); in apply() 577 if (alternates.len && alternate_count) in get_alternates() 579 + alternates.sub_array (start_offset, alternate_count) in get_alternates() 583 return alternates.len; in get_alternates() 592 return_trace (alternates.serialize (c, alts)); in serialize() 602 + hb_iter (alternates) in subset() [all …]
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-layout-gsub-table.hh | 486 unsigned int count = alternates.len; in closure() 488 c->output->add (alternates[i]); in closure() 492 { c->output->add_array (alternates.arrayZ, alternates.len); } in collect_glyphs() 497 unsigned int count = alternates.len; in apply() 514 c->replace_glyph (alternates[alt_index - 1]); in apply() 525 return_trace (alternates.serialize (c, alts)); in serialize() 531 return_trace (alternates.sanitize (c)); in sanitize() 536 alternates; /* Array of alternate GlyphIDs--in member 539 DEFINE_SIZE_ARRAY (2, alternates);
|
/third_party/python/Lib/idlelib/ |
D | colorizer.py | 12 def any(name, alternates): argument 14 return "(?P<%s>" % name + "|".join(alternates) + ")"
|
/third_party/boost/libs/proto/test/ |
D | toy_spirit2.cpp | 312 bool operator ()(alternate<List> const &alternates) const in operator ()() 314 return fusion::any(alternates.elems, fold_alternate<Iterator>(*this)); in operator ()()
|
/third_party/glib/glib/tests/ |
D | strfuncs.c | 950 gchar **tokens, **alternates; in test_str_tokenize_and_fold() local 966 tokens = g_str_tokenize_and_fold (special_cases, local_str, &alternates); in test_str_tokenize_and_fold() 972 g_strfreev (alternates); in test_str_tokenize_and_fold() 974 tokens = g_str_tokenize_and_fold (sample, local_str, &alternates); in test_str_tokenize_and_fold() 979 g_strfreev (alternates); in test_str_tokenize_and_fold() 987 tokens = g_str_tokenize_and_fold (sample, NULL, &alternates); in test_str_tokenize_and_fold() 992 g_strfreev (alternates); in test_str_tokenize_and_fold()
|
/third_party/glib/glib/ |
D | gstrfuncs.c | 3170 gchar **alternates = NULL; in g_str_match_string() local 3180 …hit_tokens = g_str_tokenize_and_fold (potential_hit, NULL, accept_alternates ? &alternates : NULL); in g_str_match_string() 3191 for (j = 0; alternates[j]; j++) in g_str_match_string() 3192 if (g_str_has_prefix (alternates[j], term_tokens[i])) in g_str_match_string() 3204 g_strfreev (alternates); in g_str_match_string()
|
/third_party/boost/boost/beast/http/ |
D | field.hpp | 52 alternates, enumerator
|
/third_party/boost/libs/beast/include/boost/beast/http/ |
D | field.hpp | 52 alternates, enumerator
|
/third_party/openGLES/extensions/SGIX/ |
D | SGIX_ycrcb.txt | 44 The chroma component alternates between Cb and Cr values on
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/ |
D | SGIX_ycrcb.txt | 44 The chroma component alternates between Cb and Cr values on
|
/third_party/glib/gio/ |
D | gdesktopappinfo.c | 1096 gchar **tokens, **alternates; in memory_index_add_string() local 1099 tokens = g_str_tokenize_and_fold (string, NULL, &alternates); in memory_index_add_string() 1104 for (i = 0; alternates[i]; i++) in memory_index_add_string() 1105 memory_index_add_token (mi, alternates[i], match_category, app_name); in memory_index_add_string() 1107 g_strfreev (alternates); in memory_index_add_string()
|
/third_party/boost/libs/beast/test/beast/http/ |
D | field.cpp | 63 match(field::alternates, "Alternates"); in testField()
|