pcmk__str_regex 1104 lib/common/strings.c if (pcmk_is_set(flags, pcmk__str_regex)) { pcmk__str_regex 66 lib/common/tests/strings/pcmk__strcmp_test.c assert_int_equal(pcmk__strcmp(NULL, "a..d", pcmk__str_regex), 1); pcmk__str_regex 67 lib/common/tests/strings/pcmk__strcmp_test.c assert_int_equal(pcmk__strcmp(s1, NULL, pcmk__str_regex), 1); pcmk__str_regex 68 lib/common/tests/strings/pcmk__strcmp_test.c assert_int_equal(pcmk__strcmp(s1, "a..d", pcmk__str_regex), 0); pcmk__str_regex 69 lib/common/tests/strings/pcmk__strcmp_test.c assert_true(pcmk__str_eq(s1, "a..d", pcmk__str_regex)); pcmk__str_regex 70 lib/common/tests/strings/pcmk__strcmp_test.c assert_int_not_equal(pcmk__strcmp(s1, "xxyy", pcmk__str_regex), 0); pcmk__str_regex 71 lib/common/tests/strings/pcmk__strcmp_test.c assert_false(pcmk__str_eq(s1, "xxyy", pcmk__str_regex)); pcmk__str_regex 72 lib/common/tests/strings/pcmk__strcmp_test.c assert_int_equal(pcmk__strcmp(s2, "a..d", pcmk__str_regex|pcmk__str_casei), 0); pcmk__str_regex 73 lib/common/tests/strings/pcmk__strcmp_test.c assert_true(pcmk__str_eq(s2, "a..d", pcmk__str_regex|pcmk__str_casei)); pcmk__str_regex 74 lib/common/tests/strings/pcmk__strcmp_test.c assert_int_not_equal(pcmk__strcmp(s2, "a..d", pcmk__str_regex), 0); pcmk__str_regex 75 lib/common/tests/strings/pcmk__strcmp_test.c assert_false(pcmk__str_eq(s2, "a..d", pcmk__str_regex)); pcmk__str_regex 76 lib/common/tests/strings/pcmk__strcmp_test.c assert_int_equal(pcmk__strcmp(s2, "*ab", pcmk__str_regex), 1); pcmk__str_regex 467 lib/pacemaker/pcmk_cluster_queries.c if (pcmk__str_empty(node_types) || !pcmk__strcmp(node_types, ",|^remote", pcmk__str_regex)) {