HomeSort by relevance Sort by last modified time
    Searched refs:DR (Results 1 - 25 of 31) sorted by null

1 2

  /external/clang/lib/StaticAnalyzer/Core/
CheckerHelpers.cpp 36 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S);
38 if (DR && isa<EnumConstantDecl>(DR->getDecl()))
52 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S);
54 if (DR)
55 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
BugReporterVisitors.cpp 317 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex)) {
318 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
414 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Head)) {
415 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
564 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex)) {
565 const bool quotes = isa<VarDecl>(DR->getDecl());
570 if (const MemRegion *R = state->getLValue(cast<VarDecl>(DR->getDecl()),
582 Out << DR->getDecl()->getDeclName().getAsString();
724 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(CondVarExpr)) {
725 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 171 void CheckDeclRef(const DeclRefExpr *DR, const Expr *Val, DeadStoreKind dsk,
173 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
174 CheckVarDecl(VD, DR, Val, dsk, Live);
187 const DeclRefExpr *DR;
189 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getLHS()->IgnoreParenCasts())))
190 if (DR->getDecl() == VD)
193 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getRHS()->IgnoreParenCasts())))
194 if (DR->getDecl() == VD)
214 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(B->getLHS()))
215 if (VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
    [all...]
DereferenceChecker.cpp 58 const DeclRefExpr *DR = cast<DeclRefExpr>(Ex);
59 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
62 Ranges.push_back(DR->getSourceRange());
164 if (const DeclRefExpr *DR =
166 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
IdempotentOperationChecker.cpp 94 static bool isConstantOrPseudoConstant(const DeclRefExpr *DR,
495 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
496 if (!DR)
499 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
701 const DeclRefExpr *DR,
704 if (DR->getType().isConstQualified())
708 if (isa<EnumConstantDecl>(DR->getDecl()))
711 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
728 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S);
730 if (DR)
    [all...]
MallocOverflowSecurityChecker.cpp 135 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E)) {
136 const Decl * EdreD = DR->getDecl();
ObjCSelfInitChecker.cpp 376 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.stripCasts()))
377 return (DR->getDecl() == analCtx->getSelfDecl());
CheckSecuritySyntaxOnly.cpp 199 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(expr)) {
200 const NamedDecl *ND = DR->getDecl();
201 return ND == x || ND == y ? DR : NULL;
  /external/clang/lib/Analysis/
LiveVariables.cpp 214 void VisitDeclRefExpr(DeclRefExpr *DR);
339 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS))
340 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
351 observer->observerKill(DR);
368 void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *DR) {
369 if (const VarDecl *D = dyn_cast<VarDecl>(DR->getDecl()))
370 if (!isAlwaysAlive(D) && LV.inAssignment.find(DR) == LV.inAssignment.end())
385 DeclRefExpr *DR = 0;
392 else if ((DR = dyn_cast<DeclRefExpr>(cast<Expr>(element)->IgnoreParens()))) {
393 VD = cast<VarDecl>(DR->getDecl())
    [all...]
PseudoConstantAnalysis.cpp 69 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E))
70 return DR->getDecl();
201 const DeclRefExpr *DR = cast<DeclRefExpr>(Head);
202 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
UninitializedValues.cpp 329 const DeclRefExpr *dr; member in class:__anon4672::FindVarResult
331 FindVarResult(VarDecl *vd, DeclRefExpr *dr) : vd(vd), dr(dr) {}
333 const DeclRefExpr *getDeclRefExpr() const { return dr; }
370 void VisitDeclRefExpr(DeclRefExpr *dr);
407 if (DeclRefExpr *dr = dyn_cast<DeclRefExpr>(ex->IgnoreParenCasts()))
408 if (VarDecl *vd = dyn_cast<VarDecl>(dr->getDecl()))
410 return FindVarResult(vd, dr);
450 void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *dr) {
    [all...]
AnalysisDeclContext.cpp 356 void VisitDeclRefExpr(DeclRefExpr *DR) {
358 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
362 } else if (DR->refersToEnclosingLocal()) {
  /external/clang/include/clang/Analysis/Visitors/
CFGRecStmtDeclVisitor.h 41 void VisitDeclRefExpr(DeclRefExpr *DR) {
42 static_cast<ImplClass*>(this)->VisitDecl(DR->getDecl());
  /external/clang/include/clang/Analysis/Analyses/
LiveVariables.h 68 virtual void observerKill(const DeclRefExpr *DR) {}
  /external/qemu/hw/
goldfish_pipe.c 39 # define DR(...) D(__VA_ARGS__)
41 # define DR(...) (void)0
1081 DR("%s: command=%d (0x%x)", __FUNCTION__, value, value);
1086 DR("%s: size=%d (0x%x)", __FUNCTION__, value, value);
1091 DR("%s: address=%d (0x%x)", __FUNCTION__, value, value);
1096 DR("%s: channel=%d (0x%x)", __FUNCTION__, value, value);
1114 DR("%s: REG_STATUS status=%d (0x%x)", __FUNCTION__, dev->status, dev->status);
1120 DR("%s: channel=0x%x wanted=%d", __FUNCTION__,
1132 DR("%s: no signaled channels", __FUNCTION__);
1136 DR("%s: wakes %d", __FUNCTION__, dev->wakes)
    [all...]
  /bootable/recovery/minadbd/
adb.h 338 # define DR(...) \
352 # define DR(...) ((void)0)
transport.c 61 DR("%s\n", buffer);
  /system/core/adb/
adb.h 389 # define DR(...) \
403 # define DR(...) ((void)0)
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 199 const DeclRefExpr *DR,
  /external/oprofile/events/mips/74K/
events 30 event:0xc counters:0,2 um:zero minimum:500 name:IFU_IDU_CLOGED_DOWNSTREAM_CYCLES : 12-0 Cycles IFU-IDU gate is closed (waiting for downstream to unclog) due to MTC0/MFC0 sequence in pipe, EHB, or blocked DD, DR, or DS
31 event:0xd counters:0,2 um:zero minimum:500 name:DDQ0_FULL_DR_STALLS : 13-0 DR stage stall cycles due to DDQ0 (ALU out-of-order dispatch queue) full
32 event:0xe counters:0,2 um:zero minimum:500 name:ALCB_FULL_DR_STALLS : 14-0 DR stage stall cycles due to ALCB (ALU completion buffers) full
33 event:0xf counters:0,2 um:zero minimum:500 name:CLDQ_FULL_DR_STALLS : 15-0 DR stage stall cycles due to CLDQ (data comming back from FPU) full
107 event:0x40d counters:1,3 um:zero minimum:500 name:DDQ1_FULL_DR_STALLS : 13-1 DR stage stall cycles due to DDQ1 (AGEN out-of-order dispatch queue) full
108 event:0x40e counters:1,3 um:zero minimum:500 name:AGCB_FULL_DR_STALLS : 14-1 DR stage stall cycles due to AGCB (AGEN completion buffers) full
109 event:0x40f counters:1,3 um:zero minimum:500 name:IODQ_FULL_DR_STALLS : 15-1 DR stage stall cycles due to IODQ (data comming back from IO) full
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 291 void VisitCommonDeclRefExpr(const Expr *DR, const NamedDecl *D,
318 void VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *DR, ExplodedNode *Pred,
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/openfst/src/test/
algo_test.h 665 DeterminizeFst<Arc> DR(R);
667 Reverse(DR, &RD);
1060 DeterminizeFst<Arc> DR(R);
1062 Reverse(DR, &RD);
    [all...]
  /frameworks/base/media/tests/contents/media_api/music/
test_amr_ietf.amr 338 H????S?6}|"???????<?t>ou?A??XLD??)?X a7f??0@<?N???)??l??????x?E???<~??V??!;t??o?<?p?OH4?v???<?ij'?^A?!?o0?yb,Y1???'???<x?u2???{?\??9?*?3?????;???<?J/r?~E??Uhhn?k????s?xw? <??^g?????QPd?? ???%g??fCp<4?d^x???A??.?vJ&E^?^???A?pq?<8?{d{??DR?%?[E??I?'*?N????<Hzi?~??T???y?T?a?ü?????[<:???J?????l????l?_}I?o?0<4?i.9?T???F%b" F??m???q???E?<??#??? ??Tz?AP?v???@?7?q<D?%?I?<e??Z?(?X?\*E???W??W<?.{)????J?1t?}???????T#?_E%\<D????_?R?
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 365 milliseconds

1 2