| /src/external/gpl3/gcc/dist/libobjc/ |
| gc.c | 249 struct objc_ivar_list *ivars; local 261 ivars = class->ivars; 262 if (! ivars) 265 ivar_count = ivars->ivar_count; 269 struct objc_ivar *ivar = &(ivars->ivar_list[i]); 369 struct objc_ivar_list *ivars; local 374 ivars = class->ivars; 375 if (! ivars) [all...] |
| ivars.c | 40 struct objc_ivar_list *ivars = class_->ivars; local 41 if (ivars != NULL) 45 for (i = 0; i < ivars->ivar_count; i++) 47 struct objc_ivar *ivar = &(ivars->ivar_list[i]); 182 if (class_ == Nil || CLS_IS_IN_CONSTRUCTION (class_) || !class_->ivars) 189 /* Count how many ivars we have. */ 190 ivar_list = class_->ivars; 200 /* Copy the ivars. */ 217 struct objc_ivar_list *ivars; local [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/ |
| gc.c | 249 struct objc_ivar_list *ivars; local 261 ivars = class->ivars; 262 if (! ivars) 265 ivar_count = ivars->ivar_count; 269 struct objc_ivar *ivar = &(ivars->ivar_list[i]); 369 struct objc_ivar_list *ivars; local 374 ivars = class->ivars; 375 if (! ivars) [all...] |
| ivars.c | 40 struct objc_ivar_list *ivars = class_->ivars; local 41 if (ivars != NULL) 45 for (i = 0; i < ivars->ivar_count; i++) 47 struct objc_ivar *ivar = &(ivars->ivar_list[i]); 182 if (class_ == Nil || CLS_IS_IN_CONSTRUCTION (class_) || !class_->ivars) 189 /* Count how many ivars we have. */ 190 ivar_list = class_->ivars; 200 /* Copy the ivars. */ 217 struct objc_ivar_list *ivars; local [all...] |
| /src/external/gpl3/gcc/dist/libobjc/objc-private/ |
| module-abi-8.h | 211 struct objc_ivar_list* ivars; /* Pointer to a structure that member in struct:objc_class
|
| /src/external/gpl3/gcc.old/dist/libobjc/objc-private/ |
| module-abi-8.h | 211 struct objc_ivar_list* ivars; /* Pointer to a structure that member in struct:objc_class
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| objc-lang.c | 63 CORE_ADDR ivars; member in struct:objc_class 1403 theclass->ivars = read_memory_unsigned_integer (addr + 24, 4, byte_order);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| objc-lang.c | 63 CORE_ADDR ivars; member in struct:objc_class 1401 theclass->ivars = read_memory_unsigned_integer (addr + 24, 4, byte_order);
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| DeclObjC.h | 1177 /// IvarList - List of all ivars defined by this class; including class 1185 /// Indicates that the ivar cache does not yet include ivars 1434 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCInterfaceDecl 1951 /// ivars. 1978 /// NextIvar - Next Ivar in the list of ivars declared in class; class's 2281 /// class extension may have private ivars. 2379 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCCategoryDecl 2541 /// \@implementation may have private ivars. 2546 /// The arguments used to initialize the ivars 2550 /// Do the ivars of this class require initialization other tha 2685 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCImplementationDecl [all...] |
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGObjCMac.cpp | 961 /// are any weak ivars defined directly in the class. Meaningless unless 1252 /// implementation. If ForClass is true the list of class ivars 1253 /// (i.e. metaclass ivars) is emitted, otherwise the list of 1254 /// interface ivars will be emitted. The return value has type 1454 /// implementation. If ForClass is true the list of class ivars 1455 /// (i.e. metaclass ivars) is emitted, otherwise the list of 1456 /// interface ivars will be emitted. The return value has type 3480 /// Class implementation was compiled under MRC and has MRC weak ivars. 3510 /// Class implementation was compiled under MRC and has MRC weak ivars. 3532 /// __weak ivars 3845 auto ivars = ivarList.beginArray(ObjCTypes.IvarTy); local 5623 SmallVector<const ObjCIvarDecl*, 32> ivars; local 6979 auto ivars = ivarList.beginArray(ObjCTypes.IvarnfABITy); local [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/ |
| MachODump.cpp | 3421 uint64_t ivars; // const ivar_list_t * (64-bit pointer) member in struct:__anon5681::class_ro64_t 3434 uint32_t ivars; /* const ivar_list_t * (32-bit pointer) */ member in struct:__anon5681::class_ro32_t 3627 uint32_t ivars; /* struct objc_ivar_list * (32-bit pointer) */ member in struct:__anon5681::objc_class_t 3730 sys::swapByteOrder(cro.ivars); 3743 sys::swapByteOrder(cro.ivars); 3910 sys::swapByteOrder(objc_class.ivars); 5229 outs() << " ivars "; 5230 sym_name = get_symbol_64(offset + offsetof(struct class_ro64_t, ivars), S, 5231 info, n_value, cro.ivars); 5237 if (cro.ivars != 0 [all...] |