HomeSort by relevance Sort by last modified time
    Searched defs:BaseSet (Results 1 - 15 of 15) sorted by null

  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
GenericDomTreeConstruction.h 38 typedef DenseMap<NodeRef, InfoType> BaseSet;
39 df_iterator_dom_storage(BaseSet &Storage) : Storage(Storage) {}
41 typedef typename BaseSet::iterator iterator;
48 BaseSet &Storage;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
GenericDomTreeConstruction.h 38 typedef DenseMap<NodeRef, InfoType> BaseSet;
39 df_iterator_dom_storage(BaseSet &Storage) : Storage(Storage) {}
41 typedef typename BaseSet::iterator iterator;
48 BaseSet &Storage;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
GenericDomTreeConstruction.h 38 typedef DenseMap<NodeRef, InfoType> BaseSet;
39 df_iterator_dom_storage(BaseSet &Storage) : Storage(Storage) {}
41 typedef typename BaseSet::iterator iterator;
48 BaseSet &Storage;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
GenericDomTreeConstruction.h 38 typedef DenseMap<NodeRef, InfoType> BaseSet;
39 df_iterator_dom_storage(BaseSet &Storage) : Storage(Storage) {}
41 typedef typename BaseSet::iterator iterator;
48 BaseSet &Storage;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
GenericDomTreeConstruction.h 38 typedef DenseMap<NodeRef, InfoType> BaseSet;
39 df_iterator_dom_storage(BaseSet &Storage) : Storage(Storage) {}
41 typedef typename BaseSet::iterator iterator;
48 BaseSet &Storage;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
GenericDomTreeConstruction.h 38 typedef DenseMap<NodeRef, InfoType> BaseSet;
39 df_iterator_dom_storage(BaseSet &Storage) : Storage(Storage) {}
41 typedef typename BaseSet::iterator iterator;
48 BaseSet &Storage;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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/python/cpython2/Lib/
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/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
DepthFirstIterator.h 71 typedef SmallPtrSet<NodeRef, SmallSize> BaseSet;
72 typedef typename BaseSet::iterator iterator;
73 std::pair<iterator,bool> insert(NodeRef N) { return BaseSet::insert(N) ; }
75 void insert(IterT Begin, IterT End) { BaseSet::insert(Begin,End); }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
DepthFirstIterator.h 71 typedef SmallPtrSet<NodeRef, SmallSize> BaseSet;
72 typedef typename BaseSet::iterator iterator;
73 std::pair<iterator,bool> insert(NodeRef N) { return BaseSet::insert(N) ; }
75 void insert(IterT Begin, IterT End) { BaseSet::insert(Begin,End); }
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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 29 typedef llvm::SmallPtrSet<const CXXRecordDecl*, 4> BaseSet;
34 const BaseSet &Bases) {
104 BaseSet Classes;
    [all...]

Completed in 357 milliseconds