reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/ImmutableSet.h
 1132   ImmutableSetRef(const ImmutableSetRef &X)
 1142   ImmutableSetRef &operator=(const ImmutableSetRef &X) {
 1142   ImmutableSetRef &operator=(const ImmutableSetRef &X) {
 1152   static ImmutableSetRef getEmptySet(FactoryTy *F) {
 1153     return ImmutableSetRef(0, F);
 1156   ImmutableSetRef add(value_type_ref V) {
 1157     return ImmutableSetRef(Factory->add(Root, V), Factory);
 1160   ImmutableSetRef remove(value_type_ref V) {
 1161     return ImmutableSetRef(Factory->remove(Root, V), Factory);
 1178   bool operator==(const ImmutableSetRef &RHS) const {
 1182   bool operator!=(const ImmutableSetRef &RHS) const {
 1197   using iterator = ImutAVLValueIterator<ImmutableSetRef>;
 1208   static void Profile(FoldingSetNodeID &ID, const ImmutableSetRef &S) {
tools/clang/lib/Analysis/LiveVariables.cpp
  147   llvm::ImmutableSetRef<const Stmt *>
  152   llvm::ImmutableSetRef<const VarDecl *>
  156   llvm::ImmutableSetRef<const BindingDecl *>