HomeSort by relevance Sort by last modified time
    Searched refs:ivar (Results 1 - 15 of 15) 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 514 static void emitStructGetterCall(CodeGenFunction &CGF, ObjCIvarDecl *ivar,
520 ivar, 0).getAddress();
523 // sizeof (Type of Ivar), isAtomic, false);
532 CharUnits size = CGF.getContext().getTypeSizeInChars(ivar->getType());
621 // Evaluate the ivar's size and alignment.
622 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
623 QualType ivarType = ivar->getType();
645 // acceptable if the ivar is __strong, which won't be true if
678 if (ivar->isBitField()) {
693 // Compute whether the ivar has strong members
824 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
835 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
1091 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
1286 const ObjCIvarDecl *ivar; member in struct:__anon17610::DestroyIvar
    [all...]
CodeGenModule.cpp     [all...]
  /external/chromium_org/third_party/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/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/clang/lib/Sema/
SemaObjCProperty.cpp 626 ObjCIvarDecl *ivar) {
627 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return;
629 QualType ivarType = ivar->getType();
645 // If the ivar is private, and it's implicitly __unsafe_unretained
651 ivar->getAccessControl() == ObjCIvarDecl::Private) {
657 ivar->setType(ivarType);
664 S.Diag(ivar->getLocation(), diag::err_arc_strong_property_ownership)
666 << ivar->getDeclName()
671 S.Diag(ivar->getLocation(), diag::error_weak_property)
673 << 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
782 void USRGenerator::GenObjCIvar(StringRef ivar) {
783 Out << '@' << ivar; local
  /external/clang/include/clang/AST/
DeclObjC.h 660 /// \brief Indicates that the ivar cache does not yet include ivars
852 // the ivar chain is essentially a cached property of ObjCInterfaceDecl.
855 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 230 milliseconds