Home
last modified time | relevance | path

Searched refs:streq_null (Results 1 – 3 of 3) sorted by relevance

/external/libxkbcommon/test/
Dutils.c49 assert(streq_null("foo", "foo")); in main()
50 assert(!streq_null("foobar", "foo")); in main()
51 assert(!streq_null("foobar", NULL)); in main()
52 assert(!streq_null(NULL, "foobar")); in main()
53 assert(streq_null(NULL, NULL)); in main()
Dregistry.c425 if (!streq_null(tm->vendor, rxkb_model_get_vendor(m))) in cmp_models()
428 if (!streq_null(tm->description, rxkb_model_get_description(m))) in cmp_models()
443 if (!streq_null(tl->variant, rxkb_layout_get_variant(l))) in cmp_layouts()
446 if (!streq_null(tl->brief, rxkb_layout_get_brief(l))) in cmp_layouts()
449 if (!streq_null(tl->description, rxkb_layout_get_description(l))) in cmp_layouts()
464 if (!streq_null(to->description, rxkb_option_get_description(o))) in cmp_options()
488 if (!streq_null(tg->description, rxkb_option_group_get_description(g))) in cmp_option_groups()
/external/libxkbcommon/src/
Dutils.h73 streq_null(const char *s1, const char *s2) in streq_null() function