pcmk__str_regex  1106 lib/common/strings.c     if (pcmk_is_set(flags, pcmk__str_regex)) {
pcmk__str_regex    62 lib/common/tests/strings/pcmk__strcmp_test.c     assert_true(pcmk__strcmp(NULL, "a..d", pcmk__str_regex) > 0);
pcmk__str_regex    63 lib/common/tests/strings/pcmk__strcmp_test.c     assert_true(pcmk__strcmp(s1, NULL, pcmk__str_regex) > 0);
pcmk__str_regex    64 lib/common/tests/strings/pcmk__strcmp_test.c     assert_int_equal(pcmk__strcmp(s1, "a..d", pcmk__str_regex), 0);
pcmk__str_regex    65 lib/common/tests/strings/pcmk__strcmp_test.c     assert_true(pcmk__str_eq(s1, "a..d", pcmk__str_regex));
pcmk__str_regex    66 lib/common/tests/strings/pcmk__strcmp_test.c     assert_int_not_equal(pcmk__strcmp(s1, "xxyy", pcmk__str_regex), 0);
pcmk__str_regex    67 lib/common/tests/strings/pcmk__strcmp_test.c     assert_false(pcmk__str_eq(s1, "xxyy", pcmk__str_regex));
pcmk__str_regex    68 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    69 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    70 lib/common/tests/strings/pcmk__strcmp_test.c     assert_int_not_equal(pcmk__strcmp(s2, "a..d", pcmk__str_regex), 0);
pcmk__str_regex    71 lib/common/tests/strings/pcmk__strcmp_test.c     assert_false(pcmk__str_eq(s2, "a..d", pcmk__str_regex));
pcmk__str_regex    72 lib/common/tests/strings/pcmk__strcmp_test.c     assert_true(pcmk__strcmp(s2, "*ab", pcmk__str_regex) > 0);
pcmk__str_regex   548 lib/pacemaker/pcmk_cluster_queries.c         if (pcmk__str_empty(node_types) || !pcmk__strcmp(node_types, ",|^remote", pcmk__str_regex)) {
pcmk__str_regex   422 tools/crm_attribute.c     if (!pcmk__str_eq(attr_name, options.attr_pattern, pcmk__str_regex)) {
pcmk__str_regex   497 tools/crm_attribute.c     if (!pcmk__str_eq(attr_name, options.attr_pattern, pcmk__str_regex)) {
pcmk__str_regex   569 tools/crm_attribute.c     if (od->use_pattern && !pcmk__str_eq(name, options.attr_pattern, pcmk__str_regex)) {