/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-shaper.cc | 39 /* Thread-safe, lock-free, shapers */ 54 hb_shaper_pair_t *shapers = (hb_shaper_pair_t *) hb_atomic_ptr_get (&static_shapers); local 56 if (unlikely (!shapers)) 65 shapers = (hb_shaper_pair_t *) malloc (sizeof (all_shapers)); 66 if (unlikely (!shapers)) { 71 memcpy (shapers, all_shapers, sizeof (all_shapers)); 73 /* Reorder shaper list to prefer requested shapers. */ 82 if (end - p == (int) strlen (shapers[j].name) && 83 0 == strncmp (shapers[j].name, p, end - p)) 86 struct hb_shaper_pair_t t = shapers[j] [all...] |
hb-ot-shape-complex-private.hh | 37 /* buffer var allocations, used by complex shapers */ 59 /* ^--- Add new shapers here */ 68 * Shapers should use plan->map to add their features and callbacks. 75 * Shapers should use plan->map to override features and add callbacks after 84 * Whatever shapers return will be accessible through plan->data later. 100 * Shapers can use to modify text before shaping starts. 135 * Shapers should use map to get feature masks and set on buffer. 136 * Shapers may NOT modify characters. 207 /* ^--- Add new shapers here */
|
hb-shaper-list.hh | 31 /* v--- Add new shapers in the right place here. */
|
hb-shape-plan.cc | 45 const hb_shaper_pair_t *shapers = _hb_shapers_get (); local 63 else if (shapers[i].func == _hb_##shaper##_shape) \
|
hb-shape.cc | 258 const hb_shaper_pair_t *shapers = _hb_shapers_get (); 261 shaper_list[i] = shapers[i].name;
|
hb-ot-shape-complex-default.cc | 30 /* TODO Add kana, and other small shapers here */
|
hb-ot-shape.cc | 677 const char *shapers[] = {"ot", NULL}; local 679 features, num_features, shapers);
|
/external/harfbuzz_ng/src/ |
hb-shaper.cc | 39 /* Thread-safe, lock-free, shapers */ 54 hb_shaper_pair_t *shapers = (hb_shaper_pair_t *) hb_atomic_ptr_get (&static_shapers); local 56 if (unlikely (!shapers)) 65 shapers = (hb_shaper_pair_t *) malloc (sizeof (all_shapers)); 66 if (unlikely (!shapers)) { 71 memcpy (shapers, all_shapers, sizeof (all_shapers)); 73 /* Reorder shaper list to prefer requested shapers. */ 82 if (end - p == (int) strlen (shapers[j].name) && 83 0 == strncmp (shapers[j].name, p, end - p)) 86 struct hb_shaper_pair_t t = shapers[j] [all...] |
hb-ot-shape-complex-private.hh | 37 /* buffer var allocations, used by complex shapers */ 57 /* ^--- Add new shapers here */ 66 * Shapers should use plan->map to add their features and callbacks. 73 * Shapers should use plan->map to override features and add callbacks after 82 * Whatever shapers return will be accessible through plan->data later. 98 * Shapers can use to modify text before shaping starts. 133 * Shapers should use map to get feature masks and set on buffer. 134 * Shapers may NOT modify characters. 189 /* ^--- Add new shapers here */
|
hb-shaper-list.hh | 31 /* v--- Add new shapers in the right place here. */
|
hb-shape-plan.cc | 45 const hb_shaper_pair_t *shapers = _hb_shapers_get (); local 63 else if (shapers[i].func == _hb_##shaper##_shape) \
|
hb-shape.cc | 227 const hb_shaper_pair_t *shapers = _hb_shapers_get (); 230 shaper_list[i] = shapers[i].name;
|
hb-ot-shape-complex-default.cc | 30 /* TODO Add kana, and other small shapers here */
|
hb-ot-shape.cc | 630 const char *shapers[] = {"ot", NULL}; local 632 features, num_features, shapers);
|
/external/harfbuzz_ng/test/api/ |
test-shape.c | 144 const char **shapers = hb_shape_list_shapers (); local 147 for (i = 0; shapers[i]; i++) 151 g_assert (!strcmp (shapers[i - 1], "fallback"));
|
/external/harfbuzz_ng/util/ |
options.cc | 56 GString *shapers = g_string_new (NULL); local 60 g_string_append (shapers, *shaper_list); 61 g_string_append_c (shapers, ','); 63 g_string_truncate (shapers, MAX (0, (gint)shapers->len - 1)); 65 return g_string_free (shapers, false); 76 char *shapers = shapers_to_string (); local 77 g_printf ("Available shapers: %s\n", shapers); 78 g_free (shapers); [all...] |
options.hh | 150 shapers = NULL; 159 g_strfreev (shapers); 206 hb_bool_t res = hb_shape_full (font, buffer, features, num_features, shapers); 234 char **shapers; member in struct:shape_options_t
|
view-cairo.hh | 62 fail (false, "all shapers failed");
|
hb-shape.cc | 88 format.serialize_message (line_no, "msg: all shapers failed", gs);
|
/external/iproute2/examples/ |
README.cbq | 22 # filter for building smart ethernet shapers. All CBQ parameters are 63 # 1Mbit - "weight" of :1 class (parent for all shapers for eth0), 76 # I do always use "5" for all my shapers. 94 # All shapers do work only for outgoing traffic!
|
/external/chromium_org/third_party/harfbuzz-ng/ |
NEWS | 37 - Remove (long disabled) hb-old and hb-icu-le test shapers. 111 - Uniscribe and CoreText shapers can be enabled with their --with options, 113 - icu_le and old shapers cannot be enabled for now, 284 - Disable fallback positioning for Indic and Thai shapers. 450 both Pango's shapers and old HarfBuzz / Qt shapers.
|
/external/harfbuzz/src/ |
harfbuzz-shape.h | 176 /* Making this self-allocating simplifies writing shapers and
|
/external/harfbuzz_ng/ |
configure.ac | 358 Additional shapers (the more the better): 361 Test / platform shapers (not normally needed):
|
NEWS | 125 - Disable fallback positioning for Indic and Thai shapers. 291 both Pango's shapers and old HarfBuzz / Qt shapers.
|
/libcore/luni/src/main/java/java/awt/font/ |
NumericShaper.java | 534 * // Simple shapers toString format 537 * // Context shapers with default context toString format 541 * // Context shapers with context [all...] |