Searched refs:OD (Results 1 - 13 of 13) sorted by relevance

/freebsd-12-stable/sys/gnu/dts/arm/
H A Dst-pincfg.h19 #define OD (1 << 25) macro
37 #define BIDIR (OE | OD)
39 #define BIDIR_PU (OE | PU | OD)
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNSAutoreleasePoolChecker.cpp48 const ObjCInterfaceDecl *OD = msg.getReceiverInterface(); local
49 if (!OD)
51 if (!OD->getIdentifier()->isStr("NSAutoreleasePool"))
H A DGCDAntipatternChecker.cpp81 if (const auto *OD = dyn_cast<ObjCMethodDecl>(D)) {
82 if (const auto *CD = dyn_cast<ObjCContainerDecl>(OD->getParent())) {
H A DLocalizationChecker.cpp803 const ObjCInterfaceDecl *OD = msg.getReceiverInterface();
804 if (!OD)
806 const IdentifierInfo *odInfo = OD->getIdentifier();
834 while (argumentNumber < 0 && OD->getSuperClass() != nullptr) {
835 for (const auto *P : OD->all_referenced_protocols()) {
841 OD = OD->getSuperClass();
842 argumentNumber = getLocalizedArgumentForSelector(OD->getIdentifier(), S);
976 const ObjCInterfaceDecl *OD = msg.getReceiverInterface();
977 if (!OD)
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclContextInternals.h175 for (DeclsTy::iterator OD = Vec.begin(), ODEnd = Vec.end();
176 OD != ODEnd; ++OD) {
177 NamedDecl *OldD = *OD;
179 *OD = D;
H A DDeclCXX.h2681 void setOperatorDelete(FunctionDecl *OD, Expr *ThisArg);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
H A DRetainSummaryManager.cpp958 for (const auto *OD : MD->overridden_methods()) {
959 const ParmVarDecl *OP = OD->parameters()[parm_idx];
960 if (applyParamAnnotationEffect(OP, parm_idx, OD, Template))
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp2667 void CXXDestructorDecl::setOperatorDelete(FunctionDecl *OD, Expr *ThisArg) {
2669 if (OD && !First->OperatorDelete) {
2670 First->OperatorDelete = OD;
2673 L->ResolvedOperatorDelete(First, OD, ThisArg);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp6309 bool operator==(const OperationData &OD) const {
6310 assert(((Kind != OD.Kind) || ((!LHS == !OD.LHS) && (!RHS == !OD.RHS))) &&
6312 return this == &OD || (Kind == OD.Kind && Opcode == OD.Opcode);
6314 bool operator!=(const OperationData &OD) const { return !(*this == OD); }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp1188 for (auto &OD : OutputDeps)
1189 if (!Added.test(OD.second)) {
1190 AdjK[OD.first].push_back(OD.second);
1191 Added.set(OD.second);
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp3050 } else if (const auto OD = dyn_cast<ObjCMethodDecl>(Signature)) {
3051 SignatureSourceRange = OD->getSourceRange();
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp1575 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const;
6467 const ObjCImplDecl *OD) const {
6468 return OD->getClassMethod(GetNullarySelector("load")) != nullptr ||
6469 OD->getClassInterface()->hasAttr<ObjCNonLazyClassAttr>() ||
6470 OD->hasAttr<ObjCNonLazyClassAttr>();
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp592 bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const {
595 return OD->getClassMethod(LoadSel) != nullptr;

Completed in 492 milliseconds