Searched refs:knownkey (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/test/ |
D | mapping_tests.py | 53 knownkey = list(self.other.keys())[0] 54 self.assertRaises(KeyError, lambda:d[knownkey]) 86 knownkey, knownvalue = next(iter(self.other.items())) 88 self.assertEqual(d.get(knownkey, knownvalue), knownvalue) 89 self.assertNotIn(knownkey, d) 112 knownkey, knownvalue = next(iter(self.other.items())) 115 self.assertEqual(d.setdefault(knownkey, knownvalue), knownvalue) 116 self.assertEqual(d[knownkey], knownvalue) 118 self.assertEqual(d.pop(knownkey), knownvalue) 119 self.assertNotIn(knownkey, d) [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/curl/ |
D | gstcurlsshsink.c | 76 const struct curl_khkey *knownkey, const struct curl_khkey *foundkey, 480 const struct curl_khkey *knownkey, /* known - key from known_hosts */ in curl_ssh_sink_sshkey_cb() argument
|