OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hb_direction_from_string
(Results
1 - 6
of
6
) sorted by null
/external/harfbuzz_ng/test/api/
test-common.c
94
g_assert_cmpint (HB_DIRECTION_INVALID, ==,
hb_direction_from_string
(NULL, -1));
95
g_assert_cmpint (HB_DIRECTION_INVALID, ==,
hb_direction_from_string
("", -1));
96
g_assert_cmpint (HB_DIRECTION_INVALID, ==,
hb_direction_from_string
("t", 0));
97
g_assert_cmpint (HB_DIRECTION_INVALID, ==,
hb_direction_from_string
("x", -1));
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));
101
g_assert_cmpint (HB_DIRECTION_RTL, ==,
hb_direction_from_string
("right-to-left", -1));
102
g_assert_cmpint (HB_DIRECTION_TTB, ==,
hb_direction_from_string
("ttb", -1));
/external/chromium_org/third_party/harfbuzz-ng/src/
hb-common.cc
119
*
hb_direction_from_string
:
130
hb_direction_from_string
(const char *str, int len)
function
hb-common.h
119
hb_direction_from_string
(const char *str, int len);
/external/harfbuzz_ng/src/
hb-common.cc
99
hb_direction_from_string
(const char *str, int len)
function
hb-common.h
119
hb_direction_from_string
(const char *str, int len);
/external/harfbuzz_ng/util/
options.hh
166
hb_buffer_set_direction (buffer,
hb_direction_from_string
(direction, -1));
Completed in 40 milliseconds