Home
last modified time | relevance | path

Searched refs:UnaryExprOrTypeTraitExpr (Results 1 – 25 of 40) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSizeofPointer.cpp32 void VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E);
45 void WalkAST::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E) { in VisitUnaryExprOrTypeTraitExpr()
H A DVLASizeChecker.cpp36 check::PreStmt<UnaryExprOrTypeTraitExpr>> {
62 void checkPreStmt(const UnaryExprOrTypeTraitExpr *UETTE,
311 void VLASizeChecker::checkPreStmt(const UnaryExprOrTypeTraitExpr *UETTE, in checkPreStmt()
H A DMallocSizeofChecker.cpp113 std::vector<const UnaryExprOrTypeTraitExpr *> Sizeofs;
128 void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E) { in VisitUnaryExprOrTypeTraitExpr()
H A DUnreachableCodeChecker.cpp241 containsStmt<UnaryExprOrTypeTraitExpr>(cond); in isInvalidPath()
H A DCStringSyntaxChecker.cpp47 if (const auto *UE = dyn_cast<UnaryExprOrTypeTraitExpr>(E)) in isSizeof()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DComputeDependence.h29 class UnaryExprOrTypeTraitExpr; variable
116 ExprDependence computeDependence(UnaryExprOrTypeTraitExpr *E);
H A DEvaluatedExprVisitor.h46 void VisitUnaryExprOrTypeTraitExpr(PTR(UnaryExprOrTypeTraitExpr) E) { } in VisitUnaryExprOrTypeTraitExpr()
H A DTextNodeDumper.h275 void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Node);
H A DJSONNodeDumper.h295 void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *TTE);
H A DExpr.h2544 class UnaryExprOrTypeTraitExpr : public Expr {
2552 UnaryExprOrTypeTraitExpr(UnaryExprOrTypeTrait ExprKind, TypeSourceInfo *TInfo, in UnaryExprOrTypeTraitExpr() function
2568 UnaryExprOrTypeTraitExpr(UnaryExprOrTypeTrait ExprKind, Expr *E,
2573 explicit UnaryExprOrTypeTraitExpr(EmptyShell Empty) in UnaryExprOrTypeTraitExpr() function
2599 return const_cast<UnaryExprOrTypeTraitExpr*>(this)->getArgumentExpr(); in getArgumentExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp175 void VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *UE);
437 VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *UE) in VisitUnaryExprOrTypeTraitExpr()
H A DCFG.cpp626 CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
2395 return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S), in Visit()
4299 CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E, in VisitUnaryExprOrTypeTraitExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeExprGen.h85 bool VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *E);
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2871 UnaryExprOrTypeTraitExpr>
3024 AST_MATCHER_P(UnaryExprOrTypeTraitExpr, hasArgumentOfType, in AST_MATCHER_P() argument
3042 AST_MATCHER_P(UnaryExprOrTypeTraitExpr, ofKind, UnaryExprOrTypeTrait, Kind) { in AST_MATCHER_P() argument
3049 const internal::Matcher<UnaryExprOrTypeTraitExpr> &InnerMatcher) { in alignOfExpr()
3058 const internal::Matcher<UnaryExprOrTypeTraitExpr> &InnerMatcher) { in sizeOfExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td71 def UnaryExprOrTypeTraitExpr : StmtNode<Expr>;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h542 void VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Ex,
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1670 UnaryExprOrTypeTraitExpr::UnaryExprOrTypeTraitExpr( in UnaryExprOrTypeTraitExpr() function in UnaryExprOrTypeTraitExpr
4856 Stmt::child_range UnaryExprOrTypeTraitExpr::children() { in children()
4858 const_cast<const UnaryExprOrTypeTraitExpr *>(this)->children(); in children()
4862 Stmt::const_child_range UnaryExprOrTypeTraitExpr::children() const { in children()
H A DASTStructuralEquivalence.cpp350 bool IsStmtEquivalent(const UnaryExprOrTypeTraitExpr *E1, in IsStmtEquivalent()
351 const UnaryExprOrTypeTraitExpr *E2) { in IsStmtEquivalent()
H A DComputeDependence.cpp77 ExprDependence clang::computeDependence(UnaryExprOrTypeTraitExpr *E) { in computeDependence()
H A DJSONNodeDumper.cpp1408 const UnaryExprOrTypeTraitExpr *TTE) { in VisitUnaryExprOrTypeTraitExpr()
H A DStmtProfile.cpp1421 StmtProfiler::VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *S) { in VisitUnaryExprOrTypeTraitExpr()
H A DTextNodeDumper.cpp1257 const UnaryExprOrTypeTraitExpr *Node) { in VisitUnaryExprOrTypeTraitExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp789 const internal::VariadicDynCastAllOfMatcher<Stmt, UnaryExprOrTypeTraitExpr>
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp865 VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Ex, in VisitUnaryExprOrTypeTraitExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp775 void ASTStmtReader::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E) { in VisitUnaryExprOrTypeTraitExpr()
3056 S = new (Context) UnaryExprOrTypeTraitExpr(Empty); in ReadStmtFromStream()

12