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

References

tools/clang/include/clang/Sema/Lookup.h
  184       : ResultKind(std::move(Other.ResultKind)),
  185         Ambiguity(std::move(Other.Ambiguity)), Decls(std::move(Other.Decls)),
  185         Ambiguity(std::move(Other.Ambiguity)), Decls(std::move(Other.Decls)),
  186         Paths(std::move(Other.Paths)),
  187         NamingClass(std::move(Other.NamingClass)),
  188         BaseObjectType(std::move(Other.BaseObjectType)),
  189         SemaPtr(std::move(Other.SemaPtr)), NameInfo(std::move(Other.NameInfo)),
  189         SemaPtr(std::move(Other.SemaPtr)), NameInfo(std::move(Other.NameInfo)),
  190         NameContextRange(std::move(Other.NameContextRange)),
  191         LookupKind(std::move(Other.LookupKind)), IDNS(std::move(Other.IDNS)),
  191         LookupKind(std::move(Other.LookupKind)), IDNS(std::move(Other.IDNS)),
  192         Redecl(std::move(Other.Redecl)),
  193         ExternalRedecl(std::move(Other.ExternalRedecl)),
  194         HideTags(std::move(Other.HideTags)),
  195         Diagnose(std::move(Other.Diagnose)),
  196         AllowHidden(std::move(Other.AllowHidden)),
  197         Shadowed(std::move(Other.Shadowed)),
  198         TemplateNameLookup(std::move(Other.TemplateNameLookup)) {
  199     Other.Paths = nullptr;
  200     Other.Diagnose = false;