Searched defs:CE (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/slang/
H A Dslang_rs_check_ast.cpp248 void RSCheckAST::VisitCastExpr(clang::CastExpr *CE) { argument
249 if (CE->getCastKind() == clang::CK_BitCast) {
250 clang::QualType QT = CE->getType();
253 if (llvm::isa<clang::ImplicitCastExpr>(CE)) {
254 Context->ReportError(CE->getExprLoc(), "invalid implicit vector cast");
256 Context->ReportError(CE->getExprLoc(), "invalid vector cast");
261 Visit(CE->getSubExpr());
H A Dslang_rs_foreach_lowering.cpp96 clang::CallExpr* CE, int* slot, bool* hasOptions) {
97 const clang::Decl* D = CE->getCalleeDecl();
115 mCtxt->ReportError(CE->getExprLoc(),
120 clang::Expr* arg0 = CE->getArg(0);
133 mCtxt->ReportError(CE->getExprLoc(),
221 void RSForEachLowering::VisitCallExpr(clang::CallExpr* CE) { argument
224 const clang::FunctionDecl* kernel = matchKernelLaunchCall(CE, &slot, &hasOptions);
231 const unsigned numArgsOrig = CE->getNumArgs();
243 CE->getExprLoc(),
250 CE
95 matchKernelLaunchCall( clang::CallExpr* CE, int* slot, bool* hasOptions) argument
[all...]
H A Dslang_rs_object_ref_count.cpp1535 void RSObjectRefCount::VisitCallExpr(clang::CallExpr* CE) { argument
1537 const clang::FunctionDecl* FD = CE->getDirectCallee();
1546 const clang::Expr* Callee = CE->getCallee();
1578 clang::SourceLocation Loc = CE->getSourceRange().getBegin();
1593 TempVarDecl->setInit(CE);
1621 getCurrentScope()->ReplaceExpr(mCtx, CE, CastExpr);

Completed in 1163 milliseconds