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

References

tools/clang/lib/AST/ASTImporter.cpp
 3891       if (FoundMethod->isInstanceMethod() != D->isInstanceMethod())
 3896                                              FoundMethod->getReturnType())) {
 3899             << FoundMethod->getReturnType();
 3900         Importer.ToDiag(FoundMethod->getLocation(),
 3908       if (D->param_size() != FoundMethod->param_size()) {
 3911           << D->param_size() << FoundMethod->param_size();
 3912         Importer.ToDiag(FoundMethod->getLocation(),
 3921              PEnd = D->param_end(), FoundP = FoundMethod->param_begin();
 3938       if (D->isVariadic() != FoundMethod->isVariadic()) {
 3941         Importer.ToDiag(FoundMethod->getLocation(),
 3949       return Importer.MapImported(D, FoundMethod);