HomeSort by relevance Sort by last modified time
    Searched refs:Ivar (Results 1 - 25 of 25) sorted by null

  /external/webkit/Source/WebCore/bridge/objc/
objc_header.h 38 typedef Ivar IvarStructPtr;
objc_runtime.mm 78 ObjcField::ObjcField(Ivar ivar)
79 : _ivar(ivar)
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 34 const ObjCIvarDecl *Ivar) {
35 const ObjCInterfaceDecl *Container = Ivar->getContainingInterface();
39 // decl context for the ivar.
41 // If we know have an implementation (and the ivar is in it) then
58 if (Ivar == IVD)
62 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
69 const ObjCIvarDecl *Ivar) {
70 return LookupFieldBitOffset(CGM, OID, 0, Ivar) /
76 const ObjCIvarDecl *Ivar) {
77 return LookupFieldBitOffset(CGM, OID->getClassInterface(), OID, Ivar) /
    [all...]
CGObjCRuntime.h 69 // Utility functions for unified ivar access. These need to
73 /// Compute an offset to the given ivar, suitable for passing to
78 /// sythesized ivar.
81 const ObjCIvarDecl *Ivar);
84 const ObjCIvarDecl *Ivar);
89 const ObjCIvarDecl *Ivar,
253 const ObjCIvarDecl *Ivar,
257 const ObjCIvarDecl *Ivar) = 0;
CGValue.h 133 // objective-c's ivar
134 bool Ivar:1;
136 // objective-c's ivar is an array
165 this->Ivar = this->ObjIsArray = this->NonGC = this->GlobalObjCRef = false;
189 bool isObjCIvar() const { return Ivar; }
190 void setObjCIvar(bool Value) { Ivar = Value; }
CGObjCMac.cpp 761 // gc ivar layout bitmap calculation helper caches.
    [all...]
CGObjCGNU.cpp 397 const ObjCIvarDecl *Ivar);
507 const ObjCIvarDecl *Ivar,
511 const ObjCIvarDecl *Ivar);
    [all...]
CGExpr.cpp     [all...]
CodeGenFunction.h     [all...]
CGObjC.cpp 486 static void emitStructGetterCall(CodeGenFunction &CGF, ObjCIvarDecl *ivar,
492 ivar, 0).getAddress();
495 // sizeof (Type of Ivar), isAtomic, false);
504 CharUnits size = CGF.getContext().getTypeSizeInChars(ivar->getType());
593 // Evaluate the ivar's size and alignment.
594 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
595 QualType ivarType = ivar->getType();
641 if (ivar->isBitField()) {
656 // Compute whether the ivar has strong members.
670 // alignment of the ivar
784 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
795 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
1041 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
1230 const ObjCIvarDecl *ivar; member in struct:__anon4719::DestroyIvar
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 491 ObjCIvarDecl *ivar) {
492 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return;
494 QualType ivarType = ivar->getType();
514 << ivar->getDeclName()
521 << ivar->getDeclName();
527 << ivar->getDeclName()
546 /// 'ivar's attribute, if any. If no backing 'ivar', property's
549 ObjCPropertyDecl *property, ObjCIvarDecl *ivar) {
556 if (!ivar) {
    [all...]
SemaAccess.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaDeclObjC.cpp     [all...]
SemaLookup.cpp     [all...]
SemaExprObjC.cpp     [all...]
SemaDecl.cpp 630 // reference the ivar.
632 if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) {
634 ExprResult E(LookupInObjCMethod(Result, S, Ivar->getIdentifier()));
    [all...]
SemaExpr.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/ARCMigrate/
TransProperties.cpp 16 // - If a property is synthesized, adds the ownership specifier in the ivar
302 ObjCIvarDecl *Ivar;
304 PlusOneAssign(ObjCIvarDecl *D) : Ivar(D) {}
309 if (RE->getDecl() != Ivar)
  /external/clang/lib/AST/
DeclObjC.cpp 51 /// getIvarDecl - This method looks up an ivar in this ContextDecl.
55 lookup_const_iterator Ivar, IvarEnd;
56 for (llvm::tie(Ivar, IvarEnd) = lookup(Id); Ivar != IvarEnd; ++Ivar) {
57 if (ObjCIvarDecl *ivar = dyn_cast<ObjCIvarDecl>(*Ivar))
58 return ivar;
756 /// all_declared_ivar_begin - return first ivar declared in this class,
901 // Ivar's can only appear in interfaces, implementations (via synthesize
    [all...]
ASTImporter.cpp     [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 774 // the ivar chain is essentially a cached property of ObjCInterfaceDecl.
777 void setIvarList(ObjCIvarDecl *ivar) { data().IvarList = ivar; }
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp 403 // Rewriting ivar
404 virtual void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar,
818 // Synthesize an explicit cast to gain access to the ivar.
    [all...]

Completed in 525 milliseconds