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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_weakset.py 3 from weakref import proxy, ref, WeakSet
47 self.ab_weakset = WeakSet(self.ab_items)
48 self.abcde_weakset = WeakSet(self.abcde_items)
49 self.def_weakset = WeakSet(self.def_items)
50 self.s = WeakSet(self.items)
53 self.fs = WeakSet([self.obj])
56 weaksetmethods = dir(WeakSet)
61 "WeakSet missing method " + method)
64 self.assertRaises(TypeError, WeakSet, [], 2)
85 self.assertEqual(self.s, WeakSet(self.items)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_weakset.py 3 from weakref import proxy, ref, WeakSet
47 self.ab_weakset = WeakSet(self.ab_items)
48 self.abcde_weakset = WeakSet(self.abcde_items)
49 self.def_weakset = WeakSet(self.def_items)
50 self.s = WeakSet(self.items)
53 self.fs = WeakSet([self.obj])
56 weaksetmethods = dir(WeakSet)
61 "WeakSet missing method " + method)
64 self.assertRaises(TypeError, WeakSet, [], 2)
85 self.assertEqual(self.s, WeakSet(self.items)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
abc.py 8 from _weakrefset import WeakSet
99 cls._abc_registry = WeakSet()
100 cls._abc_cache = WeakSet()
101 cls._abc_negative_cache = WeakSet()
156 cls._abc_negative_cache = WeakSet()
_weakrefset.py 1 # Access WeakSet through the weakref module.
7 __all__ = ['WeakSet']
35 class WeakSet(object):
101 raise KeyError('pop from empty WeakSet')
weakref.py 23 from _weakrefset import WeakSet
32 "CallableProxyType", "ProxyTypes", "WeakValueDictionary", 'WeakSet']
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
abc.py 8 from _weakrefset import WeakSet
99 cls._abc_registry = WeakSet()
100 cls._abc_cache = WeakSet()
101 cls._abc_negative_cache = WeakSet()
156 cls._abc_negative_cache = WeakSet()
_weakrefset.py 1 # Access WeakSet through the weakref module.
7 __all__ = ['WeakSet']
35 class WeakSet(object):
101 raise KeyError('pop from empty WeakSet')
weakref.py 23 from _weakrefset import WeakSet
32 "CallableProxyType", "ProxyTypes", "WeakValueDictionary", 'WeakSet']
  /external/chromium_org/v8/test/mjsunit/harmony/
collections.js 38 TestValidSetCalls(new WeakSet);
89 TestSet(new WeakSet, new Object);
190 TestEnumerable(WeakSet);
213 assertThrows(function() { WeakSet(); }, TypeError);
265 var s = new WeakSet;
266 assertTrue(s instanceof WeakSet);
267 assertTrue(WeakSet.prototype.add instanceof Function)
268 assertTrue(WeakSet.prototype.has instanceof Function)
269 assertTrue(WeakSet.prototype.delete instanceof Function)
270 assertTrue(WeakSet.prototype.clear instanceof Function
    [all...]
  /external/chromium_org/v8/src/
collection.js 37 var $WeakSet = global.WeakSet;
332 // Harmony WeakSet
338 throw MakeTypeError('constructor_not_function', ['WeakSet']);
346 ['WeakSet.prototype.add', this]);
358 ['WeakSet.prototype.has', this]);
370 ['WeakSet.prototype.delete', this]);
382 ['WeakSet.prototype.clear', this]);
394 %SetCode($WeakSet, WeakSetConstructor);
395 %FunctionSetPrototype($WeakSet, new $Object())
    [all...]
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 

Completed in 878 milliseconds