Home
last modified time | relevance | path

Searched refs:IgnoreExprNodes (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/clang/include/clang/AST/
DIgnoreExpr.h33 template <typename... FnTys> Expr *IgnoreExprNodes(Expr *E, FnTys &&... Fns) { in IgnoreExprNodes() function
43 const Expr *IgnoreExprNodes(const Expr *E, FnTys &&...Fns) { in IgnoreExprNodes() function
44 return const_cast<Expr *>(IgnoreExprNodes(E, std::forward<FnTys>(Fns)...)); in IgnoreExprNodes()
/external/llvm-project/clang/lib/AST/
DExpr.cpp2755 return IgnoreExprNodes(this, IgnoreImplicitCastsSingleStep); in IgnoreImpCasts()
2759 return IgnoreExprNodes(this, IgnoreCastsSingleStep); in IgnoreCasts()
2763 return IgnoreExprNodes(this, IgnoreImplicitSingleStep); in IgnoreImplicit()
2767 return IgnoreExprNodes(this, IgnoreImplicitAsWrittenSingleStep); in IgnoreImplicitAsWritten()
2771 return IgnoreExprNodes(this, IgnoreParensSingleStep); in IgnoreParens()
2775 return IgnoreExprNodes(this, IgnoreParensSingleStep, in IgnoreParenImpCasts()
2780 return IgnoreExprNodes(this, IgnoreParensSingleStep, IgnoreCastsSingleStep); in IgnoreParenCasts()
2792 return IgnoreExprNodes(this, IgnoreParensSingleStep, in IgnoreParenLValueCasts()
2797 return IgnoreExprNodes(this, IgnoreParensSingleStep, in IgnoreParenBaseCasts()
2823 return IgnoreExprNodes(this, IgnoreParensSingleStep, in IgnoreParenNoopCasts()
[all …]
/external/llvm-project/clang/lib/Tooling/Syntax/
DBuildTree.cpp80 return IgnoreExprNodes(E, IgnoreImplicitSingleStep, in IgnoreImplicit()