Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDMangle.cpp59 static bool isExternC(const NamedDecl *ND) { in isExternC() function
61 return FD->isExternC(); in isExternC()
62 return cast<VarDecl>(ND)->isExternC(); in isExternC()
74 if (Context.getLangOpts().CPlusPlus && !isExternC(ND) && in getCallingConvMangling()
HDDecl.cpp1881 bool VarDecl::isExternC() const { in isExternC() function in VarDecl
2537 bool FunctionDecl::isExternC() const { in isExternC() function in FunctionDecl
3288 if (isExternC()) { in getMemoryFunctionKind()
HDItaniumMangle.cpp73 if (VD->isExternC()) in getEffectiveDeclContext()
77 if (FD->isExternC()) in getEffectiveDeclContext()
442 if (VD->isExternC()) in shouldMangleCXXName()
HDMicrosoftMangle.cpp356 if (VD->isExternC()) in shouldMangleCXXName()
424 if (FD->isExternC() && FD->hasAttr<OverloadableAttr>()) in mangleFunctionEncoding()
/NextBSD/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/
HDRegistry.cpp250 REGISTER_MATCHER(isExternC); in RegistryMaps()
/NextBSD/contrib/llvm/tools/clang/include/clang/ASTMatchers/
HDASTMatchers.h2729 AST_MATCHER(FunctionDecl, isExternC) { in AST_MATCHER() argument
2730 return Node.isExternC(); in AST_MATCHER()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
HDGenericTaintChecker.cpp597 if ((D->getName().find("stdin") != StringRef::npos) && D->isExternC()) in isStdin()
/NextBSD/contrib/llvm/tools/clang/lib/Index/
HDUSRGeneration.cpp211 if (!Ctx.getLangOpts().CPlusPlus || D->isExternC()) in VisitFunctionDecl()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaDecl.cpp2580 template<typename T> static bool isExternC(T *D) { return D->isExternC(); } in isExternC() function
2581 static bool isExternC(VarTemplateDecl *) { return false; } in isExternC() function
2610 !(isExternC(Old) && isExternC(New))) in checkUsingShadowRedecl()
5505 return D->isExternC(); in isIncompleteDeclExternC()
5581 return (FD->getDeclContext()->isTranslationUnit() || FD->isExternC()) && in isDeclTUScopedExternallyVisible()
5584 return (VD->getDeclContext()->isTranslationUnit() || VD->isExternC()) && in isDeclTUScopedExternallyVisible()
6172 if (shadowedVar->isExternC()) { in CheckShadow()
8305 if (Previous.empty() && NewFD->isExternC()) { in CheckFunctionDeclaration()
9304 VDecl->isExternC())) && in AddInitializerToDecl()
HDSemaExceptionSpec.cpp260 Old->isExternC()) { in CheckEquivalentExceptionSpec()
HDSemaDeclAttr.cpp5262 if (VD->isExternC()) in ProcessPragmaWeak()
5265 if (FD->isExternC()) in ProcessPragmaWeak()
HDSemaDeclCXX.cpp11742 if (FnDecl->isExternC()) { in CheckLiteralOperatorDeclaration()
HDSemaExpr.cpp4505 FDecl->isExternC()) { in GatherArgumentsForCall()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDDecl.h935 bool isExternC() const;
1910 bool isExternC() const;
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
HDRewriteModernObjC.cpp3082 if (FD->isExternC() && !FD->isMain()) { in getFunctionSourceLocation()
3110 if (FD->isExternC() && !FD->isMain()) { in RewriteLineDirective()