HomeSort by relevance Sort by last modified time
    Searched refs:num_features (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-shape.h 66 unsigned int num_features);
72 unsigned int num_features,
hb-ot-shape.h 43 unsigned int num_features,
main.cc 140 int num_features = langsys.get_feature_count (); local
141 printf (" %d feature(s) found in language system\n", num_features);
142 for (int n_feature = 0; n_feature < num_features; n_feature++) {
143 printf (" Feature index %2d of %2d: %d\n", n_feature, num_features,
149 int num_features = g.get_feature_count (); local
150 printf (" %d feature(s) found in table\n", num_features);
151 for (int n_feature = 0; n_feature < num_features; n_feature++) {
154 printf (" Feature %2d of %2d: %c%c%c%c\n", n_feature, num_features,
hb-shape-plan.h 81 unsigned int num_features);
hb-fallback-shape.cc 96 unsigned int num_features HB_UNUSED)
hb-shape-plan.cc 52 "num_features=%d shaper_list=%p",
119 "face=%p num_features=%d shaper_list=%p",
275 * @features: (array length=num_features):
276 * @num_features:
289 unsigned int num_features)
292 "num_features=%d shaper_func=%p",
293 num_features,
308 _hb_##shaper##_shape (shape_plan, font, buffer, features, num_features); \
409 "face=%p num_features=%d shaper_list=%p",
hb-shaper-private.hh 36 unsigned int num_features);
hb-coretext.cc 428 unsigned int num_features)
457 if (num_features)
461 for (unsigned int i = 0; i < num_features; i++)
498 feature.order = num_features + 1;
595 num_features = 0;
723 if (num_features)
    [all...]
hb-uniscribe.cc 593 unsigned int num_features)
605 if (num_features)
609 for (unsigned int i = 0; i < num_features; i++)
638 feature.order = num_features + 1;
716 num_features = 0;
763 if (num_features)
842 if (num_features)
  /external/harfbuzz_ng/src/
hb-shape.h 66 unsigned int num_features);
72 unsigned int num_features,
hb-ot-shape.h 43 unsigned int num_features,
main.cc 140 int num_features = langsys.get_feature_count (); local
141 printf (" %d feature(s) found in language system\n", num_features);
142 for (int n_feature = 0; n_feature < num_features; n_feature++) {
143 printf (" Feature index %2d of %2d: %d\n", n_feature, num_features,
149 int num_features = g.get_feature_count (); local
150 printf (" %d feature(s) found in table\n", num_features);
151 for (int n_feature = 0; n_feature < num_features; n_feature++) {
154 printf (" Feature %2d of %2d: %c%c%c%c\n", n_feature, num_features,
hb-shape-plan.h 81 unsigned int num_features);
hb-fallback-shape.cc 96 unsigned int num_features HB_UNUSED)
hb-shaper-private.hh 36 unsigned int num_features);
hb-coretext.cc 433 unsigned int num_features)
445 if (num_features)
449 for (unsigned int i = 0; i < num_features; i++)
486 feature.order = num_features + 1;
584 num_features = 0;
634 if (num_features)
    [all...]
hb-shape-plan.cc 258 * @features: (array length=num_features):
259 * @num_features:
272 unsigned int num_features)
286 _hb_##shaper##_shape (shape_plan, font, buffer, features, num_features); \
hb-uniscribe.cc 592 unsigned int num_features)
604 if (num_features)
608 for (unsigned int i = 0; i < num_features; i++)
637 feature.order = num_features + 1;
715 num_features = 0;
762 if (num_features)
841 if (num_features)
  /external/opencv/ml/src/
mltestset.cpp 61 int num_features,
90 if( num_features < 1 )
91 CV_ERROR( CV_StsBadArg, "num_features parameter must be positive" );
105 CV_CALL( *samples = cvCreateMat( num_samples, num_features, CV_32FC1 ) );
107 CV_CALL( mean = cvCreateMat( 1, num_features, CV_32FC1 ) );
109 CV_CALL( cov = cvCreateMat( num_features, num_features, CV_32FC1 ) );
  /external/chromium_org/third_party/ots/src/
layout.h 31 const uint16_t num_features);
35 uint16_t *num_features);
layout.cc 48 const uint16_t num_features) {
62 req_feature_index >= num_features) {
65 if (feature_count > num_features) {
74 if (feature_index >= num_features) {
82 const uint32_t tag, const uint16_t num_features) {
130 if (!ParseLangSysTable(&subtable, lang_sys_records[i].tag, num_features)) {
    [all...]
  /external/srec/srec/ca/
cnfd_scr.c 131 static int CA_ConfScorerGetFeatures(CA_Recog* recog, CA_NBestList *nbestlist, float* features, int *num_features,
140 int i, num_features,current_choice; local
150 rc = CA_ConfScorerGetFeatures(recog, nbestlist, features, &num_features, current_choice, num_choices_left);
194 for (i = 0; i < num_features; i++)
201 int CA_ConfScorerGetFeatures(CA_Recog* recog, CA_NBestList *nbestlist, float* features, int *num_features,
218 ASSERT(num_features);
269 *num_features = NUM_CONF_FEATURES;
274 *num_features = 0;
  /external/harfbuzz_ng/util/
options.hh 181 num_features = 0;
239 hb_bool_t res = hb_shape_full (font, buffer, features, num_features, shapers);
252 hb_ot_shape_glyphs_closure (font, buffer, features, num_features, glyphs);
266 unsigned int num_features; member in struct:shape_options_t
options.cc 225 shape_opts->num_features = 0;
235 shape_opts->num_features++;
241 shape_opts->features = (hb_feature_t *) calloc (shape_opts->num_features, sizeof (*shape_opts->features));
245 shape_opts->num_features = 0;
248 if (hb_feature_from_string (p, end ? end - p : -1, &shape_opts->features[shape_opts->num_features]))
249 shape_opts->num_features++;
  /external/chromium_org/third_party/ots/test/
layout_common_table_test.cc 264 num_features = 0;
269 uint16_t num_features; member in class:__anon19375::FeatureListTableTest
404 &num_features));
405 EXPECT_EQ(num_features, 1);
411 &num_features));
412 EXPECT_EQ(num_features, 5);
421 &num_features));
430 &num_features));
439 &num_features));
448 &num_features));
    [all...]

Completed in 514 milliseconds

1 2