/external/llvm/include/llvm/CodeGen/ |
MachineInstrBuilder.h | 171 const MachineInstrBuilder &addMetadata(const MDNode *MD) const { 172 MI->addOperand(*MF, MachineOperand::CreateMetadata(MD));
|
/external/clang/lib/CodeGen/ |
CGCXXABI.h | 133 virtual llvm::Constant *EmitMemberPointer(const CXXMethodDecl *MD);
|
CodeGenFunction.h | [all...] |
CodeGenFunction.cpp | 470 const CXXMethodDecl *MD = cast<CXXMethodDecl>(D); 471 if (MD->getParent()->isLambda() && 472 MD->getOverloadedOperator() == OO_Call) { 474 MD->getParent()->getCaptureFields(LambdaCaptureFields, [all...] |
/external/clang/lib/Lex/ |
PPExpressions.cpp | 124 MacroDirective *MD = Macro; 126 if (!MD && Result.Val != 0) 127 MD = PP.getMacroDirective(II); 128 Callbacks->Defined(PeekTok, MD);
|
/external/clang/tools/libclang/ |
CIndexUSRs.cpp | 78 void VisitObjCMethodDecl(const ObjCMethodDecl *MD); 214 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 215 if (MD->isStatic()) 217 if (unsigned quals = MD->getTypeQualifiers())
|
CIndex.cpp | 436 if (MacroDefinition *MD = dyn_cast<MacroDefinition>(PPE)) { 437 if (Visit(MakeMacroDefinitionCursor(MD, TU))) [all...] |
CXType.cpp | 556 if (const ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(D)) 557 return MakeCXType(MD->getResultType(), cxcursor::getCursorTU(C));
|
Indexing.cpp | 284 virtual void MacroDefined(const Token &Id, const MacroDirective *MD) { 290 const MacroDirective *MD) { 294 virtual void MacroExpands(const Token &MacroNameTok, const MacroDirective *MD, [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngine.cpp | 134 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); 811 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Callee)) { 812 if (MD->isInstance()) { [all...] |
/external/clang/include/clang/AST/ |
ASTContext.h | [all...] |
/external/clang/lib/AST/ |
ItaniumMangle.cpp | 121 void mangleThunk(const CXXMethodDecl *MD, 322 void mangleObjCMethodName(const ObjCMethodDecl *MD); [all...] |
RecordLayoutBuilder.cpp | [all...] |
Expr.cpp | 472 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 473 if (MD->isVirtual() && IT != PrettyFunctionNoVirtual) 475 if (MD->isStatic()) 506 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 507 const FunctionType *FT = MD->getType()->castAs<FunctionType>(); 512 RefQualifierKind Ref = MD->getRefQualifier(); 580 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CurrentDecl)) { 583 Out << (MD->isInstanceMethod() ? '-' : '+'); 588 if (const ObjCInterfaceDecl *ID = MD->getClassInterface()) 592 dyn_cast<ObjCCategoryImplDecl>(MD->getDeclContext()) [all...] |
ExprConstant.cpp | [all...] |
Decl.cpp | 776 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 779 if (MD->getType()->getLinkage() == UniqueExternalLinkage) 785 = MD->getTemplateSpecializationInfo()) { 786 mergeTemplateLV(LV, MD, spec); 788 explicitSpecSuppressor = MD; 792 } else if (isExplicitMemberSpecialization(MD)) { 793 explicitSpecSuppressor = MD; [all...] |
/external/clang/lib/Serialization/ |
ASTReader.cpp | [all...] |
/external/clang/include/clang/Serialization/ |
ASTWriter.h | 707 MacroDefinition *MD); 711 virtual void UndefinedMacro(MacroDirective *MD);
|
/external/elfutils/libelf/ |
Makefile.am | 122 if $(COMPILE.os) -c -o $@ -fpic -DPIC -DSHARED -MT $@ -MD -MP \
|
/external/llvm/lib/Transforms/Utils/ |
BasicBlockUtils.cpp | 183 if (MemoryDependenceAnalysis *MD = 185 MD->invalidateCachedPredecessors();
|
/external/clang/lib/Rewrite/Frontend/ |
RewriteModernObjC.cpp | 488 void InsertBlockLiteralsWithinMethod(ObjCMethodDecl *MD); [all...] |
/external/clang/lib/Sema/ |
AnalysisBasedWarnings.cpp | 335 else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 336 ReturnsVoid = MD->getResultType()->isVoidType(); 337 HasNoReturn = MD->hasAttr<NoReturnAttr>(); 383 } else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 385 << 1 << MD; [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | 703 void setMethod(CXXMethodDecl *MD) { Pair.setPointer(MD); } [all...] |
/build/core/ |
definitions.mk | 816 -a $@ -MD \ 850 -a $@ -MD \ 940 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $< 966 -MD -MF $(patsubst %.o,%.d,$@) -o $@ $< [all...] |
/external/clang/lib/Analysis/ |
ThreadSafety.cpp | 326 const CXXMethodDecl* MD = 328 if (LockReturnedAttr* At = MD->getAttr<LockReturnedAttr>()) { [all...] |