pcmk__scan_double   31 include/crm/common/strings_internal.h int pcmk__scan_double(const char *text, double *result,
pcmk__scan_double   32 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double(NULL, &result, NULL, NULL), ==, EINVAL);
pcmk__scan_double   35 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double("", &result, NULL, NULL), ==, EINVAL);
pcmk__scan_double   39 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double(NULL, &result, "2.0", NULL), ==,
pcmk__scan_double   43 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double("", &result, "2.0", NULL), ==, EINVAL);
pcmk__scan_double   53 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double("asdf", &result, NULL, NULL), ==, EINVAL);
pcmk__scan_double   56 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double("as2.0", &result, NULL, NULL), ==,
pcmk__scan_double   61 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double("asdf", &result, "2.0", NULL), ==,
pcmk__scan_double   65 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double("as2.0", &result, "2.0", NULL), ==,
pcmk__scan_double   75 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double("2.0asdf", &result, NULL, NULL), ==,
pcmk__scan_double   86 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double("0.0", &result, NULL, NULL), ==,
pcmk__scan_double   90 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double("1.0", &result, NULL, NULL), ==,
pcmk__scan_double   94 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double("-1.0", &result, NULL, NULL), ==,
pcmk__scan_double   99 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double(str, &result, NULL, NULL), ==,
pcmk__scan_double  104 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double(str, &result, NULL, NULL), ==,
pcmk__scan_double  120 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double(str, &result, NULL, NULL), ==, EOVERFLOW);
pcmk__scan_double  124 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double(str, &result, NULL, NULL), ==, EOVERFLOW);
pcmk__scan_double  141 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double(str, &result, NULL, NULL), ==,
pcmk__scan_double  147 lib/common/tests/strings/pcmk__scan_double_test.c     g_assert_cmpint(pcmk__scan_double(str, &result, NULL, NULL), ==,
pcmk__scan_double  941 lib/pengine/rules.c             int rc1 = pcmk__scan_double(l_val, &l_val_num, NULL, NULL);
pcmk__scan_double  942 lib/pengine/rules.c             int rc2 = pcmk__scan_double(r_val, &r_val_num, NULL, NULL);