HomeSort by relevance Sort by last modified time
    Searched refs:frozenset (Results 126 - 150 of 313) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_marshal.py 190 for constructor in (set, frozenset):
254 for typ in (int, long, float, complex, tuple, list, dict, set, frozenset):
313 self.check_unmarshallable(frozenset(range(size)))
test_collections.py 299 tuple(), frozenset(),
324 tuple(), list(), set(), frozenset(), dict(),
349 iter(set()), iter(frozenset()),
381 tuple(), list(), set(), frozenset(), dict(),
399 tuple(), list(), set(), frozenset(), dict(),
471 for sample in [set, frozenset]:
502 self.assertNotIsInstance(frozenset(), MutableSet)
503 self.assertFalse(issubclass(frozenset, MutableSet))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_marshal.py 190 for constructor in (set, frozenset):
254 for typ in (int, long, float, complex, tuple, list, dict, set, frozenset):
313 self.check_unmarshallable(frozenset(range(size)))
test_collections.py 299 tuple(), frozenset(),
324 tuple(), list(), set(), frozenset(), dict(),
349 iter(set()), iter(frozenset()),
381 tuple(), list(), set(), frozenset(), dict(),
399 tuple(), list(), set(), frozenset(), dict(),
471 for sample in [set, frozenset]:
502 self.assertNotIsInstance(frozenset(), MutableSet)
503 self.assertFalse(issubclass(frozenset, MutableSet))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_collections.py 299 tuple(), frozenset(),
324 tuple(), list(), set(), frozenset(), dict(),
349 iter(set()), iter(frozenset()),
381 tuple(), list(), set(), frozenset(), dict(),
399 tuple(), list(), set(), frozenset(), dict(),
471 for sample in [set, frozenset]:
502 self.assertNotIsInstance(frozenset(), MutableSet)
503 self.assertFalse(issubclass(frozenset, MutableSet))
    [all...]
test_marshal.py 190 for constructor in (set, frozenset):
254 for typ in (int, long, float, complex, tuple, list, dict, set, frozenset):
  /external/python/cpython2/Lib/
pprint.py 182 (issubclass(typ, frozenset) and r is frozenset.__repr__)
pipes.py 265 _safechars = frozenset(string.ascii_letters + string.digits + '@%_-+=:,./')
re.py 205 _alphanum = frozenset(
  /external/python/cpython2/Lib/test/
test_collections.py 347 tuple(), frozenset(),
372 tuple(), list(), set(), frozenset(), dict(),
397 iter(set()), iter(frozenset()),
429 tuple(), list(), set(), frozenset(), dict(),
447 tuple(), list(), set(), frozenset(), dict(),
519 for sample in [set, frozenset]:
550 self.assertNotIsInstance(frozenset(), MutableSet)
551 self.assertFalse(issubclass(frozenset, MutableSet))
    [all...]
test_sys.py 705 # frozenset
720 check(frozenset(sample), s)
723 check(frozenset(sample), s + newsize*calcsize('lP'))
794 class FS(frozenset):
796 check(FS(), frozenset(), '3P')
  /external/tensorflow/tensorflow/contrib/graph_editor/
reroute.py 185 cannot_modify = frozenset(_util.make_list_of_op(cannot_modify))
187 can_modify = frozenset(_util.make_list_of_op(can_modify))
subgraph.py 203 all_tensors = frozenset(inputs + outputs + list(insides))
596 ops_set = frozenset(self._ops)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_collections.py 299 tuple(), frozenset(),
324 tuple(), list(), set(), frozenset(), dict(),
349 iter(set()), iter(frozenset()),
381 tuple(), list(), set(), frozenset(), dict(),
399 tuple(), list(), set(), frozenset(), dict(),
471 for sample in [set, frozenset]:
502 self.assertNotIsInstance(frozenset(), MutableSet)
503 self.assertFalse(issubclass(frozenset, MutableSet))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_collections.py 299 tuple(), frozenset(),
324 tuple(), list(), set(), frozenset(), dict(),
349 iter(set()), iter(frozenset()),
381 tuple(), list(), set(), frozenset(), dict(),
399 tuple(), list(), set(), frozenset(), dict(),
471 for sample in [set, frozenset]:
502 self.assertNotIsInstance(frozenset(), MutableSet)
503 self.assertFalse(issubclass(frozenset, MutableSet))
    [all...]
  /tools/tradefederation/core/atest/test_finders/
test_finder_utils.py 120 return parts[0], frozenset()
122 return parts[0], frozenset(parts[1].split(','))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
re.py 205 _alphanum = frozenset(
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pipes.py 267 _safechars = frozenset(string.ascii_letters + string.digits + '@%_-+=:,./')
  /external/autotest/client/cros/
network_chroot.py 35 BIND_ROOT_WRITABLE_DIRECTORIES = frozenset(('dev/pts',))
  /external/autotest/server/cros/dynamic_suite/
host_spec.py 259 return frozenset({a for a in iter_a} | {b for b in iter_b})
  /external/libmojo/third_party/catapult/devil/devil/utils/
cmd_helper.py 23 _SafeShellChars = frozenset(string.ascii_letters + string.digits + '@%_-+=:,./')
  /external/python/cpython3/Lib/test/
test_gdb.py 362 # PYTHONHASHSEED is need to get the exact frozenset item order
378 self.assertGdbRepr(frozenset(), "frozenset()")
379 self.assertGdbRepr(frozenset(['a']), "frozenset({'a'})")
380 # PYTHONHASHSEED is need to get the exact frozenset item order
382 self.assertGdbRepr(frozenset(['a', 'b']), "frozenset({'a', 'b'})")
383 self.assertGdbRepr(frozenset([4, 5, 6]), "frozenset({4, 5, 6})"
    [all...]
test_strptime.py 167 test_locale.timezone = (frozenset(), frozenset())
182 locale_time.timezone = (frozenset(("utc", "gmt",
184 frozenset("Tokyo (daylight time)"))
  /external/scapy/scapy/layers/tls/crypto/
cipher_block.py 191 key_sizes = frozenset([128])
  /external/skia/bench/
check_bench_regressions.py 84 hash(frozenset(self.settings.iteritems())))

Completed in 813 milliseconds

1 2 3 4 56 7 8 91011>>