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

References

tools/clang/lib/AST/ASTImporter.cpp
 3883   if (Error Err = ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
 3891       if (FoundMethod->isInstanceMethod() != D->isInstanceMethod())
 3895       if (!Importer.IsStructurallyEquivalent(D->getReturnType(),
 3898             << D->isInstanceMethod() << Name << D->getReturnType()
 3898             << D->isInstanceMethod() << Name << D->getReturnType()
 3902           << D->isInstanceMethod() << Name;
 3908       if (D->param_size() != FoundMethod->param_size()) {
 3910           << D->isInstanceMethod() << Name
 3911           << D->param_size() << FoundMethod->param_size();
 3914           << D->isInstanceMethod() << Name;
 3920       for (ObjCMethodDecl::param_iterator P = D->param_begin(),
 3921              PEnd = D->param_end(), FoundP = FoundMethod->param_begin();
 3927             << D->isInstanceMethod() << Name
 3938       if (D->isVariadic() != FoundMethod->isVariadic()) {
 3940           << D->isInstanceMethod() << Name;
 3943           << D->isInstanceMethod() << Name;
 3949       return Importer.MapImported(D, FoundMethod);
 3957       D->getEndLoc(), D->getReturnType(), D->getReturnTypeSourceInfo()))
 3957       D->getEndLoc(), D->getReturnType(), D->getReturnTypeSourceInfo()))
 3957       D->getEndLoc(), D->getReturnType(), D->getReturnTypeSourceInfo()))
 3964           ToMethod, D, Importer.getToContext(), Loc,
 3966           ToReturnTypeSourceInfo, DC, D->isInstanceMethod(), D->isVariadic(),
 3966           ToReturnTypeSourceInfo, DC, D->isInstanceMethod(), D->isVariadic(),
 3967           D->isPropertyAccessor(), D->isImplicit(), D->isDefined(),
 3967           D->isPropertyAccessor(), D->isImplicit(), D->isDefined(),
 3967           D->isPropertyAccessor(), D->isImplicit(), D->isDefined(),
 3968           D->getImplementationControl(), D->hasRelatedResultType()))
 3968           D->getImplementationControl(), D->hasRelatedResultType()))
 3976   for (auto *FromP : D->parameters()) {
 3990   D->getSelectorLocs(FromSelLocs);