Home
last modified time | relevance | path

Searched refs:HB_DIRECTION_LTR (Results 1 – 14 of 14) sorted by relevance

/external/harfbuzz_ng/test/api/
Dtest-common.c54 g_assert_cmpint (HB_DIRECTION_LTR, !=, 0); in test_types_direction()
56 g_assert (HB_DIRECTION_IS_HORIZONTAL (HB_DIRECTION_LTR)); in test_types_direction()
62 g_assert (!HB_DIRECTION_IS_VERTICAL (HB_DIRECTION_LTR)); in test_types_direction()
68 g_assert (HB_DIRECTION_IS_FORWARD (HB_DIRECTION_LTR)); in test_types_direction()
74 g_assert (!HB_DIRECTION_IS_BACKWARD (HB_DIRECTION_LTR)); in test_types_direction()
80 g_assert (HB_DIRECTION_IS_VALID (HB_DIRECTION_LTR)); in test_types_direction()
87 g_assert_cmpint (HB_DIRECTION_REVERSE (HB_DIRECTION_LTR), ==, HB_DIRECTION_RTL); in test_types_direction()
88 g_assert_cmpint (HB_DIRECTION_REVERSE (HB_DIRECTION_RTL), ==, HB_DIRECTION_LTR); in test_types_direction()
103 g_assert (0 == strcmp ("ltr", hb_direction_to_string (HB_DIRECTION_LTR))); in test_types_direction()
173 g_assert_cmpint (hb_script_get_horizontal_direction (HB_SCRIPT_LATIN), ==, HB_DIRECTION_LTR); in test_types_script()
[all …]
Dtest-font.c290 g_assert (hb_font_get_glyph_contour_point_for_origin (font1, 1, 2, HB_DIRECTION_LTR, &x, &y)); in test_fontfuncs_subclassing()
293 g_assert (hb_font_get_glyph_contour_point_for_origin (font1, 2, 5, HB_DIRECTION_LTR, &x, &y)); in test_fontfuncs_subclassing()
329 g_assert (hb_font_get_glyph_contour_point_for_origin (font2, 1, 2, HB_DIRECTION_LTR, &x, &y)); in test_fontfuncs_subclassing()
335 g_assert (!hb_font_get_glyph_contour_point_for_origin (font2, 3, 7, HB_DIRECTION_LTR, &x, &y)); in test_fontfuncs_subclassing()
351 g_assert (hb_font_get_glyph_contour_point_for_origin (font3, 2, 5, HB_DIRECTION_LTR, &x, &y)); in test_fontfuncs_subclassing()
354 g_assert (!hb_font_get_glyph_contour_point_for_origin (font3, 3, 7, HB_DIRECTION_LTR, &x, &y)); in test_fontfuncs_subclassing()
Dtest-shape.c110 hb_buffer_set_direction (buffer, HB_DIRECTION_LTR); in test_shape()
155 hb_buffer_set_direction (buffer, HB_DIRECTION_LTR); in test_shape_clusters()
Dtest-ot-math.c343 horizontal ? HB_DIRECTION_LTR : HB_DIRECTION_TTB, in get_glyph_assembly_italics_correction()
403 …g_assert_cmpint(hb_ot_math_get_min_connector_overlap(hb_font, HB_DIRECTION_LTR), ==, 0); // MathVa… in test_get_min_connector_overlap()
408 g_assert_cmpint(hb_ot_math_get_min_connector_overlap(hb_font, HB_DIRECTION_LTR), ==, 108); in test_get_min_connector_overlap()
/external/harfbuzz_ng/src/
Dhb-common.cc170 return (hb_direction_t) (HB_DIRECTION_LTR + i); in hb_direction_from_string()
188 if (likely ((unsigned int) (direction - HB_DIRECTION_LTR) in hb_direction_to_string()
190 return direction_strings[direction - HB_DIRECTION_LTR]; in hb_direction_to_string()
589 return HB_DIRECTION_LTR; in hb_script_get_horizontal_direction()
Dhb-ot-shape-fallback.cc219 if (buffer->props.direction == HB_DIRECTION_LTR) { in position_mark()
359 if (horiz_dir == HB_DIRECTION_LTR) in position_around_base()
Dhb-common.h136 HB_DIRECTION_LTR = 4, enumerator
Dhb-aat-layout-kerx-table.hh529 HB_DIRECTION_LTR /*XXX*/, in transition()
533 HB_DIRECTION_LTR /*XXX*/, in transition()
Dhb-ot-layout-gpos-table.hh276 font->get_glyph_contour_point_for_origin (glyph_id, anchorPoint, HB_DIRECTION_LTR, &cx, &cy); in get_anchor()
1009 case HB_DIRECTION_LTR: in apply()
Dhb-ot-shape.cc262 case HB_DIRECTION_LTR: in hb_ot_shape_collect_features()
Dhb-buffer.cc661 props.direction = HB_DIRECTION_LTR; in guess_segment_properties()
/external/harfbuzz_ng/test/shaping/data/aots/
Dhb-aots-tester.cpp60 hb_buffer_set_direction(buffer, HB_DIRECTION_LTR); in runTest()
/external/skqp/modules/skshaper/src/
DSkShaper_harfbuzz.cpp629 hb_direction_t direction = is_LTR(bidi->currentLevel()) ? HB_DIRECTION_LTR:HB_DIRECTION_RTL; in shape()
/external/skia/modules/skshaper/src/
DSkShaper_harfbuzz.cpp1358 hb_direction_t direction = is_LTR(bidi->currentLevel()) ? HB_DIRECTION_LTR:HB_DIRECTION_RTL; in shape()