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

References

tools/clang/tools/extra/clangd/FindTarget.cpp
  747   for (unsigned I = 0; I < RS.S.size(); ++I) {
  748     if (RS.S.test(I)) {
tools/clang/tools/extra/clangd/FindTarget.h
  148   DeclRelationSet(DeclRelation R) { S.set(static_cast<unsigned>(R)); }
  150   explicit operator bool() const { return S.any(); }
  152     return L.S & R.S;
  152     return L.S & R.S;
  155     return L.S | R.S;
  155     return L.S | R.S;
  158     return L.S == R.S;
  158     return L.S == R.S;
  160   friend DeclRelationSet operator~(DeclRelationSet R) { return ~R.S; }
  162     S |= Other.S;
  162     S |= Other.S;
  166     S &= Other.S;
  166     S &= Other.S;