OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HB_DIRECTION_RTL
(Results
1 - 2
of
2
) sorted by null
/external/harfbuzz_ng/test/api/
test-common.c
58
g_assert (HB_DIRECTION_IS_HORIZONTAL (
HB_DIRECTION_RTL
));
64
g_assert (!HB_DIRECTION_IS_VERTICAL (
HB_DIRECTION_RTL
));
71
g_assert (!HB_DIRECTION_IS_FORWARD (
HB_DIRECTION_RTL
));
77
g_assert (HB_DIRECTION_IS_BACKWARD (
HB_DIRECTION_RTL
));
83
g_assert (HB_DIRECTION_IS_VALID (
HB_DIRECTION_RTL
));
88
g_assert_cmpint (HB_DIRECTION_REVERSE (HB_DIRECTION_LTR), ==,
HB_DIRECTION_RTL
);
89
g_assert_cmpint (HB_DIRECTION_REVERSE (
HB_DIRECTION_RTL
), ==, HB_DIRECTION_LTR);
98
g_assert_cmpint (
HB_DIRECTION_RTL
, ==, hb_direction_from_string ("r", -1));
99
g_assert_cmpint (
HB_DIRECTION_RTL
, ==, hb_direction_from_string ("rtl", -1));
100
g_assert_cmpint (
HB_DIRECTION_RTL
, ==, hb_direction_from_string ("RtL", -1))
[
all
...]
/external/harfbuzz_ng/src/
hb-common.h
113
* @
HB_DIRECTION_RTL
: Text is set horizontally from right to left.
120
HB_DIRECTION_RTL
,
Completed in 1270 milliseconds