/third_party/python/Lib/test/ |
H A D | test_userlist.py | 1 # Check every path through every method of UserList 3 from collections import UserList namespace 8 type2test = UserList 22 u = UserList(l) 27 u = UserList("spam") 32 u = UserList("eggs") 35 u2 = u.__radd__(UserList("spam")) 41 u += UserList([0, 1])
|
H A D | test_file.py | 14 from collections import UserList namespace 63 l = UserList([b'1', b'2']) 75 # verify writelines with integers in UserList 76 l = UserList([1,2,3])
|
H A D | test_richcmp.py | 226 from collections import UserList namespace 227 a = UserList() 228 b = UserList()
|
H A D | test_bisect.py | 4 from collections import UserList namespace 119 self.assertEqual(func(UserList(data), elem), expected) 277 for insorted in (list(), UserList()):
|
H A D | test_genericalias.py | 7 defaultdict, deque, OrderedDict, Counter, UserDict, UserList 96 OrderedDict, Counter, UserDict, UserList,
|
H A D | test_fileio.py | 19 from collections import UserList namespace 140 l = UserList([b'123', b'456'])
|
H A D | test_pprint.py | 1193 d = collections.UserList() 1196 d = collections.UserList(zip(words, itertools.count()))
|
H A D | test_weakref.py | 253 L = collections.UserList() 255 self.assertFalse(p, "proxy for empty UserList should be false") 258 self.assertTrue(p, "proxy for non-empty UserList should be true") 266 L2 = collections.UserList(L) 270 L3 = collections.UserList(range(10))
|
H A D | string_tests.py | 8 from collections import UserList namespace 1259 self.checkequal('z', 'a', 'join', UserList(['z']))
|
H A D | test_collections.py | 18 from collections import UserDict, UserString, UserList namespace 59 self._superset_test(UserList, list) 65 obj = UserList()
|
H A D | test_patma.py | 67 class S1(collections.UserList, collections.abc.Mapping): 69 class S2(C, collections.UserList, collections.abc.Mapping): 73 class S4(collections.UserList, dict, C):
|
H A D | test_io.py | 37 from collections import deque, UserList namespace 1786 l = UserList([b'ab', b'cd', b'ef']) 3169 l = UserList(['ab', 'cd', 'ef'])
|
H A D | pickletester.py | 2869 (collections.UserList(), 'UserList', 'UserList'),
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | sandbox.py | 62 from UserList import UserList namespace 65 _mutable_set_types += (UserList,)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | sandbox.py | 68 from UserList import UserList namespace 70 _mutable_set_types += (UserList,)
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | sandbox.py | 62 from UserList import UserList namespace 65 _mutable_set_types += (UserList,)
|
/third_party/python/Lib/collections/ |
H A D | __init__.py | 12 * UserList wrapper around list objects for easier list subclassing 22 'UserList', 1193 ### UserList 1196 class UserList(_collections_abc.MutableSequence): class 1205 elif isinstance(initlist, UserList): 1229 return other.data if isinstance(other, UserList) else other 1250 if isinstance(other, UserList): 1257 if isinstance(other, UserList): 1264 if isinstance(other, UserList): 1319 if isinstance(other, UserList) [all...] |
/third_party/python/Lib/ |
H A D | pprint.py | 544 _dispatch[_collections.UserList.__repr__] = _pprint_user_list
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 1725 using UserList = SmallVector<ExternalUser, 16>; 1775 UserList ExternalUses;
|