/external/llvm/lib/CodeGen/SelectionDAG/ |
InstrEmitter.cpp | [all...] |
/external/clang/include/clang/Parse/ |
Parser.h | 826 explicit LexedMethod(Parser* P, Decl *MD) 827 : Self(P), D(MD), TemplateScope(false) {} [all...] |
/external/clang/lib/Sema/ |
SemaAccess.cpp | 802 if (CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(EC.Functions.front())) 803 if (MD->isStatic()) return AR_accessible; [all...] |
SemaStmt.cpp | 228 const ObjCMethodDecl *MD = ME->getMethodDecl(); 229 if (MD && MD->getAttr<WarnUnusedResultAttr>()) { [all...] |
SemaDeclAttr.cpp | [all...] |
SemaChecking.cpp | [all...] |
SemaExpr.cpp | 92 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 93 if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) { 314 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 315 numFormalParams = MD->param_size(); [all...] |
/external/llvm/lib/Transforms/Utils/ |
SimplifyCFG.cpp | 679 MDNode* MD = SI->getMetadata(LLVMContext::MD_prof); 680 bool HasWeight = MD && (MD->getNumOperands() == 2 + SI->getNumCases()); 682 for (unsigned MD_i = 1, MD_e = MD->getNumOperands(); MD_i < MD_e; 684 ConstantInt* CI = dyn_cast<ConstantInt>(MD->getOperand(MD_i)); 786 MDNode* MD = TI->getMetadata(LLVMContext::MD_prof); 787 assert(MD); 788 for (unsigned i = 1, e = MD->getNumOperands(); i < e; ++i) { 789 ConstantInt* CI = dyn_cast<ConstantInt>(MD->getOperand(i)); [all...] |
/external/openssl/crypto/rand/ |
rand_win.c | 779 unsigned char md[MD_DIGEST_LENGTH]; local 788 MD(bmbits,size,md); 791 RAND_add(md, MD_DIGEST_LENGTH, 0);
|
/hardware/ti/omap4xxx/domx/make/ |
build.mk | 54 CFLAGS += -MD
|
/external/clang/lib/Rewrite/Frontend/ |
RewriteObjC.cpp | 406 void InsertBlockLiteralsWithinMethod(ObjCMethodDecl *MD); [all...] |
/external/llvm/bindings/ocaml/llvm/ |
llvm_ocaml.c | 539 LLVMValueRef MD; 540 if ((MD = LLVMGetMetadata(Val, Int_val(MDKindID)))) { 542 Field(Option, 0) = (value) MD; 550 LLVMValueRef MD) { 551 LLVMSetMetadata(Val, Int_val(MDKindID), MD); [all...] |
/external/llvm/lib/IR/ |
Core.cpp | 459 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef MD) { 460 unwrap<Instruction>(Inst)->setMetadata(KindID, MD? unwrap<MDNode>(MD) : NULL); 499 if (MDNode *MD = dyn_cast<MDNode>(V)) 500 return wrap(MD->getOperand(Index)); 510 if (MDNode *MD = dyn_cast<MDNode>(V)) 511 return MD->getNumOperands(); [all...] |
AsmWriter.cpp | 444 if (const MDNode *MD = dyn_cast<MDNode>(V)) { 445 if (!MD->isFunctionLocal()) 446 return new SlotTracker(MD->getFunction()); [all...] |
/external/llvm/include/llvm/CodeGen/ |
SelectionDAGNodes.h | [all...] |
SelectionDAG.h | 742 SDValue getMDNode(const MDNode *MD); [all...] |
/external/clang/lib/ARCMigrate/ |
ARCMT.cpp | 484 virtual void MacroExpands(const Token &MacroNameTok, const MacroDirective *MD,
|
/external/clang/include/clang/AST/ |
ExprObjC.h | [all...] |
DeclCXX.h | [all...] |
/external/clang/lib/Edit/ |
RewriteObjCFoundationAPI.cpp | 165 if (const ObjCMethodDecl *MD = IFace->lookupInstanceMethod(subscriptSel)) { 166 if (!MD->isUnavailable()) [all...] |
/external/qemu/ |
ppc-dis.c | 670 /* The MB or ME field in an MD or MDS form instruction. The high 734 /* The RS field in a D, DS, X, XFX, XS, M, MD or MDS form 760 /* The SH field in an MD form instruction. This is split. */ [all...] |
/external/llvm/lib/CodeGen/ |
MachineInstr.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CGObjC.cpp | [all...] |
/external/webkit/Tools/Scripts/ |
webkitdirs.pm | 437 push @coverageSupportOptions, "OTHER_CFLAGS= \$(OTHER_CFLAGS) -DCOVERAGE -MD"; [all...] |
/external/llvm/lib/Analysis/ |
ValueTracking.cpp | 341 if (MDNode *MD = cast<LoadInst>(I)->getMetadata(LLVMContext::MD_range)) 342 computeMaskedBitsLoad(*MD, KnownZero); [all...] |