Lines Matching refs:l
90 locale_t l = newlocale(LC_ALL, "C", nullptr); in TEST() local
91 ASSERT_EQ(0, strcasecmp_l("hello", "HELLO", l)); in TEST()
92 ASSERT_LT(strcasecmp_l("hello1", "hello2", l), 0); in TEST()
93 ASSERT_GT(strcasecmp_l("hello2", "hello1", l), 0); in TEST()
94 freelocale(l); in TEST()
105 locale_t l = newlocale(LC_ALL, "C", nullptr); in TEST() local
106 ASSERT_EQ(0, strncasecmp_l("hello", "HELLO", 3, l)); in TEST()
107 ASSERT_EQ(0, strncasecmp_l("abcXX", "ABCYY", 3, l)); in TEST()
108 ASSERT_LT(strncasecmp_l("hello1", "hello2", 6, l), 0); in TEST()
109 ASSERT_GT(strncasecmp_l("hello2", "hello1", 6, l), 0); in TEST()
110 freelocale(l); in TEST()