Home
last modified time | relevance | path

Searched refs:BaseSet (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/
Dsets.py65 class BaseSet(object): class
75 if self.__class__ is BaseSet:
132 if isinstance(other, BaseSet):
138 if isinstance(other, BaseSet):
183 if not isinstance(other, BaseSet):
201 if not isinstance(other, BaseSet):
210 if not isinstance(other, BaseSet):
224 if not isinstance(other, BaseSet):
252 if not isinstance(other, BaseSet):
327 if not isinstance(other, BaseSet):
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DDepthFirstIterator.h71 using BaseSet = SmallPtrSet<NodeRef, SmallSize>; member
72 using iterator = typename BaseSet::iterator;
74 std::pair<iterator,bool> insert(NodeRef N) { return BaseSet::insert(N); } in insert()
76 void insert(IterT Begin, IterT End) { BaseSet::insert(Begin,End); } in insert()
/external/python/cpython2/Doc/library/
Dsets.rst34 derive from :class:`BaseSet`, an abstract class useful for determining whether
35 something is a set: ``isinstance(obj, BaseSet)``.
269 * There is no equivalent to :class:`BaseSet`. Instead, use ``isinstance(x,
/external/clang/lib/Sema/
DSemaExprMember.cpp29 typedef llvm::SmallPtrSet<const CXXRecordDecl*, 4> BaseSet; typedef
34 const BaseSet &Bases) { in isProvablyNotDerivedFrom()
104 BaseSet Classes; in ClassifyImplicitMemberAccess()
/external/python/cpython2/Misc/
DHISTORY5499 or when you need to use sets as dict keys, and a class BaseSet which
/external/python/cpython3/Misc/
DHISTORY22883 or when you need to use sets as dict keys, and a class BaseSet which