HomeSort by relevance Sort by last modified time
    Searched refs:DR (Results 1 - 25 of 38) 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 324 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(RetE))
325 if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(DR->getDecl()))
843 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E)) {
844 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 54 bool VisitDeclRefExpr(DeclRefExpr *DR) {
56 if (const VarDecl *D = dyn_cast<VarDecl>(DR->getDecl()))
226 void CheckDeclRef(const DeclRefExpr *DR, const Expr *Val, DeadStoreKind dsk,
228 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
229 CheckVarDecl(VD, DR, Val, dsk, Live);
242 const DeclRefExpr *DR;
244 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getLHS()->IgnoreParenCasts())))
245 if (DR->getDecl() == VD)
248 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getRHS()->IgnoreParenCasts())))
249 if (DR->getDecl() == VD
    [all...]
IdempotentOperationChecker.cpp 95 static bool isConstantOrPseudoConstant(const DeclRefExpr *DR,
499 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
500 if (!DR)
503 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
691 const DeclRefExpr *DR,
694 if (DR->getType().isConstQualified())
698 if (isa<EnumConstantDecl>(DR->getDecl()))
701 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
718 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S);
720 if (DR)
    [all...]
DereferenceChecker.cpp 63 const DeclRefExpr *DR = cast<DeclRefExpr>(Ex);
64 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
67 Ranges.push_back(DR->getSourceRange());
MallocOverflowSecurityChecker.cpp 135 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E)) {
136 const Decl * EdreD = DR->getDecl();
ObjCSelfInitChecker.cpp 425 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.stripCasts()))
426 return (DR->getDecl() == analCtx->getSelfDecl());
CheckSecuritySyntaxOnly.cpp 193 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(expr)) {
194 const NamedDecl *ND = DR->getDecl();
195 return ND == x || ND == y ? DR : NULL;
  /external/clang/lib/Analysis/
LiveVariables.cpp 224 void VisitDeclRefExpr(DeclRefExpr *DR);
357 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS))
358 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
369 observer->observerKill(DR);
386 void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *DR) {
387 if (const VarDecl *D = dyn_cast<VarDecl>(DR->getDecl()))
388 if (!isAlwaysAlive(D) && LV.inAssignment.find(DR) == LV.inAssignment.end())
403 DeclRefExpr *DR = 0;
410 else if ((DR = dyn_cast<DeclRefExpr>(cast<Expr>(element)->IgnoreParens()))) {
411 VD = cast<VarDecl>(DR->getDecl())
    [all...]
PseudoConstantAnalysis.cpp 70 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E))
71 return DR->getDecl();
202 const DeclRefExpr *DR = cast<DeclRefExpr>(Head);
203 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
BodyFarm.cpp 110 DeclRefExpr *DR =
119 return DR;
195 DeclRefExpr *DR = M.makeDeclRefExpr(Block);
196 ImplicitCastExpr *ICE = M.makeLvalueToRvalue(DR, Ty);
258 DeclRefExpr *DR = M.makeDeclRefExpr(PV);
259 ImplicitCastExpr *ICE = M.makeLvalueToRvalue(DR, Ty);
AnalysisDeclContext.cpp 468 void VisitDeclRefExpr(DeclRefExpr *DR) {
470 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
  /external/clang/include/clang/Analysis/Analyses/
LiveVariables.h 68 virtual void observerKill(const DeclRefExpr *DR) {}
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 51 DispRange DR;
61 SystemZAddressingMode(AddrForm form, DispRange dr)
62 : Form(form), DR(dr), Base(), Disp(0), Index(),
156 // Try to match Addr as a FormBD address with displacement type DR.
159 bool selectBDAddr(SystemZAddressingMode::DispRange DR, SDValue Addr,
163 // displacement type DR. Return true on success, storing the base,
166 SystemZAddressingMode::DispRange DR, SDValue Addr,
310 // with range DR. Here we're interested in the range of both the instruction
311 // described by DR and of any pairing instruction
    [all...]
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 236 DataRefImpl DR = SecI->getRawDataRefImpl();
242 ArrayRef<char> RawName = Obj->getSectionRawName(DR);
243 StringRef SegmentName = Obj->getSectionFinalSegmentName(DR);
244 ArrayRef<char> RawSegmentName = Obj->getSectionRawFinalSegmentName(DR);
351 DataRefImpl DR = RelI->getRawDataRefImpl();
352 macho::RelocationEntry RE = Obj->getRelocation(DR);
  /external/clang/www/
make_cxx_dr_status 16 class DR:
23 def parse(dr):
26 for col in dr.split('</TR>', 1)[0].split('<TD')[1:]
32 return DR(section, issue, url, status, title)
47 drs = sorted((parse(dr) for dr in file(index, 'r').read().split('<TR>')[2:]),
48 key = lambda dr: dr.issue)
131 assert False, 'unknown status %s for issue %s' % (status, dr.issue)
134 for dr in drs
    [all...]
  /external/qemu/hw/
goldfish_pipe.c 37 # define DR(...) D(__VA_ARGS__)
39 # define DR(...) (void)0
1069 DR("%s: command=%d (0x%x)", __FUNCTION__, value, value);
1074 DR("%s: size=%d (0x%x)", __FUNCTION__, value, value);
1079 DR("%s: address=%d (0x%x)", __FUNCTION__, value, value);
1084 DR("%s: channel=%d (0x%x)", __FUNCTION__, value, value);
1138 DR("%s: REG_STATUS status=%d (0x%x)", __FUNCTION__, dev->status, dev->status);
1144 DR("%s: channel=0x%x wanted=%d", __FUNCTION__,
1156 DR("%s: no signaled channels", __FUNCTION__);
1160 DR("%s: wakes %d", __FUNCTION__, dev->wakes)
    [all...]
  /bootable/recovery/minadbd/
adb.h 338 # define DR(...) \
352 # define DR(...) ((void)0)
  /system/core/adb/
adb.h 399 # define DR(...) \
413 # define DR(...) ((void)0)
  /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 349 void VisitCommonDeclRefExpr(const Expr *DR, const NamedDecl *D,
376 void VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *DR, ExplodedNode *Pred,
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 321 DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl();
323 StringRef SegmentName = MachOOF->getSectionFinalSegmentName(DR);
llvm-objdump.cpp 415 DataRefImpl DR = i->getRawDataRefImpl();
416 SegmentName = MachO->getSectionFinalSegmentName(DR);
723 DataRefImpl DR = Section->getRawDataRefImpl();
724 StringRef SegmentName = MachO->getSectionFinalSegmentName(DR);
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 221 const DeclRefExpr *DR,
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 340 milliseconds

1 2