HomeSort by relevance Sort by last modified time
    Searched refs:DR (Results 1 - 25 of 47) 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...]
  /system/core/adb/
adb_trace.h 85 # define DR(...) \
119 # define DR(...) \
138 # define DR(...) ((void)0)
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 54 bool VisitDeclRefExpr(DeclRefExpr *DR) {
56 if (const VarDecl *D = dyn_cast<VarDecl>(DR->getDecl()))
229 void CheckDeclRef(const DeclRefExpr *DR, const Expr *Val, DeadStoreKind dsk,
231 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
232 CheckVarDecl(VD, DR, Val, dsk, Live);
245 const DeclRefExpr *DR;
247 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getLHS()->IgnoreParenCasts())))
248 if (DR->getDecl() == VD)
251 if ((DR = dyn_cast<DeclRefExpr>(BRHS->getRHS()->IgnoreParenCasts())))
252 if (DR->getDecl() == VD
    [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 423 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.stripCasts()))
424 return (DR->getDecl() == analCtx->getSelfDecl());
CheckSecuritySyntaxOnly.cpp 203 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(expr)) {
204 const NamedDecl *ND = DR->getDecl();
205 return ND == x || ND == y ? DR : nullptr;
  /external/clang/lib/Analysis/
LiveVariables.cpp 209 void VisitDeclRefExpr(DeclRefExpr *DR);
342 if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS))
343 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
354 observer->observerKill(DR);
371 void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *DR) {
372 if (const VarDecl *D = dyn_cast<VarDecl>(DR->getDecl()))
373 if (!isAlwaysAlive(D) && LV.inAssignment.find(DR) == LV.inAssignment.end())
387 DeclRefExpr *DR = nullptr;
394 else if ((DR = dyn_cast<DeclRefExpr>(cast<Expr>(element)->IgnoreParens()))) {
395 VD = cast<VarDecl>(DR->getDecl())
    [all...]
PseudoConstantAnalysis.cpp 70 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E))
71 return DR->getDecl();
201 const DeclRefExpr *DR = cast<DeclRefExpr>(Head);
202 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
BodyFarm.cpp 112 DeclRefExpr *DR =
121 return DR;
207 DeclRefExpr *DR = M.makeDeclRefExpr(Block);
208 ImplicitCastExpr *ICE = M.makeLvalueToRvalue(DR, Ty);
270 DeclRefExpr *DR = M.makeDeclRefExpr(PV);
271 ImplicitCastExpr *ICE = M.makeLvalueToRvalue(DR, Ty);
ReachableCode.cpp 35 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex);
36 if (!DR)
38 return isa<EnumConstantDecl>(DR->getDecl());
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfVariableTextFieldDictionary_autogen.cpp 11 SkPdfDictionary* SkPdfVariableTextFieldDictionary::DR(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("DR", "");
20 return get("DR", "") != NULL;
SkPdfInteractiveFormDictionary_autogen.cpp 59 SkPdfDictionary* SkPdfInteractiveFormDictionary::DR(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("DR", "");
68 return get("DR", "") != NULL;
  /external/clang/include/clang/Analysis/Analyses/
LiveVariables.h 68 virtual void observerKill(const DeclRefExpr *DR) {}
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfVariableTextFieldDictionary_autogen.cpp 11 SkPdfDictionary* SkPdfVariableTextFieldDictionary::DR(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("DR", "");
20 return get("DR", "") != NULL;
SkPdfInteractiveFormDictionary_autogen.cpp 59 SkPdfDictionary* SkPdfInteractiveFormDictionary::DR(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("DR", "");
68 return get("DR", "") != NULL;
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 53 DispRange DR;
63 SystemZAddressingMode(AddrForm form, DispRange dr)
64 : Form(form), DR(dr), Base(), Disp(0), Index(),
159 // Try to match Addr as a FormBD address with displacement type DR.
162 bool selectBDAddr(SystemZAddressingMode::DispRange DR, SDValue Addr,
165 // Try to match Addr as a FormBDX address with displacement type DR.
168 bool selectMVIAddr(SystemZAddressingMode::DispRange DR, SDValue Addr,
172 // displacement type DR. Return true on success, storing the base,
175 SystemZAddressingMode::DispRange DR, SDValue Addr
    [all...]
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 224 DataRefImpl DR = Section.getRawDataRefImpl();
230 ArrayRef<char> RawName = Obj->getSectionRawName(DR);
231 StringRef SegmentName = Obj->getSectionFinalSegmentName(DR);
232 ArrayRef<char> RawSegmentName = Obj->getSectionRawFinalSegmentName(DR);
318 DataRefImpl DR = Reloc.getRawDataRefImpl();
319 MachO::any_relocation_info 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)
136 assert False, 'unknown status %s for issue %s' % (status, dr.issue)
140 for dr in drs
    [all...]
  /external/qemu/hw/android/goldfish/
pipe.c 37 # define DR(...) D(__VA_ARGS__)
39 # define DR(...) (void)0
1084 DR("%s: command=%d (0x%x)", __FUNCTION__, value, value);
1089 DR("%s: size=%d (0x%x)", __FUNCTION__, value, value);
1094 DR("%s: address=%d (0x%x)", __FUNCTION__, value, value);
1099 DR("%s: address_high=%d (0x%x)", __FUNCTION__, value, value);
1104 DR("%s: channel=%d (0x%x)", __FUNCTION__, value, value);
1109 DR("%s: channel_high=%d (0x%x)", __FUNCTION__, value, value);
1181 DR("%s: REG_STATUS status=%d (0x%x)", __FUNCTION__, dev->status, dev->status);
1187 DR("%s: channel=0x%llx wanted=%d", __FUNCTION__
    [all...]
  /bootable/recovery/minadbd/
adb.h 334 # define DR(...) \
348 # define DR(...) ((void)0)
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-arabic-table.hh 24 #define DR JOINING_GROUP_DALATH_RISH
47 /* 0700 */ X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,A,X,D,D,D,DR,DR,R,R,R,D,D,D,D,R,D,
48 /* 0720 */ D,D,D,D,D,D,D,D,R,D,DR,D,R,D,D,DR,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,
165 #undef 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 353 void VisitCommonDeclRefExpr(const Expr *DR, const NamedDecl *D,
380 void VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *DR, ExplodedNode *Pred,

Completed in 748 milliseconds

1 2