pcmk__str_regex  1100 lib/common/strings.c     if (pcmk_is_set(flags, pcmk__str_regex)) {
pcmk__str_regex    64 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_cmpint(pcmk__strcmp(NULL, "a..d", pcmk__str_regex), ==, 1);
pcmk__str_regex    65 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_cmpint(pcmk__strcmp(s1, NULL, pcmk__str_regex), ==, 1);
pcmk__str_regex    66 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_cmpint(pcmk__strcmp(s1, "a..d", pcmk__str_regex), ==, 0);
pcmk__str_regex    67 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_true(pcmk__str_eq(s1, "a..d", pcmk__str_regex));
pcmk__str_regex    68 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_cmpint(pcmk__strcmp(s1, "xxyy", pcmk__str_regex), !=, 0);
pcmk__str_regex    69 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_false(pcmk__str_eq(s1, "xxyy", pcmk__str_regex));
pcmk__str_regex    70 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_cmpint(pcmk__strcmp(s2, "a..d", pcmk__str_regex|pcmk__str_casei), ==, 0);
pcmk__str_regex    71 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_true(pcmk__str_eq(s2, "a..d", pcmk__str_regex|pcmk__str_casei));
pcmk__str_regex    72 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_cmpint(pcmk__strcmp(s2, "a..d", pcmk__str_regex), !=, 0);
pcmk__str_regex    73 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_false(pcmk__str_eq(s2, "a..d", pcmk__str_regex));
pcmk__str_regex    74 lib/common/tests/strings/pcmk__strcmp_test.c     g_assert_cmpint(pcmk__strcmp(s2, "*ab", pcmk__str_regex), ==, 1);
pcmk__str_regex   475 lib/pacemaker/pcmk_cluster_queries.c         if (pcmk__str_empty(node_types) || !pcmk__strcmp(node_types, ",|^remote", pcmk__str_regex)) {