Home
last modified time | relevance | path

Searched refs:UserList (Results 1 - 19 of 19) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_userlist.py1 # 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 Dtest_file.py14 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 Dtest_richcmp.py226 from collections import UserList namespace
227 a = UserList()
228 b = UserList()
H A Dtest_bisect.py4 from collections import UserList namespace
119 self.assertEqual(func(UserList(data), elem), expected)
277 for insorted in (list(), UserList()):
H A Dtest_genericalias.py7 defaultdict, deque, OrderedDict, Counter, UserDict, UserList
96 OrderedDict, Counter, UserDict, UserList,
H A Dtest_fileio.py19 from collections import UserList namespace
140 l = UserList([b'123', b'456'])
H A Dtest_pprint.py1193 d = collections.UserList()
1196 d = collections.UserList(zip(words, itertools.count()))
H A Dtest_weakref.py253 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 Dstring_tests.py8 from collections import UserList namespace
1259 self.checkequal('z', 'a', 'join', UserList(['z']))
H A Dtest_collections.py18 from collections import UserDict, UserString, UserList namespace
59 self._superset_test(UserList, list)
65 obj = UserList()
H A Dtest_patma.py67 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 Dtest_io.py37 from collections import deque, UserList namespace
1786 l = UserList([b'ab', b'cd', b'ef'])
3169 l = UserList(['ab', 'cd', 'ef'])
H A Dpickletester.py2869 (collections.UserList(), 'UserList', 'UserList'),
/third_party/node/deps/v8/third_party/jinja2/
H A Dsandbox.py62 from UserList import UserList namespace
65 _mutable_set_types += (UserList,)
/third_party/node/tools/inspector_protocol/jinja2/
H A Dsandbox.py68 from UserList import UserList namespace
70 _mutable_set_types += (UserList,)
/third_party/skia/third_party/externals/jinja2/
H A Dsandbox.py62 from UserList import UserList namespace
65 _mutable_set_types += (UserList,)
/third_party/python/Lib/collections/
H A D__init__.py12 * 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 Dpprint.py544 _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 DSLPVectorizer.cpp1725 using UserList = SmallVector<ExternalUser, 16>;
1775 UserList ExternalUses;

Completed in 43 milliseconds