Searched refs:alternates (Results 1 - 8 of 8) sorted by relevance
/third_party/skia/third_party/externals/harfbuzz/test/api/ |
H A D | test-ot-alternates.c | 35 hb_codepoint_t alternates[3]; in test_ot_layout_lookup_get_glyph_alternates() local 37 g_assert_cmpuint (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()
|
/third_party/rust/crates/regex/examples/ |
H A D | shootout-regex-dna-single-cheat.rs | 59 let mut alternates = vec![]; in replace_all() variables 62 alternates.push((re as char).to_string()); in replace_all() 65 let re = regex!(&alternates.join("|")); in replace_all()
|
H A D | shootout-regex-dna-cheat.rs | 74 let mut alternates = vec![]; in replace_all() variables 77 alternates.push((re as char).to_string()); in replace_all() 80 let re = regex!(&alternates.join("|")); in replace_all()
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_imports.py | 61 def alternates(members): function 67 bare_names = alternates(mapping.keys())
|
H A D | fix_urllib.py | 8 from lib2to3.fixes.fix_imports import alternates, FixImports 53 members = alternates(members)
|
H A D | fix_renames.py | 17 def alternates(members): function 39 #yield """bare_name=%s""" % alternates(bare)
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A 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 in get_alternates() 628 alternates; /* Array of alternate GlyphIDs--in global() member [all...] |
/third_party/python/Lib/idlelib/ |
H A D | colorizer.py | 12 def any(name, alternates): 13 "Return a named group pattern matching list of alternates." 14 return "(?P<%s>" % name + "|".join(alternates) + ")"
|
Completed in 5 milliseconds