Searched defs:OID (Results 1 - 11 of 11) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp32 const ObjCInterfaceDecl *OID,
68 const ObjCInterfaceDecl *OID,
70 return LookupFieldBitOffset(CGM, OID, 0, Ivar) /
75 const ObjCImplementationDecl *OID,
77 return LookupFieldBitOffset(CGM, OID->getClassInterface(), OID, Ivar) /
82 const ObjCInterfaceDecl *OID,
116 CGF.CGM.getContext().getASTObjCInterfaceLayout(OID);
118 uint64_t FieldBitOffset = LookupFieldBitOffset(CGF.CGM, OID, 0, Ivar);
31 LookupFieldBitOffset(CodeGen::CodeGenModule &CGM, const ObjCInterfaceDecl *OID, const ObjCImplementationDecl *ID, const ObjCIvarDecl *Ivar) argument
67 ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM, const ObjCInterfaceDecl *OID, const ObjCIvarDecl *Ivar) argument
74 ComputeIvarBaseOffset(CodeGen::CodeGenModule &CGM, const ObjCImplementationDecl *OID, const ObjCIvarDecl *Ivar) argument
81 EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF, const ObjCInterfaceDecl *OID, llvm::Value *BaseValue, const ObjCIvarDecl *Ivar, unsigned CVRQualifiers, llvm::Value *Offset) argument
H A DCGObjC.cpp153 ObjCInterfaceDecl *OID = 0; local
173 OID = ObjTy->getInterface();
174 assert(OID && "Invalid Objective-C class message send");
175 Receiver = Runtime.GetClass(Builder, OID);
246 Receiver, Args, OID,
H A DCGObjCGNU.cpp359 llvm::Constant *GeneratePropertyList(const ObjCImplementationDecl *OID,
458 const ObjCInterfaceDecl *OID);
830 const ObjCInterfaceDecl *OID) {
831 return GetClassNamed(Builder, OID->getNameAsString(), OID->isWeakImported());
1810 llvm::Constant *CGObjCGNU::GeneratePropertyList(const ObjCImplementationDecl *OID, argument
1826 iter = OID->propimpl_begin(), endIter = OID->propimpl_end();
1882 void CGObjCGNU::GenerateClass(const ObjCImplementationDecl *OID) { argument
1887 OID
829 GetClass(CGBuilderTy &Builder, const ObjCInterfaceDecl *OID) argument
2515 FindIvarInterface(ASTContext &Context, const ObjCInterfaceDecl *OID, const ObjCIvarDecl *OIVD) argument
[all...]
H A DCGObjCMac.cpp1209 void GetClassSizeInfo(const ObjCImplementationDecl *OID,
1383 const ObjCInterfaceDecl *OID) {
1384 if (OID->hasAttr<ObjCExceptionAttr>())
1386 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())
1959 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) {
1961 P = OID->all_referenced_protocol_begin(),
1962 E = OID->all_referenced_protocol_end(); P != E; ++P)
2409 const ObjCInterfaceDecl *OID = ID->getClassInterface(); local
2411 for (const ObjCIvarDecl *IVD = OID->all_declared_ivar_begin();
2420 ComputeIvarBaseOffset(CGM, OID, IV
1382 hasObjCExceptionAttribute(ASTContext &Context, const ObjCInterfaceDecl *OID) argument
4775 const ObjCInterfaceDecl *OID = ID->getClassInterface(); local
4851 GetClassSizeInfo(const ObjCImplementationDecl *OID, uint32_t &InstanceStart, uint32_t &InstanceSize) argument
5224 const ObjCInterfaceDecl *OID = ID->getClassInterface(); local
[all...]
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_hash.h159 /** ASN.1 OID */
160 unsigned long OID[16]; member in struct:ltc_hash_descriptor
/external/clang/lib/AST/
H A DDeclPrinter.cpp868 void DeclPrinter::VisitObjCImplementationDecl(ObjCImplementationDecl *OID) { argument
869 std::string I = OID->getNameAsString();
870 ObjCInterfaceDecl *SID = OID->getSuperClass();
877 VisitDeclContext(OID, false);
881 void DeclPrinter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *OID) { argument
882 std::string I = OID->getNameAsString();
883 ObjCInterfaceDecl *SID = OID->getSuperClass();
891 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
901 if (OID->ivar_size() > 0) {
904 for (ObjCInterfaceDecl::ivar_iterator I = OID
[all...]
H A DDeclObjC.cpp115 const ObjCInterfaceDecl *OID = cast<ObjCInterfaceDecl>(this); local
117 for (ObjCCategoryDecl *Cat = OID->getCategoryList();
125 I = OID->all_referenced_protocol_begin(),
126 E = OID->all_referenced_protocol_end(); I != E; ++I)
131 if (const ObjCInterfaceDecl *superClass = OID->getSuperClass())
560 const ObjCInterfaceDecl *OID) {
565 if (OID) {
566 selfTy = Context.getObjCInterfaceType(OID);
559 createImplicitParams(ASTContext &Context, const ObjCInterfaceDecl *OID) argument
H A DASTContext.cpp4148 const ObjCImplementationDecl *OID=cast<ObjCImplementationDecl>(Container); local
4150 i = OID->propimpl_begin(), e = OID->propimpl_end();
4204 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl(); local
4206 S += OID->getNameAsString();
/external/dropbear/libtomcrypt/
H A Dcrypt.tex3894 hashID OBJECT IDENTIFIER, -- OID of hash used
4523 These will encode or decode an OBJECT IDENTIFIER object. The words of the OID are stored in individual \textbf{unsigned long} elements, and must be in the range
5775 /** ASN.1 OID */
5776 unsigned long OID[16];
5838 \subsection{OID Identifier}
/external/clang/lib/Rewrite/
H A DRewriteObjC.cpp791 static std::string getIvarAccessString(ObjCIvarDecl *OID) { argument
792 const ObjCInterfaceDecl *ClassDecl = OID->getContainingInterface();
797 S += OID->getName();
820 ObjCIvarDecl *OID = PID->getPropertyIvarDecl(); local
822 if (!OID)
836 RewriteObjCMethodDecl(OID->getContainingInterface(),
842 // return objc_getProperty(self, _cmd, offsetof(ClassDecl, OID), 1)
871 SynthesizeIvarOffsetComputation(OID, Getr);
875 Getr += "return " + getIvarAccessString(OID);
894 RewriteObjCMethodDecl(OID
1204 RewriteImplementationDecl(Decl *OID) argument
[all...]
/external/clang/tools/libclang/
H A DCIndex.cpp3097 ObjCProtocolDecl *OID = getCursorObjCProtocolRef(C).first; local
3098 assert(OID && "getCursorSpelling(): Missing protocol decl");
3099 return createCXString(OID->getIdentifier()->getNameStart());

Completed in 220 milliseconds