HomeSort by relevance Sort by last modified time
    Searched refs:Ivar (Results 1 - 24 of 24) 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();
617 // acceptable if the ivar is __strong, which won't be true if
650 if (ivar->isBitField()) {
665 // Compute whether the ivar has strong members
796 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
807 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
1057 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
1247 const ObjCIvarDecl *ivar; member in struct:__anon5154::DestroyIvar
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 539 ObjCIvarDecl *ivar) {
540 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return;
542 QualType ivarType = ivar->getType();
558 // If the ivar is private, and it's implicitly __unsafe_unretained
564 ivar->getAccessControl() == ObjCIvarDecl::Private) {
570 ivar->setType(ivarType);
579 << ivar->getDeclName()
586 << ivar->getDeclName();
592 << ivar->getDeclName()
611 /// 'ivar's attribute, if any. If no backing 'ivar', property'
    [all...]
SemaAccess.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaDeclObjC.cpp     [all...]
SemaLookup.cpp     [all...]
SemaExprObjC.cpp     [all...]
SemaDecl.cpp 712 // reference the ivar.
714 if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) {
716 ExprResult E(LookupInObjCMethod(Result, S, Ivar->getIdentifier()));
    [all...]
TreeTransform.h     [all...]
SemaExpr.cpp     [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;
782 /// all_declared_ivar_begin - return first ivar declared in this class,
    [all...]
ASTImporter.cpp     [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 801 // the ivar chain is essentially a cached property of ObjCInterfaceDecl.
804 void setIvarList(ObjCIvarDecl *ivar) { data().IvarList = ivar; }
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 576 // and '_prop' is not declared, we will encounter a '_prop' ivar before
    [all...]

Completed in 1109 milliseconds