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

  /external/clang/test/Modules/Inputs/
def.h 7 int ivar; variable
  /external/clang/test/Index/
complete-at-exprstmt.m 3 @interface MyClass { int ivar; }
44 // CHECK-CC3: ObjCIvarDecl:{ResultType int}{TypedText ivar}
  /external/svox/pico/lib/
picocep.c 967 picoos_int32 mean, ivar; local
1139 picoos_int32 mean = 0, ivar = 0; local
1311 picoos_int32 mean, ivar; local
    [all...]
  /external/clang/lib/CodeGen/
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
1063 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
1257 const ObjCIvarDecl *ivar; member in struct:__anon5700::DestroyIvar
    [all...]
CodeGenModule.cpp     [all...]
  /external/libxslt/libxslt/
xslt.c 512 xsltVarInfoPtr ivar = cctxt->ivars, ivartmp; local
514 while (ivar) {
515 ivartmp = ivar;
516 ivar = ivar->next;
2249 xsltVarInfoPtr ivar; local
3936 xsltVarInfoPtr ivar = cctxt->ivar; local
3973 xsltVarInfoPtr ivar = cctxt->ivar; local
    [all...]
xsltInternals.h 1350 xsltVarInfoPtr ivar; \/* topmost local variable\/param. *\/ member in struct:_xsltCompilerCtxt
    [all...]
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.mm 78 ObjcField::ObjcField(Ivar ivar)
79 : _ivar(ivar)
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 618 ObjCIvarDecl *ivar) {
619 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return;
621 QualType ivarType = ivar->getType();
637 // If the ivar is private, and it's implicitly __unsafe_unretained
643 ivar->getAccessControl() == ObjCIvarDecl::Private) {
649 ivar->setType(ivarType);
656 S.Diag(ivar->getLocation(), diag::err_arc_strong_property_ownership)
658 << ivar->getDeclName()
663 S.Diag(ivar->getLocation(), diag::error_weak_property)
665 << ivar->getDeclName()
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 53 /// getIvarDecl - This method looks up an ivar in this ContextDecl.
58 for (lookup_const_iterator Ivar = R.begin(), IvarEnd = R.end();
59 Ivar != IvarEnd; ++Ivar) {
60 if (ObjCIvarDecl *ivar = dyn_cast<ObjCIvarDecl>(*Ivar))
61 return ivar;
    [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 120 void GenObjCIvar(StringRef ivar);
163 // The USR for an ivar declared in a class extension is based on the
783 void USRGenerator::GenObjCIvar(StringRef ivar) {
784 Out << '@' << ivar; local
  /external/clang/include/clang/AST/
DeclObjC.h 654 /// \brief Indicates that the ivar cache does not yet include ivars
846 // the ivar chain is essentially a cached property of ObjCInterfaceDecl.
849 void setIvarList(ObjCIvarDecl *ivar) { data().IvarList = ivar; }
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 349 // Rewriting ivar access
351 virtual void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar,
539 // Rewriting ivar
540 virtual void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar,
806 // Synthesize an explicit cast to gain access to the ivar.
    [all...]
RewriteModernObjC.cpp 151 // ivar bitfield grouping containers
154 // This container maps an <class, group number for ivar> tuple to the type
366 // Computes ivar bitfield group no.
368 // Names field decl. for ivar bitfield group.
370 // Names struct type for ivar bitfield group.
372 // Names symbol for ivar bitfield group field offset.
374 // Given an ivar bitfield, it builds (or finds) its group record type.
459 // Rewriting ivar
460 void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar,
    [all...]

Completed in 584 milliseconds