Home
last modified time | relevance | path

Searched refs:isPure (Results 1 – 25 of 57) sorted by relevance

123

/external/clang/lib/StaticAnalyzer/Checkers/
DVirtualCallChecker.cpp118 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/
DUseEqualsDeleteCheck.cpp44 anyOf(PrivateSpecialFn, hasAnyBody(stmt()), isPure(), in registerMatchers()
/external/llvm-project/clang-tools-extra/clang-tidy/fuchsia/
DMultipleInheritanceCheck.cpp58 return M->isUserProvided() && !M->isPure() && !M->isStatic(); in isCurrentClassInterface()
/external/clang/include/clang/Basic/
DBuiltins.h98 bool isPure(unsigned ID) const { in isPure() function
/external/llvm-project/clang/include/clang/Basic/
DBuiltins.h98 bool isPure(unsigned ID) const { in isPure() function
/external/llvm-project/clang/lib/AST/
DVTableBuilder.cpp424 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()
DDeclCXX.cpp1986 if (SO->second.front().Method->isPure()) { in completeDefinition()
2208 return isPure() ? nullptr : this; in getDevirtualizedMethod()
2237 if (DevirtualizedMethod->isPure()) in getDevirtualizedMethod()
DASTStructuralEquivalence.cpp1279 Method1->isPure() == Method2->isPure() && in IsStructurallyEquivalent()
DODRHash.cpp557 AddBoolean(Function->isPure()); in AddFunctionDecl()
DRecordLayoutBuilder.cpp2237 if (MD->isPure()) in computeKeyFunction()
3146 !isa<CXXDestructorDecl>(MD) && !MD->isPure()) in computeVtorDispSet()
DDeclPrinter.cpp755 if (D->isPure()) in VisitFunctionDecl()
/external/clang/lib/AST/
DVTableBuilder.cpp425 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()
DRecordLayoutBuilder.cpp2016 if (MD->isPure()) in computeKeyFunction()
2895 if (MD->isVirtual() && !isa<CXXDestructorDecl>(MD) && !MD->isPure()) in computeVtorDispSet()
DDeclPrinter.cpp633 if (D->isPure()) in VisitFunctionDecl()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DVirtualCallChecker.cpp119 bool IsPure = MD->isPure(); in checkPreCall()
/external/llvm-project/clang/lib/AST/Interp/
DInterp.cpp394 if (!MD->isPure()) in CheckPure()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp323 REGISTER_MATCHER(isPure); in RegistryMaps()
/external/llvm-project/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp419 REGISTER_MATCHER(isPure); in RegistryMaps()
/external/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp960 cxxMethodDecl(isPure(), hasName("::X::f")))); in TEST()
961 EXPECT_TRUE(notMatches("class X { int f(); };", cxxMethodDecl(isPure()))); in TEST()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h3951 AST_MATCHER(CXXMethodDecl, isPure) { in AST_MATCHER() argument
3952 return Node.isPure(); in AST_MATCHER()
/external/clang/lib/CodeGen/
DCGVTables.cpp600 if (cast<CXXMethodDecl>(GD.getDecl())->isPure()) { in CreateVTableInitializer()
/external/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchers.h5609 AST_MATCHER(CXXMethodDecl, isPure) { in AST_MATCHER() argument
5610 return Node.isPure(); in AST_MATCHER()
/external/clang/lib/Sema/
DSema.cpp575 Complete = M->isDefined() || (M->isPure() && !isa<CXXDestructorDecl>(M)); in MethodsAndNestedClassesComplete()
/external/llvm-project/clang/lib/CodeGen/
DCGVTables.cpp791 if (cast<CXXMethodDecl>(GD.getDecl())->isPure()) { in addVTableComponent()
/external/llvm-project/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp1514 cxxMethodDecl(isPure(), hasName("::X::f")))); in TEST_P()
1515 EXPECT_TRUE(notMatches("class X { int f(); };", cxxMethodDecl(isPure()))); in TEST_P()

123