Searched refs:right_only (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Lib/ |
D | filecmp.py | 136 self.right_only = map(b.__getitem__, ifilterfalse(a.__contains__, b)) 198 if self.right_only: 199 self.right_only.sort() 200 print 'Only in', self.right, ':', self.right_only 232 common=phase1, left_only=phase1, right_only=phase1,
|
/external/python/cpython3/Lib/ |
D | filecmp.py | 146 self.right_only = list(map(b.__getitem__, filterfalse(a.__contains__, b))) 208 if self.right_only: 209 self.right_only.sort() 210 print('Only in', self.right, ':', self.right_only) 242 common=phase1, left_only=phase1, right_only=phase1,
|
/external/autotest/server/hosts/ |
D | afe_store.py | 112 left_only, right_only, differing = _dict_diff(old_attributes, 116 for key in right_only | differing:
|
/external/python/cpython3/Lib/test/ |
D | test_filecmp.py | 124 self.assertEqual(d.right_only, []) 142 self.assertEqual(d.right_only, ['file2']) 165 self.assertEqual(d.right_only, [])
|
/external/python/cpython2/Lib/test/ |
D | test_filecmp.py | 107 self.assertTrue(d.left_only == d.right_only == []) 117 self.assertTrue(d.right_only == ['file2'])
|
/external/skqp/infra/bots/ |
D | test_utils.py | 51 test.assertEqual(len(dcmp.right_only), 0)
|
/external/skia/infra/bots/ |
D | test_utils.py | 51 test.assertEqual(len(dcmp.right_only), 0)
|
/external/skqp/tests/ |
D | DetermineDomainModeTest.cpp | 271 static const SkRect* right_only(const RectInfo& enclosing, in right_only() function 347 for (auto constraintRectMaker : { left_only, top_only, right_only, in proxy_test()
|
/external/rust/crates/itertools/tests/ |
D | merge_join.rs | 29 fn right_only() { in right_only() function
|
/external/python/cpython2/Doc/library/ |
D | filecmp.rst | 139 .. attribute:: right_only
|
/external/python/cpython3/Doc/library/ |
D | filecmp.rst | 135 .. attribute:: right_only
|