HomeSort by relevance Sort by last modified time
    Searched refs:DeclRefExpr (Results 26 - 50 of 111) sorted by null

12 3 4 5

  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 372 // (DeclRefExpr 'void (rs_font *)' FunctionDecl='rsClearObject'))
374 // (DeclRefExpr 'rs_font':'rs_font' Var='localFont')))
386 clang::DeclRefExpr::Create(C,
461 // (DeclRefExpr 'int' Var='rsIntIter')
464 // (DeclRefExpr 'int' Var='rsIntIter')
468 // (DeclRefExpr 'int' Var='rsIntIter'))
471 // (DeclRefExpr 'void (rs_font *)' FunctionDecl='rsClearObject'))
475 // (DeclRefExpr 'rs_font [10]' Var='fontArr'))
476 // (DeclRefExpr 'int' Var='rsIntIter')))))))
499 clang::DeclRefExpr *RefrsIntIter
    [all...]
  /external/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp 53 DeclRefExpr *refE = dyn_cast<DeclRefExpr>(receiver->IgnoreParenCasts());
Transforms.cpp 205 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
228 bool VisitDeclRefExpr(DeclRefExpr *E) { Refs.erase(E); return true; }
239 bool VisitDeclRefExpr(DeclRefExpr *E) {
TransRetainReleaseDealloc.cpp 311 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
TransUnbridgedCasts.cpp 455 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 71 if (DeclRefExpr *E = dyn_cast<DeclRefExpr>(Receiver))
DereferenceChecker.cpp 63 const DeclRefExpr *DR = cast<DeclRefExpr>(Ex);
DynamicTypePropagation.cpp 229 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(RecE)) {
MacOSKeychainAPIChecker.cpp 165 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
387 if (const DeclRefExpr *DE = dyn_cast<DeclRefExpr>(DeallocatorExpr)) {
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 37 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
324 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetE))
843 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E)) {
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 502 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
    [all...]
SemaStmt.cpp 683 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CaseExpr)) {
868 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(PrevCase)) {
871 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(CurrCase)) {
    [all...]
SemaFixItUtils.cpp 71 isa<DeclRefExpr>(Expr) ||
AnalysisBasedWarnings.cpp 202 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(
584 const DeclRefExpr *Needle;
587 ContainsReference(ASTContext &Context, const DeclRefExpr *Needle)
599 void VisitDeclRefExpr(DeclRefExpr *E) {
845 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Use.getUser())) {
    [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/AST/
Expr.cpp 306 void DeclRefExpr::computeDependence(const ASTContext &Ctx) {
340 DeclRefExpr::DeclRefExpr(const ASTContext &Ctx,
377 DeclRefExpr *DeclRefExpr::Create(const ASTContext &Context,
393 DeclRefExpr *DeclRefExpr::Create(const ASTContext &Context,
407 std::size_t Size = sizeof(DeclRefExpr);
417 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
418 return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D
    [all...]
NSAPI.cpp 411 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
ASTDiagnostic.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 124 SmallVector<DeclRefExpr *, 32> InnerDeclRefs;
126 SmallVector<DeclRefExpr *, 32> BlockDeclRefs;
326 Stmt *RewriteBlockDeclRefExpr(DeclRefExpr *VD);
327 Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE);
399 const SmallVectorImpl<DeclRefExpr *> &InnerBlockDeclRefs);
413 SmallVectorImpl<DeclRefExpr *> &InnerBlockDeclRefs,
    [all...]
  /external/clang/tools/libclang/
IndexBody.cpp 41 bool VisitDeclRefExpr(DeclRefExpr *E) {
  /external/clang/lib/Analysis/
ThreadSafetyCommon.cpp 108 return translateDeclRefExpr(cast<DeclRefExpr>(S), Ctx);
165 til::SExpr *SExprBuilder::translateDeclRefExpr(const DeclRefExpr *DRE,
290 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(LHS)) {
357 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr())) {
ReachableCode.cpp 35 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex);
188 return isConfigurationValue(cast<DeclRefExpr>(S)->getDecl(), PP);
ThreadSafety.cpp 268 /// Recursive function that terminates on DeclRefExpr.
280 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp)) {
396 if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(UOE->getSubExpr())) {
515 DeclRefExpr SelfDRE(SelfDecl, false, SelfDecl->getType(), VK_LValue,
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 221 const DeclRefExpr *DR,
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 138 virtual bool VisitDeclRefExpr(clang::DeclRefExpr* expr) {
561 VISIT(DeclRefExpr);
651 if (llvm::isa<clang::DeclRefExpr>(expr)) {
653 llvm::cast<clang::DeclRefExpr>(expr)->getDecl()->getNameAsString();
751 DECL_VISIT_EXPR(DeclRefExpr) {
    [all...]

Completed in 854 milliseconds

12 3 4 5