HomeSort by relevance Sort by last modified time
    Searched defs:BD (Results 1 - 18 of 18) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
StackAddrEscapeChecker.cpp 68 const BlockDecl *BD = BR->getCodeRegion()->getDecl();
69 SourceLocation L = BD->getLocStart();
70 range = BD->getSourceRange();
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 192 const BlockDataRegion *BD = MemMgr.getBlockDataRegion(BC, locContext);
193 return loc::MemRegionVal(BD);
MemRegion.cpp 366 const BlockDecl *BD, CanQualType,
370 ID.AddPointer(BD);
374 BlockTextRegion::ProfileRegion(ID, BD, locTy, AC, superRegion);
694 else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
696 getBlockTextRegion(BD,
697 C.getCanonicalType(BD->getSignatureAsWritten()->getType()),
723 const BlockDecl *BD = BC->getDecl();
724 if (!BD->hasCaptures()) {
792 MemRegionManager::getBlockTextRegion(const BlockDecl *BD, CanQualType locTy,
794 return getSubRegion<BlockTextRegion>(BD, locTy, AC, getCodeRegion())
    [all...]
  /external/clang/test/FixIt/
fixit.cpp 156 class BD: public AD {};
158 void test (BD &br) {
160 BD b;
161 aPtr = b; // expected-error {{assigning to 'AD *' from incompatible type 'BD'; take the address with &}}
162 aPtr = br; // expected-error {{assigning to 'AD *' from incompatible type 'BD'; take the address with &}}
  /external/llvm/lib/MC/
MCExpr.cpp 330 MCSymbolData &BD = Asm->getSymbolData(SB);
332 if (AD.getFragment() == BD.getFragment()) {
333 Addend += (AD.getOffset() - BD.getOffset());
350 const MCSectionData &SecB = *BD.getFragment()->getParent();
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 47 BugDriver &BD;
49 ReducePassList(BugDriver &bd) : BD(bd) {}
71 if (BD.runPasses(BD.getProgram(), Prefix, PfxOutput))
75 OrigProgram = BD.Program;
77 BD.Program = ParseInputFile(PrefixOutput.str(), BD.getContext());
78 if (BD.Program == 0)
    [all...]
Miscompilation.cpp 47 BugDriver &BD;
49 ReduceMiscompilingPasses(BugDriver &bd) : BD(bd) {}
70 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false/*delete*/,
74 BD.setPassesToRun(Suffix);
75 BD.EmitProgressBitcode(BD.getProgram(), "pass-error", false);
76 exit(BD.debugOptimizerCrash())
    [all...]
  /external/clang/include/clang/Analysis/
AnalysisContext.h 162 getReferencedBlockVars(const BlockDecl *BD);
323 const BlockDecl *BD;
329 const BlockDecl *bd)
330 : LocationContext(Block, ctx, parent), BD(bd) {}
335 const BlockDecl *getBlockDecl() const { return BD; }
340 const LocationContext *parent, const BlockDecl *bd) {
341 ProfileCommon(ID, Block, ctx, parent, bd);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 539 const BlockDecl *BD;
543 BlockTextRegion(const BlockDecl *bd, CanQualType lTy,
545 : CodeTextRegion(sreg, BlockTextRegionKind), BD(bd), AC(ac), locTy(lTy) {}
553 return BD;
562 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const BlockDecl *BD,
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 154 if (const BlockDecl *BD = dyn_cast<BlockDecl>(DC)) {
156 CGM.getBlockMangledName(GlobalDecl(), Name, BD);
    [all...]
CGClass.cpp     [all...]
CGExprConstant.cpp 464 const CXXRecordDecl *BD = Base->getType()->getAsCXXRecordDecl();
465 CharUnits BaseOffset = Layout.getBaseClassOffset(BD);
466 Bases.push_back(BaseInfo(BD, BaseOffset, BaseNo));
    [all...]
CodeGenModule.cpp 336 else if (const BlockDecl *BD = dyn_cast<BlockDecl>(ND))
337 getCXXABI().getMangleContext().mangleBlock(BD, Out);
353 const BlockDecl *BD) {
358 MangleCtx.mangleGlobalBlock(BD, Out);
360 MangleCtx.mangleCtorBlock(CD, GD.getCtorType(), BD, Out);
362 MangleCtx.mangleDtorBlock(DD, GD.getDtorType(), BD, Out);
364 MangleCtx.mangleBlock(cast<DeclContext>(D), BD, Out);
    [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/qemu/
ppc-dis.c 460 /* The BD field in a B form instruction. The lower two bits are
462 #define BD BBA + 1
465 /* The BD field in a B form instruction when absolute addressing is
467 #define BDA BD + 1
470 /* The BD field in a B form instruction when the - modifier is used.
476 /* The BD field in a B form instruction when the - modifier is used
482 /* The BD field in a B form instruction when the + modifier is used.
488 /* The BD field in a B form instruction when the + modifier is used
    [all...]
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c     [all...]

Completed in 413 milliseconds