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

References

tools/clang/include/clang/Sema/Scope.h
  348       assert(FnS->getParent() && "TUScope not created?");
  349       return FnS->getParent()->isClassScope();
  357     for (const Scope *S = this; S; S = S->getParent()) {
  395     for (const Scope *S = this; S; S = S->getParent()) {
  432     const Scope *P = getParent();
tools/clang/lib/Parse/ParseDeclCXX.cpp
 3182     for (const Scope *S = getCurScope(); S; S = S->getParent()) {
tools/clang/lib/Sema/Scope.cpp
  102     S = S->getParent();
  187   if (const Scope *Parent = getParent())
tools/clang/lib/Sema/SemaExprMember.cpp
  930   for (; S != S->getFnParent(); S = S->getParent()) {