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

  /external/clang/test/Index/
complete-at-exprstmt.m 3 @interface MyClass { int ivar; }
44 // CHECK-CC3: ObjCIvarDecl:{ResultType int}{TypedText ivar}
  /external/clang/lib/CodeGen/
CGObjC.cpp 348 static void emitStructGetterCall(CodeGenFunction &CGF, ObjCIvarDecl *ivar,
354 ivar, 0).getAddress();
357 // sizeof (Type of Ivar), isAtomic, false);
366 CharUnits size = CGF.getContext().getTypeSizeInChars(ivar->getType());
454 // Evaluate the ivar's size and alignment.
455 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
456 QualType ivarType = ivar->getType();
502 if (ivar->isBitField()) {
517 // Compute whether the ivar has strong members.
531 // alignment of the ivar
615 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
813 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
960 const ObjCIvarDecl *ivar; member in struct:__anon4307::DestroyIvar
    [all...]
CodeGenModule.cpp     [all...]
  /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/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/AST/
DeclObjC.cpp 49 /// getIvarDecl - This method looks up an ivar in this ContextDecl.
53 lookup_const_iterator Ivar, IvarEnd;
54 for (llvm::tie(Ivar, IvarEnd) = lookup(Id); Ivar != IvarEnd; ++Ivar) {
55 if (ObjCIvarDecl *ivar = dyn_cast<ObjCIvarDecl>(*Ivar))
56 return ivar;
671 /// all_declared_ivar_begin - return first ivar declared in this class,
806 // Ivar's can only appear in interfaces, implementations (via synthesize
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 459 ObjCIvarDecl *ivar) {
460 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return;
462 QualType ivarType = ivar->getType();
482 << ivar->getDeclName()
489 << ivar->getDeclName();
495 << ivar->getDeclName()
595 ObjCIvarDecl *Ivar = 0;
596 // Check that we have a valid, previously declared ivar for @synthesize
607 // Add GC __weak to the ivar type if the property is weak.
620 // Check that this is a previously declared 'ivar' in 'IDecl' interfac
    [all...]
SemaChecking.cpp 4080 ObjCIvarDecl *ivar = ref->getDecl(); local
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 683 // the ivar chain is essentially a cached property of ObjCInterfaceDecl.
686 void setIvarList(ObjCIvarDecl *ivar) { IvarList = ivar; }
850 /// \brief Return the class interface that this ivar is logically contained
851 /// in; this is either the interface where the ivar was declared, or the
852 /// interface the ivar is conceptually a part of in the case of synthesized
858 void setNextIvar(ObjCIvarDecl *ivar) { NextIvar = ivar; }
    [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 123 void GenObjCIvar(StringRef ivar);
766 void USRGenerator::GenObjCIvar(StringRef ivar) {
767 Out << '@' << ivar; local
  /external/clang/lib/Rewrite/
RewriteObjC.cpp 358 void SynthesizeIvarOffsetComputation(ObjCIvarDecl *ivar,
    [all...]

Completed in 1154 milliseconds