HomeSort by relevance Sort by last modified time
    Searched refs:issubset (Results 1 - 12 of 12) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_weakrefset.py 155 def issubset(self, other): member in class:WeakSet
156 return self.data.issubset(ref(item) for item in other)
157 __le__ = issubset
sets.py 289 def issubset(self, other): member in class:BaseSet
308 __le__ = issubset
313 return len(self) < len(other) and self.issubset(other)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_weakrefset.py 155 def issubset(self, other): member in class:WeakSet
156 return self.data.issubset(ref(item) for item in other)
157 __le__ = issubset
sets.py 289 def issubset(self, other): member in class:BaseSet
308 __le__ = issubset
313 return len(self) < len(other) and self.issubset(other)
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
generate_global_constructors.py 165 if not exposed_global_names.issubset(known_global_names):
  /external/chromium_org/third_party/bintrees/bintrees/
treemixin.py 131 * issubset(S) -> True if every element in T is in S
624 def issubset(self, tree): member in class:TreeMixin
625 """ x.issubset(tree) -> True if every element in x is in tree """
627 return thiskeys.issubset(frozenset(tree.keys()))
630 """ x.issubset(tree) -> True if every element in tree is in x """
  /external/chromium_org/tools/checkperms/
checkperms.py 213 assert all([set(path).issubset(VALID_CHARS) for path in paths])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_weakset.py 163 self.assertTrue(set('a').issubset('abc'))
165 self.assertFalse(set('a').issubset('cbs'))
test_set.py 224 self.assertTrue(set('a').issubset('abc'))
226 self.assertFalse(set('a').issubset('cbs'))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_weakset.py 163 self.assertTrue(set('a').issubset('abc'))
165 self.assertFalse(set('a').issubset('cbs'))
test_set.py 224 self.assertTrue(set('a').issubset('abc'))
226 self.assertFalse(set('a').issubset('cbs'))
    [all...]
  /external/chromium_org/v8/tools/
run-tests.py 288 if not set(VARIANTS).issubset(VARIANT_FLAGS.keys()):

Completed in 687 milliseconds