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.c458 if (!streq_null(tm->vendor, rxkb_model_get_vendor(m))) in cmp_models()
461 if (!streq_null(tm->description, rxkb_model_get_description(m))) in cmp_models()
479 if (!streq_null(tl->variant, rxkb_layout_get_variant(l))) in cmp_layouts()
482 if (!streq_null(tl->brief, rxkb_layout_get_brief(l))) in cmp_layouts()
485 if (!streq_null(tl->description, rxkb_layout_get_description(l))) in cmp_layouts()
494 if (!streq_null(iso, rxkb_iso3166_code_get_code(iso3166))) in cmp_layouts()
509 if (!streq_null(iso, rxkb_iso639_code_get_code(iso639))) in cmp_layouts()
530 if (!streq_null(to->description, rxkb_option_get_description(o))) in cmp_options()
554 if (!streq_null(tg->description, rxkb_option_group_get_description(g))) in cmp_option_groups()
/external/libxkbcommon/src/
Dutils.h74 streq_null(const char *s1, const char *s2) in streq_null() function