OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BaseSet
(Results
1 - 3
of
3
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sets.py
19
BaseSet
-- All the operations common to both mutable and immutable
23
Set -- Mutable sets, subclass of
BaseSet
; not hashable.
25
ImmutableSet -- Immutable sets, subclass of
BaseSet
; hashable.
59
__all__ = ['
BaseSet
', 'Set', 'ImmutableSet']
65
class
BaseSet
(object):
75
if self.__class__ is
BaseSet
:
76
raise TypeError, ("
BaseSet
is an abstract class. "
132
if isinstance(other,
BaseSet
):
138
if isinstance(other,
BaseSet
):
183
if not isinstance(other,
BaseSet
)
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sets.py
19
BaseSet
-- All the operations common to both mutable and immutable
23
Set -- Mutable sets, subclass of
BaseSet
; not hashable.
25
ImmutableSet -- Immutable sets, subclass of
BaseSet
; hashable.
59
__all__ = ['
BaseSet
', 'Set', 'ImmutableSet']
65
class
BaseSet
(object):
75
if self.__class__ is
BaseSet
:
76
raise TypeError, ("
BaseSet
is an abstract class. "
132
if isinstance(other,
BaseSet
):
138
if isinstance(other,
BaseSet
):
183
if not isinstance(other,
BaseSet
)
[
all
...]
/external/clang/lib/Sema/
SemaExprMember.cpp
27
typedef llvm::SmallPtrSet<const CXXRecordDecl*, 4>
BaseSet
;
29
const
BaseSet
&Bases = *reinterpret_cast<const
BaseSet
*>(BasesPtr);
36
const
BaseSet
&Bases) {
106
BaseSet
Classes;
[
all
...]
Completed in 683 milliseconds