HomeSort by relevance Sort by last modified time
    Searched defs:shapers (Results 1 - 7 of 7) sorted by null

  /external/harfbuzz_ng/src/
hb-shape.cc 66 const hb_shaper_entry_t *shapers = _hb_shapers_get (); local
69 shaper_list[i] = shapers[i].name;
96 * Retrieves the list of shapers supported by HarfBuzz.
118 * array of shapers to use or %NULL
121 * shapers will be used in the given order, otherwise the default shapers list
124 * Return value: false if all shapers failed, true otherwise
hb-shape-plan.cc 111 const hb_shaper_entry_t *shapers = _hb_shapers_get (); local
116 else if (shapers[i].func == _hb_##shaper##_shape) \
hb-ot-shape.cc 1050 const char *shapers[] = {"ot", nullptr}; local
1052 features, num_features, shapers);
hb-directwrite.cc 857 static const char *shapers = "directwrite"; local
860 features, num_features, &shapers);
  /external/harfbuzz_ng/test/api/
test-shape.c 186 const char **shapers = hb_shape_list_shapers (); local
189 for (i = 0; shapers[i]; i++)
193 g_assert (!strcmp (shapers[i - 1], "fallback"));
  /external/harfbuzz_ng/util/
options.cc 67 GString *shapers = g_string_new (nullptr); local
71 g_string_append (shapers, *shaper_list);
72 g_string_append_c (shapers, ',');
74 g_string_truncate (shapers, MAX (0, (gint)shapers->len - 1));
76 return g_string_free (shapers, false);
87 char *shapers = shapers_to_string (); local
88 g_printf ("Available shapers: %s\n", shapers);
89 g_free (shapers);
191 char **shapers = g_strsplit (arg, ",", 0); local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
VolumeShaperTest.java 551 // This tests that we can't create infinite shapers and cause audioserver
553 // shapers are allowed by the audio server.
568 final VolumeShaper[] shapers = new VolumeShaper[WAY_TOO_MANY_SHAPERS]; local
571 for (; i < shapers.length; ++i) {
572 shapers[i] = player.createVolumeShaper(SILENCE);
575 + shapers.length + " shapers");
577 Log.d(TAG, testName + " " + i + " shapers created before failure (OK)");
580 // volume shapers close when player closes.
    [all...]

Completed in 441 milliseconds