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

/external/clang/lib/AST/
H A DMangle.cpp58 static bool isExternC(const NamedDecl *ND) { function
60 return FD->isExternC();
61 return cast<VarDecl>(ND)->isExternC();
71 if (Context.getLangOpts().CPlusPlus && !isExternC(ND) &&
H A DDecl.cpp1790 bool VarDecl::isExternC() const { function in class:VarDecl
2476 bool FunctionDecl::isExternC() const { function in class:FunctionDecl
3206 if (isExternC()) {
H A DMicrosoftMangle.cpp321 if (VD->isExternC())
H A DItaniumMangle.cpp422 if (VD->isExternC())
/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp235 REGISTER_MATCHER(isExternC);
/external/clang/lib/Index/
H A DUSRGeneration.cpp209 if (!Ctx.getLangOpts().CPlusPlus || D->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.h2357 /// functionDecl(isExternC())
2359 AST_MATCHER(FunctionDecl, isExternC) {
2360 return Node.isExternC();
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp229 Old->isExternC()) {
H A DSemaDeclAttr.cpp4695 if (VD->isExternC())
4698 if (FD->isExternC())
H A DSemaDecl.cpp2416 !(Old->isExternC() && New->isExternC()))
5105 /// an initializer. We can't just call isExternC() here, because that
5127 return D->isExternC();
5768 if (shadowedVar->isExternC()) {
7904 if (NewFD->isExternC() && Previous.empty()) {
8683 VDecl->isExternC())) &&
H A DSemaDeclCXX.cpp11101 if (FnDecl->isExternC()) {
H A DSemaExpr.cpp4320 FDecl->isExternC()) {
/external/clang/include/clang/AST/
H A DDecl.h870 bool isExternC() const;
1809 bool isExternC() const;
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp1494 EXPECT_TRUE(matches("extern \"C\" void f() {}", functionDecl(isExternC())));
1496 functionDecl(isExternC())));
1497 EXPECT_TRUE(notMatches("void f() {}", functionDecl(isExternC())));
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp3100 if (FD->isExternC() && !FD->isMain()) {
3128 if (FD->isExternC() && !FD->isMain()) {

Completed in 584 milliseconds