HomeSort by: relevance | last modified time | path
    Searched refs:ImmutableSetRef (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ImmutableSet.h 1102 class ImmutableSetRef {
1118 ImmutableSetRef(TreeTy *R, FactoryTy *F) : Root(R), Factory(F) {}
1120 static ImmutableSetRef getEmptySet(FactoryTy *F) {
1121 return ImmutableSetRef(0, F);
1124 ImmutableSetRef add(value_type_ref V) {
1125 return ImmutableSetRef(Factory->add(Root.get(), V), Factory);
1128 ImmutableSetRef remove(value_type_ref V) {
1129 return ImmutableSetRef(Factory->remove(Root.get(), V), Factory);
1144 bool operator==(const ImmutableSetRef &RHS) const {
1148 bool operator!=(const ImmutableSetRef &RHS) const
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
LiveVariables.cpp 99 llvm::ImmutableSetRef<const Expr *> SSetRefA(
104 llvm::ImmutableSetRef<const VarDecl *>
108 llvm::ImmutableSetRef<const BindingDecl *>

Completed in 23 milliseconds