Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp4208 const auto *DRE1 = cast<DeclRefExpr>(E1); in isSameComparisonOperand() local
4210 return DRE1->isPRValue() && DRE2->isPRValue() && in isSameComparisonOperand()
4211 DRE1->getDecl() == DRE2->getDecl(); in isSameComparisonOperand()
4232 const auto *DRE1 = dyn_cast<DeclRefExpr>(E1); in isSameComparisonOperand() local
4234 if (DRE1 && DRE2) in isSameComparisonOperand()
4235 return declaresSameEntity(DRE1->getDecl(), DRE2->getDecl()); in isSameComparisonOperand()
H A DASTStructuralEquivalence.cpp220 bool IsStmtEquivalent(const DeclRefExpr *DRE1, const DeclRefExpr *DRE2) { in IsStmtEquivalent() argument
221 const ValueDecl *Decl1 = DRE1->getDecl(); in IsStmtEquivalent()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp369 if (auto *DRE1 = dyn_cast<DeclRefExpr>(E1)) { in AST_MATCHER() local
370 return DRE0->getDecl() == DRE1->getDecl(); in AST_MATCHER()