HomeSort by relevance Sort by last modified time
    Searched refs:DR (Results 1 - 25 of 28) 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 327 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S)) {
328 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
425 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Head)) {
426 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
557 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex)) {
558 const bool quotes = isa<VarDecl>(DR->getDecl());
561 Out << DR->getDecl()->getDeclName().getAsString();
660 const DeclRefExpr *DR,
665 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
BugReporter.cpp 339 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(cast<PostStmt>(P).getStmt());
341 if (!DR)
344 SVal Y = N->getState()->getSVal(DR);
349 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
414 DeclRefExpr *DR = dyn_cast<DeclRefExpr>(B->getLHS()->IgnoreParenCasts());
416 if (!DR)
419 VD = dyn_cast<VarDecl>(DR->getDecl());
589 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS)) {
593 dyn_cast<EnumConstantDecl>(DR->getDecl());
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 158 void CheckDeclRef(const DeclRefExpr *DR, const Expr *Val, DeadStoreKind dsk,
160 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
161 CheckVarDecl(VD, DR, Val, dsk, Live);
174 const DeclRefExpr *DR;
176 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getLHS()->IgnoreParenCasts())))
177 if (DR->getDecl() == VD)
180 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getRHS()->IgnoreParenCasts())))
181 if (DR->getDecl() == VD)
201 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(B->getLHS()))
202 if (VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
    [all...]
DereferenceChecker.cpp 50 const DeclRefExpr *DR = cast<DeclRefExpr>(Ex);
51 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
54 Ranges.push_back(DR->getSourceRange());
145 if (const DeclRefExpr *DR =
147 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
IdempotentOperationChecker.cpp 93 static bool isConstantOrPseudoConstant(const DeclRefExpr *DR,
494 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
495 if (!DR)
498 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();
CheckSecuritySyntaxOnly.cpp 172 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(expr)) {
173 const NamedDecl *ND = DR->getDecl();
174 return ND == x || ND == y ? DR : NULL;
ObjCSelfInitChecker.cpp 345 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.getRegion()))
346 return (DR->getDecl() == analCtx->getSelfDecl());
  /external/clang/lib/Analysis/
PseudoConstantAnalysis.cpp 69 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E))
70 return DR->getDecl();
214 const DeclRefExpr *DR = cast<DeclRefExpr>(Head);
215 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
LiveVariables.cpp 310 void VisitDeclRefExpr(DeclRefExpr *DR);
406 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS))
407 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
418 observer->observerKill(DR);
435 void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *DR) {
436 if (const VarDecl *D = dyn_cast<VarDecl>(DR->getDecl()))
437 if (!isAlwaysAlive(D) && LV.inAssignment.find(DR) == LV.inAssignment.end())
452 DeclRefExpr *DR = 0;
459 else if ((DR = dyn_cast<DeclRefExpr>(cast<Expr>(element)->IgnoreParens()))) {
460 VD = cast<VarDecl>(DR->getDecl())
    [all...]
UninitializedValues.cpp 329 const DeclRefExpr *dr; member in class:__anon4262::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...]
AnalysisContext.cpp 329 void VisitDeclRefExpr(const DeclRefExpr *DR) {
331 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
341 void VisitBlockDeclRefExpr(BlockDeclRefExpr *DR) {
342 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
ThreadSafety.cpp 407 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Exp))
408 return DR->getDecl();
    [all...]
  /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 66 virtual void observerKill(const DeclRefExpr *DR) {}
  /external/qemu/hw/
goldfish_pipe.c 39 # define DR(...) D(__VA_ARGS__)
41 # define DR(...) (void)0
945 DR("%s: command=%d (0x%x)", __FUNCTION__, value, value);
950 DR("%s: size=%d (0x%x)", __FUNCTION__, value, value);
955 DR("%s: address=%d (0x%x)", __FUNCTION__, value, value);
960 DR("%s: channel=%d (0x%x)", __FUNCTION__, value, value);
978 DR("%s: REG_STATUS status=%d (0x%x)", __FUNCTION__, dev->status, dev->status);
984 DR("%s: channel=0x%x wanted=%d", __FUNCTION__,
996 DR("%s: no signaled channels", __FUNCTION__);
1000 DR("%s: wakes %d", __FUNCTION__, dev->wakes)
    [all...]
  /system/core/adb/
adb.h 369 # define DR(...) \
383 # define DR(...) ((void)0)
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 152 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 284 void VisitCommonDeclRefExpr(const Expr *DR, const NamedDecl *D,
311 void VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *DR, ExplodedNode *Pred,
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 327 /// DR - The debug registerer for the jit.
328 OwningPtr<JITDebugRegisterer> DR;
379 DR.reset(new JITDebugRegisterer(TM));
    [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 604 milliseconds

1 2