/external/clang/lib/StaticAnalyzer/Checkers/ |
D | VirtualCallChecker.cpp | 118 void ReportVirtualCall(const CallExpr *CE, bool isPure); 165 ReportVirtualCall(CE, MD->isPure()); in VisitCXXMemberCallExpr() 170 void WalkAST::ReportVirtualCall(const CallExpr *CE, bool isPure) { in ReportVirtualCall() argument 194 if (isPure) { in ReportVirtualCall()
|
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
D | UseEqualsDeleteCheck.cpp | 44 anyOf(PrivateSpecialFn, hasAnyBody(stmt()), isPure(), in registerMatchers()
|
/external/llvm-project/clang-tools-extra/clang-tidy/fuchsia/ |
D | MultipleInheritanceCheck.cpp | 58 return M->isUserProvided() && !M->isPure() && !M->isStatic(); in isCurrentClassInterface()
|
/external/clang/include/clang/Basic/ |
D | Builtins.h | 98 bool isPure(unsigned ID) const { in isPure() function
|
/external/llvm-project/clang/include/clang/Basic/ |
D | Builtins.h | 98 bool isPure(unsigned ID) const { in isPure() function
|
/external/llvm-project/clang/lib/AST/ |
D | VTableBuilder.cpp | 424 if (!Overrider.Method->isPure()) in dump() 1258 if (Overrider.Method->isPure()) in ComputeThisAdjustment() 1603 if (!OverriderMD->isPure()) { in AddMethods() 1955 if (MD->isPure()) in dumpLayout() 2006 if (DD->isPure()) in dumpLayout() 2035 if (MD->isPure()) in dumpLayout() 3075 if (!FinalOverriderMD->isPure()) { in AddMethods() 3176 if (MD->isPure()) in dumpLayout() 3195 if (DD->isPure()) in dumpLayout()
|
D | DeclCXX.cpp | 1986 if (SO->second.front().Method->isPure()) { in completeDefinition() 2208 return isPure() ? nullptr : this; in getDevirtualizedMethod() 2237 if (DevirtualizedMethod->isPure()) in getDevirtualizedMethod()
|
D | ASTStructuralEquivalence.cpp | 1279 Method1->isPure() == Method2->isPure() && in IsStructurallyEquivalent()
|
D | ODRHash.cpp | 557 AddBoolean(Function->isPure()); in AddFunctionDecl()
|
D | RecordLayoutBuilder.cpp | 2237 if (MD->isPure()) in computeKeyFunction() 3146 !isa<CXXDestructorDecl>(MD) && !MD->isPure()) in computeVtorDispSet()
|
D | DeclPrinter.cpp | 755 if (D->isPure()) in VisitFunctionDecl()
|
/external/clang/lib/AST/ |
D | VTableBuilder.cpp | 425 if (!Overrider.Method->isPure()) in dump() 1261 if (Overrider.Method->isPure()) in ComputeThisAdjustment() 1603 if (!OverriderMD->isPure()) { in AddMethods() 1949 if (MD->isPure()) in dumpLayout() 2000 if (DD->isPure()) in dumpLayout() 2029 if (MD->isPure()) in dumpLayout() 3052 if (!FinalOverriderMD->isPure()) { in AddMethods() 3153 if (MD->isPure()) in dumpLayout() 3172 if (DD->isPure()) in dumpLayout()
|
D | RecordLayoutBuilder.cpp | 2016 if (MD->isPure()) in computeKeyFunction() 2895 if (MD->isVirtual() && !isa<CXXDestructorDecl>(MD) && !MD->isPure()) in computeVtorDispSet()
|
D | DeclPrinter.cpp | 633 if (D->isPure()) in VisitFunctionDecl()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | VirtualCallChecker.cpp | 119 bool IsPure = MD->isPure(); in checkPreCall()
|
/external/llvm-project/clang/lib/AST/Interp/ |
D | Interp.cpp | 394 if (!MD->isPure()) in CheckPure()
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | Registry.cpp | 323 REGISTER_MATCHER(isPure); in RegistryMaps()
|
/external/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
D | Registry.cpp | 419 REGISTER_MATCHER(isPure); in RegistryMaps()
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersNarrowingTest.cpp | 960 cxxMethodDecl(isPure(), hasName("::X::f")))); in TEST() 961 EXPECT_TRUE(notMatches("class X { int f(); };", cxxMethodDecl(isPure()))); in TEST()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 3951 AST_MATCHER(CXXMethodDecl, isPure) { in AST_MATCHER() argument 3952 return Node.isPure(); in AST_MATCHER()
|
/external/clang/lib/CodeGen/ |
D | CGVTables.cpp | 600 if (cast<CXXMethodDecl>(GD.getDecl())->isPure()) { in CreateVTableInitializer()
|
/external/llvm-project/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 5609 AST_MATCHER(CXXMethodDecl, isPure) { in AST_MATCHER() argument 5610 return Node.isPure(); in AST_MATCHER()
|
/external/clang/lib/Sema/ |
D | Sema.cpp | 575 Complete = M->isDefined() || (M->isPure() && !isa<CXXDestructorDecl>(M)); in MethodsAndNestedClassesComplete()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGVTables.cpp | 791 if (cast<CXXMethodDecl>(GD.getDecl())->isPure()) { in addVTableComponent()
|
/external/llvm-project/clang/unittests/ASTMatchers/ |
D | ASTMatchersNarrowingTest.cpp | 1514 cxxMethodDecl(isPure(), hasName("::X::f")))); in TEST_P() 1515 EXPECT_TRUE(notMatches("class X { int f(); };", cxxMethodDecl(isPure()))); in TEST_P()
|