Lines Matching full:blue
85 { "", "sky=blue", -1 },
86 { "", "sky!=blue", 1 },
100 { "groan=blue", "groan=yellow", -1 },
101 { "groan=blue", "?groan=yellow", 0 },
102 { "groan=blue", "groan!=yellow", 1 },
103 { "groan=blue", "?groan!=yellow", 1 },
117 { "n=0, sky=blue", "?n=0, sky=blue", 2 },
118 { "n=1, sky=blue", "?n=0, sky=blue", 1 },
217 { "", "colour=blue", "colour=blue" },
218 { "colour=blue", "", "colour=blue" },
219 { "colour=red", "colour=blue", "colour=blue" },
220 { "clouds=pink, urn=red", "urn=blue, colour=green",
221 "urn=blue, colour=green, clouds=pink" },
222 { "pot=gold", "urn=blue", "pot=gold, urn=blue" },
266 OSSL_PROPERTY_LIST *red = NULL, *blue = NULL, *blue2 = NULL; in test_property_defn_cache() local
270 && add_property_names("red", "blue", NULL) in test_property_defn_cache()
272 && TEST_ptr(blue = ossl_parse_property(NULL, "blue")) in test_property_defn_cache()
273 && TEST_ptr_ne(red, blue) in test_property_defn_cache()
279 ossl_property_free(blue); in test_property_defn_cache()
280 blue = NULL; in test_property_defn_cache()
283 r = r && TEST_true(ossl_prop_defn_set(NULL, "blue", &blue)); in test_property_defn_cache()
285 ossl_property_free(blue); in test_property_defn_cache()
286 blue = NULL; in test_property_defn_cache()
290 && TEST_ptr_eq(ossl_prop_defn_get(NULL, "blue"), blue) in test_property_defn_cache()
291 && TEST_ptr(blue2 = ossl_parse_property(NULL, "blue")) in test_property_defn_cache()
292 && TEST_ptr_ne(blue2, blue) in test_property_defn_cache()
293 && TEST_true(ossl_prop_defn_set(NULL, "blue", &blue2)); in test_property_defn_cache()
299 r = r && TEST_ptr_eq(blue2, blue) in test_property_defn_cache()
300 && TEST_ptr_eq(ossl_prop_defn_get(NULL, "blue"), blue); in test_property_defn_cache()
404 { &fake_prov1, 1, "fast, colour=blue", "b" }, in test_property()
406 { &fake_prov2, 9, "sky=blue, furry", "c" }, in test_property()
408 { &fake_prov2, 6, "sky.colour=blue, sky=green, old.data", "e" }, in test_property()
419 { &fake_prov1, 1, "colour=blue, fast", "b" }, in test_property()
420 { &fake_prov1, 1, "colour=blue", "b" }, in test_property()
422 { &fake_prov2, 6, "sky.colour=blue", "e" }, in test_property()
424 { &fake_prov2, 9, "furry=yes, sky=blue", "c" }, in test_property()