Searched refs:isExternC (Results 1 - 16 of 16) sorted by relevance

/external/clang/lib/AST/
H A DMangle.cpp59 static bool isExternC(const NamedDecl *ND) { function
61 return FD->isExternC();
62 return cast<VarDecl>(ND)->isExternC();
74 if (Context.getLangOpts().CPlusPlus && !isExternC(ND) &&
H A DMicrosoftMangle.cpp399 if (VD->isExternC())
462 if (FD->isExternC() && FD->hasAttr<OverloadableAttr>())
H A DDecl.cpp1896 bool VarDecl::isExternC() const { function in class:VarDecl
2623 bool FunctionDecl::isExternC() const { function in class:FunctionDecl
3412 if (isExternC()) {
H A DItaniumMangle.cpp75 if (VD->isExternC())
79 if (FD->isExternC())
598 if (VD->isExternC())
/external/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp839 EXPECT_TRUE(matches("extern \"C\" void f() {}", functionDecl(isExternC())));
841 functionDecl(isExternC())));
842 EXPECT_TRUE(notMatches("void f() {}", functionDecl(isExternC())));
/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp302 REGISTER_MATCHER(isExternC);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp597 if ((D->getName().find("stdin") != StringRef::npos) && D->isExternC())
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3298 /// functionDecl(isExternC())
3300 AST_MATCHER(FunctionDecl, isExternC) {
3301 return Node.isExternC();
/external/clang/lib/Index/
H A DUSRGeneration.cpp221 if ((!Ctx.getLangOpts().CPlusPlus || D->isExternC()) &&
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp266 Old->isExternC()) {
H A DSemaDecl.cpp2671 template<typename T> static bool isExternC(T *D) { return D->isExternC(); } function
2672 static bool isExternC(VarTemplateDecl *) { return false; } function
2701 !(isExternC(Old) && isExternC(New)))
5738 /// an initializer. We can't just call isExternC() here, because that
5765 return D->isExternC();
5841 return FD->isExternC();
5843 return VD->isExternC();
6568 if (shadowedVar->isExternC()) {
[all...]
H A DSemaDeclAttr.cpp6094 if (VD->isExternC())
6097 if (FD->isExternC())
H A DSemaDeclCXX.cpp11966 if (FnDecl->isExternC()) {
H A DSemaExpr.cpp4878 FDecl->isExternC()) {
/external/clang/include/clang/AST/
H A DDecl.h1011 bool isExternC() const;
1958 bool isExternC() const;
/external/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp3043 if (FD->isExternC() && !FD->isMain()) {
3071 if (FD->isExternC() && !FD->isMain()) {

Completed in 1490 milliseconds