Searched defs:DR (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp36 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S); local
38 if (DR && isa<EnumConstantDecl>(DR->getDecl()))
52 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S); local
54 if (DR)
55 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
H A DBugReporterVisitors.cpp324 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())) {
1125 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Head)) {
1126 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
1283 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex)) {
1284 const bool quotes = isa<VarDecl>(DR->getDecl());
1289 if (const MemRegion *R = state->getLValue(cast<VarDecl>(DR->getDecl()),
1301 Out << DR
1461 VisitTrueTest(const Expr *Cond, const DeclRefExpr *DR, const bool tookTrue, BugReporterContext &BRC, BugReport &report, const ExplodedNode *N) argument
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfVariableTextFieldDictionary_autogen.cpp11 SkPdfDictionary* SkPdfVariableTextFieldDictionary::DR(SkPdfNativeDoc* doc) { function in class:SkPdfVariableTextFieldDictionary
12 SkPdfNativeObject* ret = get("DR", "");
20 return get("DR", "") != NULL;
H A DSkPdfInteractiveFormDictionary_autogen.cpp59 SkPdfDictionary* SkPdfInteractiveFormDictionary::DR(SkPdfNativeDoc* doc) { function in class:SkPdfInteractiveFormDictionary
60 SkPdfNativeObject* ret = get("DR", "");
68 return get("DR", "") != NULL;
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfVariableTextFieldDictionary_autogen.cpp11 SkPdfDictionary* SkPdfVariableTextFieldDictionary::DR(SkPdfNativeDoc* doc) { function in class:SkPdfVariableTextFieldDictionary
12 SkPdfNativeObject* ret = get("DR", "");
20 return get("DR", "") != NULL;
H A DSkPdfInteractiveFormDictionary_autogen.cpp59 SkPdfDictionary* SkPdfInteractiveFormDictionary::DR(SkPdfNativeDoc* doc) { function in class:SkPdfInteractiveFormDictionary
60 SkPdfNativeObject* ret = get("DR", "");
68 return get("DR", "") != NULL;
/external/clang/include/clang/Analysis/Analyses/
H A DLiveVariables.h68 virtual void observerKill(const DeclRefExpr *DR) {} argument
/external/clang/lib/Analysis/
H A DPseudoConstantAnalysis.cpp70 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E))
71 return DR->getDecl();
201 const DeclRefExpr *DR = cast<DeclRefExpr>(Head); local
202 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
H A DBodyFarm.cpp112 DeclRefExpr *DR = local
121 return DR;
207 DeclRefExpr *DR = M.makeDeclRefExpr(Block); local
208 ImplicitCastExpr *ICE = M.makeLvalueToRvalue(DR, Ty);
270 DeclRefExpr *DR = M.makeDeclRefExpr(PV); local
271 ImplicitCastExpr *ICE = M.makeLvalueToRvalue(DR, Ty);
H A DReachableCode.cpp35 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex); local
36 if (!DR)
38 return isa<EnumConstantDecl>(DR->getDecl());
H A DAnalysisDeclContext.cpp473 void VisitDeclRefExpr(DeclRefExpr *DR) { argument
475 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
H A DLiveVariables.cpp209 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) { argument
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; local
394 else if ((DR = dyn_cast<DeclRefExpr>(cast<Expr>(element)->IgnoreParens()))) {
395 VD = cast<VarDecl>(DR
[all...]
/external/clang/www/
H A Dmake_cxx_dr_status16 class DR: class in inherits:
32 return DR(section, issue, url, status, title)
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-complex-arabic-table.hh24 #define DR JOINING_GROUP_DALATH_RISH macro
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 macro
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDereferenceChecker.cpp63 const DeclRefExpr *DR = cast<DeclRefExpr>(Ex); local
64 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
67 Ranges.push_back(DR->getSourceRange());
H A DDeadStoresChecker.cpp54 bool VisitDeclRefExpr(DeclRefExpr *DR) { argument
56 if (const VarDecl *D = dyn_cast<VarDecl>(DR->getDecl()))
229 void CheckDeclRef(const DeclRefExpr *DR, const Expr *Val, DeadStoreKind dsk, argument
231 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
232 CheckVarDecl(VD, DR, Val, dsk, Live);
245 const DeclRefExpr *DR; local
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
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-arabic-table.hh24 #define DR JOINING_GROUP_DALATH_RISH macro
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 macro
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp224 DataRefImpl DR = Section.getRawDataRefImpl(); local
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/llvm/tools/llvm-objdump/
H A DMachODump.cpp316 DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl(); local
318 StringRef SegmentName = MachOOF->getSectionFinalSegmentName(DR);
H A Dllvm-objdump.cpp460 DataRefImpl DR = Section.getRawDataRefImpl(); local
461 SegmentName = MachO->getSectionFinalSegmentName(DR);
791 DataRefImpl DR = Section->getRawDataRefImpl(); local
792 StringRef SegmentName = MachO->getSectionFinalSegmentName(DR);
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp53 DispRange DR; member in struct:__anon26152::SystemZAddressingMode
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,
343 // with range DR. Here we're interested in the range of both the instruction
344 // described by DR an
345 selectDisp(SystemZAddressingMode::DispRange DR, int64_t Val) argument
456 isValidDisp(SystemZAddressingMode::DispRange DR, int64_t Val) argument
612 selectBDAddr(SystemZAddressingMode::DispRange DR, SDValue Addr, SDValue &Base, SDValue &Disp) const argument
623 selectMVIAddr(SystemZAddressingMode::DispRange DR, SDValue Addr, SDValue &Base, SDValue &Disp) const argument
634 selectBDXAddr(SystemZAddressingMode::AddrForm Form, SystemZAddressingMode::DispRange DR, SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) const argument
[all...]
/external/qemu/hw/android/goldfish/
H A Dpipe.c37 # define DR(...) D(__VA_ARGS__) macro
39 # define DR(...) (void)0 macro
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("
[all...]
/external/pcre/dist/sljit/
H A DsljitNativeSPARC_common.c112 #define DR(dr) (reg_map[dr]) macro
537 ((flags & MEM_MASK) <= GPR_REG && (flags & LOAD_DATA)) ? DR(reg) : MOVABLE_INS));
596 FAIL_IF(push_inst(compiler, SLL_W | D(arg2) | S1(OFFS_REG(arg)) | IMM_ARG | argw, DR(arg2)));
603 FAIL_IF(push_inst(compiler, ADD | D(TMP_REG3) | S1(TMP_REG3) | IMM(argw - compiler->cache_argw), DR(TMP_REG3)));
622 delay_slot = ((flags & MEM_MASK) <= GPR_REG && (flags & LOAD_DATA)) ? DR(reg) : MOVABLE_INS;
628 return push_inst(compiler, ADD | D(base) | S1(base) | S2(arg2), DR(base));
790 FAIL_IF(push_inst(compiler, (op == SLJIT_UMUL ? UMUL : SMUL) | D(SLJIT_R0) | S1(SLJIT_R0) | S2(SLJIT_R1), DR(SLJIT_R0)));
791 return push_inst(compiler, RDY | D(SLJIT_R1), DR(SLJIT_R1));
801 FAIL_IF(push_inst(compiler, SRA | D(TMP_REG1) | S1(SLJIT_R0) | IMM(31), DR(TMP_REG1)));
804 FAIL_IF(push_inst(compiler, OR | D(TMP_REG2) | S1(0) | S2(SLJIT_R0), DR(TMP_REG
[all...]
H A DsljitNativeMIPS_common.c92 #define DR(dr) (reg_map[dr]) macro
570 FAIL_IF(push_inst(compiler, ADDIU_W | S(SLJIT_SP) | T(SLJIT_SP) | IMM(-local_size), DR(SLJIT_SP)));
574 FAIL_IF(load_immediate(compiler, DR(TMP_REG1), local_size));
575 FAIL_IF(push_inst(compiler, ADDU_W | S(SLJIT_SP) | TA(0) | D(TMP_REG2), DR(TMP_REG2)));
576 FAIL_IF(push_inst(compiler, SUBU_W | S(SLJIT_SP) | T(TMP_REG1) | D(SLJIT_SP), DR(SLJIT_SP)));
596 FAIL_IF(push_inst(compiler, ADDU_W | SA(4) | TA(0) | D(SLJIT_S0), DR(SLJIT_S0)));
598 FAIL_IF(push_inst(compiler, ADDU_W | SA(5) | TA(0) | D(SLJIT_S1), DR(SLJIT_S1)));
600 FAIL_IF(push_inst(compiler, ADDU_W | SA(6) | TA(0) | D(SLJIT_S2), DR(SLJIT_S2)));
643 FAIL_IF(load_immediate(compiler, DR(TMP_REG1), local_size));
644 FAIL_IF(push_inst(compiler, ADDU_W | S(SLJIT_SP) | T(TMP_REG1) | D(TMP_REG1), DR(TMP_REG
[all...]
/external/clang/lib/Sema/
H A DSemaLookup.cpp673 DeclContext::lookup_const_result DR = DC->lookup(R.getLookupName()); local
674 for (DeclContext::lookup_const_iterator I = DR.begin(), E = DR.end(); I != E;
1770 DeclContext::lookup_result DR = Paths.front().Decls; local
1771 for (DeclContext::lookup_iterator I = DR.begin(), E = DR.end(); I != E; ++I) {

Completed in 520 milliseconds

12