Searched refs:MD (Results 101 - 125 of 142) sorted by relevance

123456

/external/clang/lib/AST/
H A DExprConstant.cpp2523 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); local
2524 if (MD && !MD->isStatic()) {
2688 const ValueDecl *MD = E->getMemberDecl(); local
2695 } else if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(MD)) {
2701 if (MD->getType()->isReferenceType()) {
2703 if (!HandleLValueToRValueConversion(this->Info, E, MD->getType(), Result,
2916 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl())) {
2917 if (MD->isStatic()) {
2919 return Success(MD);
6867 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); local
[all...]
H A DDecl.cpp540 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
543 if (MD->getType()->getLinkage() == UniqueExternalLinkage)
549 = MD->getTemplateSpecializationInfo()) {
556 if (shouldConsiderTemplateVis(MD, spec)) {
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp134 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
137 const ImplicitParamDecl *SelfD = MD->getSelfDecl();
148 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
149 if (!MD->isStatic()) {
155 loc::MemRegionVal L = svalBuilder.getCXXThis(MD, SFC);
1491 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(member)) {
1493 SVal MDVal = svalBuilder.getFunctionPointer(MD);
H A DPathDiagnostic.cpp710 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
711 return MD->getSourceRange();
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp1352 ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl); local
1353 for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(),
1354 E = MD->protocol_end(); P != E; ++P)
1374 ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl); local
1375 for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(),
1376 E = MD->protocol_end(); P != E; ++P)
H A DSemaAccess.cpp793 if (CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(EC.Functions.front()))
794 if (MD->isStatic()) return AR_accessible;
1828 if (ObjCMethodDecl *MD = getCurMethodDecl())
1829 ClassOfMethodDecl = MD->getClassInterface();
H A DSemaDeclAttr.cpp993 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
994 if (MD->isInstanceMethod()) {
2398 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
2399 if (!MD->isVariadic()) {
2448 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2449 if (MD->getResultType()->isVoidType()) {
3890 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
3891 returnType = MD->getResultType();
/external/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp969 const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD();
970 if (MD)
971 MI->addOperand(MachineOperand::CreateMetadata(MD));
/external/clang/include/clang/Parse/
H A DParser.h831 explicit LexedMethod(Parser* P, Decl *MD) argument
832 : Self(P), D(MD), TemplateScope(false) {}
1029 explicit LateParsedTemplatedFunction(Decl *MD) argument
1030 : D(MD) {}
/external/openssl/crypto/rand/
H A Drand_win.c788 MD(bmbits,size,md);
/external/bison/lib/
H A DMakefile418 if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
425 if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp164 if (const ObjCMethodDecl *MD = IFace->lookupInstanceMethod(subscriptSel)) {
165 if (!MD->isUnavailable())
/external/clang/include/clang/Sema/
H A DSema.h665 void setMethod(CXXMethodDecl *MD) { Pair.setPointer(MD); } argument
1275 bool AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD);
1280 void DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD);
1464 CXXSpecialMember getSpecialMember(const CXXMethodDecl *MD);
3382 CXXMethodDecl *MD);
3388 ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD);
3394 ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD);
3399 ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD);
3404 ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD);
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c539 LLVMValueRef MD; local
540 if ((MD = LLVMGetMetadata(Val, Int_val(MDKindID)))) {
542 Field(Option, 0) = (value) MD;
550 LLVMValueRef MD) {
551 LLVMSetMetadata(Val, Int_val(MDKindID), MD);
549 llvm_set_metadata(LLVMValueRef Val, value MDKindID, LLVMValueRef MD) argument
/external/llvm/lib/VMCore/
H A DCore.cpp452 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef MD) { argument
453 unwrap<Instruction>(Inst)->setMetadata(KindID, MD? unwrap<MDNode>(MD) : NULL);
492 if (MDNode *MD = dyn_cast<MDNode>(V))
493 return wrap(MD->getOperand(Index));
503 if (MDNode *MD = dyn_cast<MDNode>(V))
504 return MD->getNumOperands();
H A DAsmWriter.cpp410 if (const MDNode *MD = dyn_cast<MDNode>(V)) {
411 if (!MD->isFunctionLocal())
412 return new SlotTracker(MD->getFunction());
1159 void printMDNodeBody(const MDNode *MD);
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp404 void InsertBlockLiteralsWithinMethod(ObjCMethodDecl *MD);
3718 ObjCMethodDecl *MD) {
3719 ObjCInterfaceDecl *IFace = MD->getClassInterface();
3721 Name += "__" + MD->getSelector().getAsString();
3728 void RewriteObjC::InsertBlockLiteralsWithinMethod(ObjCMethodDecl *MD) { argument
3730 //SourceLocation FunLocStart = MD->getLocStart();
3731 SourceLocation FunLocStart = MD->getLocStart();
3733 BuildUniqueMethodName(FuncName, MD);
4943 ObjCMethodDecl *MD = cast<ObjCMethodDecl>(D); local
4944 if (CompoundStmt *Body = MD
3717 BuildUniqueMethodName(std::string &Name, ObjCMethodDecl *MD) argument
[all...]
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1436 const MDNode *MD; member in class:llvm::SDNode::MDNodeSDNode
1439 : SDNode(ISD::MDNODE_SDNODE, DebugLoc(), getSDVTList(MVT::Other)), MD(md) {}
1442 const MDNode *getMD() const { return MD; }
/external/clang/include/clang/Serialization/
H A DASTWriter.h695 MacroDefinition *MD);
/external/clang/include/clang/AST/
H A DExprObjC.h1260 void setMethodDecl(ObjCMethodDecl *MD) { argument
1262 SelectorOrMethod = reinterpret_cast<uintptr_t>(MD);
/external/qemu/
H A Dppc-dis.c670 /* 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. */
1334 /* The MB or ME field in an MD or MDS form instruction. The high bit
1479 /* The SH field in an MD form instruction. This is split. */
1696 /* An MD form instruction. */
1697 #define MD(op, xop, rc) (OP (op) | ((((unsigned long)(xop)) & 0x7) << 2) | ((rc) & 1))
1698 #define MD_MASK MD (0x3f, 0x7, 1)
3375 { "rotldi", MD(30,0,0), MDMB_MASK, PPC64, { RA, RS, SH6 } },
3376 { "clrldi", MD(3
1692 #define MD macro
[all...]
/external/clang/lib/Serialization/
H A DASTWriter.cpp1816 if (MacroDefinition *MD = dyn_cast<MacroDefinition>(*E)) {
1818 MacroDefinitions[MD] = NextPreprocessorEntityID;
1820 AddIdentifierRef(MD->getName(), Record);
4467 MacroDefinition *MD) {
4468 assert(MacroDefinitions.find(MD) == MacroDefinitions.end());
4469 MacroDefinitions[MD] = ID;
4466 MacroDefinitionRead(serialization::PreprocessedEntityID ID, MacroDefinition *MD) argument
/external/llvm/lib/Analysis/
H A DValueTracking.cpp332 if (MDNode *MD = cast<LoadInst>(I)->getMetadata(LLVMContext::MD_range))
333 computeMaskedBitsLoad(*MD, KnownZero);
/external/llvm/lib/CodeGen/
H A DMachineInstr.cpp1634 const MDNode *MD = MO.getMetadata();
1635 if (const MDString *MDS = dyn_cast<MDString>(MD->getOperand(2)))
/external/clang/lib/CodeGen/
H A DCGObjC.cpp1311 ObjCMethodDecl *MD,
1313 MD->createImplicitParams(CGM.getContext(), IMP->getClassInterface());
1314 StartObjCMethod(MD, IMP->getClassInterface(), MD->getLocStart());
1310 GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP, ObjCMethodDecl *MD, bool ctor) argument

Completed in 942 milliseconds

123456