Home | History | Annotate | Download | only in Sema

Lines Matching defs:CE

243   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
251 if (const Decl *FD = CE->getCalleeDecl()) {
297 else if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E)) {
298 TypeSourceInfo *TI = CE->getTypeInfoAsWritten();
1883 CallExpr *CE = dyn_cast<CallExpr>(E);
1884 if (!CE)
1886 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
2498 if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(InitExpr)) {
2499 if (!CE->getConstructor()->isCopyConstructor())
2501 } else if (const CastExpr *CE = dyn_cast<CastExpr>(InitExpr)) {
2502 if (CE->getCastKind() != CK_LValueToRValue)