Home
last modified time | relevance | path

Searched refs:isExternC (Results 1 – 17 of 17) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DMangle.cpp58 static bool isExternC(const NamedDecl *ND) { in isExternC() function
60 return FD->isExternC(); in isExternC()
62 return VD->isExternC(); in isExternC()
83 if (Context.getLangOpts().CPlusPlus && !isExternC(ND) && in getCallingConvMangling()
H A DDecl.cpp2113 bool VarDecl::isExternC() const { in isExternC() function in VarDecl
3188 bool FunctionDecl::isExternC() const { in isExternC() function in FunctionDecl
4075 if (isExternC()) { in getMemoryFunctionKind()
H A DItaniumMangle.cpp73 if (VD->isExternC()) in getEffectiveDeclContext()
77 if (FD->isExternC()) in getEffectiveDeclContext()
699 if (VD->isExternC()) in shouldMangleCXXName()
H A DMicrosoftMangle.cpp512 if (VD->isExternC()) in shouldMangleCXXName()
582 if (FD->isExternC() && FD->hasAttr<OverloadableAttr>()) in mangleFunctionEncoding()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp410 REGISTER_MATCHER(isExternC); in RegistryMaps()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp783 if ((D->getName().find("stdin") != StringRef::npos) && D->isExternC()) { in isStdin()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDecl.cpp3114 template<typename T> static bool isExternC(T *D) { return D->isExternC(); } in isExternC() function
3115 static bool isExternC(VarTemplateDecl *) { return false; } in isExternC() function
3144 !(isExternC(Old) && isExternC(New))) in checkUsingShadowRedecl()
6663 return D->isExternC(); in isIncompleteDeclExternC()
6734 return FD->isExternC(); in isDeclExternC()
6736 return VD->isExternC(); in isDeclExternC()
7637 if (shadowedVar->isExternC()) { in CheckShadow()
9887 !(II && II->isStr("printf") && NewFD->isExternC() && in ActOnFunctionDeclarator()
10328 if (!CLinkageMayDiffer && OldFD->isExternC() != NewFD->isExternC()) in areMultiversionVariantFunctionsCompatible()
11016 if (Previous.empty() && NewFD->isExternC()) { in CheckFunctionDeclaration()
[all …]
H A DSema.cpp714 return FD->isExternC(); in isFunctionOrVarDeclExternC()
715 return cast<VarDecl>(ND)->isExternC(); in isFunctionOrVarDeclExternC()
H A DSemaExceptionSpec.cpp356 Old->isExternC()) { in CheckEquivalentExceptionSpec()
H A DSemaDeclAttr.cpp8529 if (VD->isExternC()) in ProcessPragmaWeak()
8532 if (FD->isExternC()) in ProcessPragmaWeak()
H A DSemaExpr.cpp5975 FDecl->isExternC()) { in GatherArgumentsForCall()
16757 if (S.getLangOpts().CPlusPlus && !FD->isExternC()) in funcHasParameterSizeMangling()
H A DSemaDeclCXX.cpp15681 if (FnDecl->isExternC()) { in CheckLiteralOperatorDeclaration()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DUSRGeneration.cpp245 if ((!Ctx.getLangOpts().CPlusPlus || D->isExternC()) && in VisitFunctionDecl()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h4964 AST_POLYMORPHIC_MATCHER(isExternC, AST_POLYMORPHIC_SUPPORTED_TYPES(FunctionDecl, in AST_POLYMORPHIC_MATCHER() argument
4966 return Node.isExternC(); in AST_POLYMORPHIC_MATCHER()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDecl.h1127 bool isExternC() const;
2376 bool isExternC() const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCall.cpp2230 HasStrictReturn &= !FDecl->isExternC(); in ConstructAttributeList()
2233 HasStrictReturn &= !VDecl->isExternC(); in ConstructAttributeList()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp3044 if (FD->isExternC() && !FD->isMain()) { in getFunctionSourceLocation()
3072 if (FD->isExternC() && !FD->isMain()) { in RewriteLineDirective()