Home
last modified time | relevance | path

Searched refs:objc_class (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libobjc/objc-private/
H A Dmodule-abi-8.h163 struct objc_class* class_pointer;
187 struct objc_class { struct
188 struct objc_class* class_pointer; /* Pointer to the class's meta argument
190 struct objc_class* super_class; /* Pointer to the super argument
223 struct objc_class* subclass_list; /* Subclasses */ argument
224 struct objc_class* sibling_class; argument
/netbsd-src/external/gpl3/gcc.old/dist/libobjc/objc-private/
H A Dmodule-abi-8.h163 struct objc_class* class_pointer;
187 struct objc_class { struct
188 struct objc_class* class_pointer; /* Pointer to the class's meta argument
190 struct objc_class* super_class; /* Pointer to the super argument
223 struct objc_class* subclass_list; /* Subclasses */ argument
224 struct objc_class* sibling_class; argument
/netbsd-src/external/gpl3/gcc.old/dist/libobjc/objc/
H A Dobjc.h78 typedef struct objc_class *Class;
/netbsd-src/external/gpl3/gcc/dist/libobjc/objc/
H A Dobjc.h78 typedef struct objc_class *Class;
/netbsd-src/external/gpl3/gcc.old/dist/libobjc/
H A Dclass.c563 new_class = objc_calloc (1, sizeof (struct objc_class) + extraBytes); in objc_allocateClassPair()
564 new_meta_class = objc_calloc (1, sizeof (struct objc_class) + extraBytes); in objc_allocateClassPair()
603 new_meta_class->instance_size = sizeof (struct objc_class); in objc_allocateClassPair()
/netbsd-src/external/gpl3/gcc/dist/libobjc/
H A Dclass.c563 new_class = objc_calloc (1, sizeof (struct objc_class) + extraBytes); in objc_allocateClassPair()
564 new_meta_class = objc_calloc (1, sizeof (struct objc_class) + extraBytes); in objc_allocateClassPair()
603 new_meta_class->instance_size = sizeof (struct objc_class); in objc_allocateClassPair()
H A DChangeLog541 * objc-private/module-abi-8.h: Always define struct objc_class and
1518 (struct objc_class): Only define if
1590 * objc-private/module-abi-8.h (struct objc_class): Added.
1958 'struct objc_class' moved here.
1967 objc_class *' in the definition of 'struct objc_object'.
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DMachODump.cpp3903 inline void swapStruct(struct objc_class_t &objc_class) { in swapStruct() argument
3904 sys::swapByteOrder(objc_class.isa); in swapStruct()
3905 sys::swapByteOrder(objc_class.super_class); in swapStruct()
3906 sys::swapByteOrder(objc_class.name); in swapStruct()
3907 sys::swapByteOrder(objc_class.version); in swapStruct()
3908 sys::swapByteOrder(objc_class.info); in swapStruct()
3909 sys::swapByteOrder(objc_class.instance_size); in swapStruct()
3910 sys::swapByteOrder(objc_class.ivars); in swapStruct()
3911 sys::swapByteOrder(objc_class.methodLists); in swapStruct()
3912 sys::swapByteOrder(objc_class.cache); in swapStruct()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp20 struct objc_class;
25 using Class = objc_class *;
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/
H A Ddarwin-sections.def103 DEF_SECTION (objc_class_section, 0, ".objc_class", 1)
/netbsd-src/external/gpl3/gcc/dist/gcc/config/
H A Ddarwin-sections.def105 DEF_SECTION (objc_class_section, 0, ".objc_class", 1)
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseObjc.cpp60 case tok::objc_class: in ParseObjCAtDirectives()
138 MaybeSkipAttributes(tok::objc_class); in ParseObjCAtClassDeclaration()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp5410 static bool objc_class = false; in RewriteObjCClassMetaData() local
5411 if (!objc_class) { in RewriteObjCClassMetaData()
5426 objc_class = true; in RewriteObjCClassMetaData()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A DChangeLog-20037856 add_objc_decls(); remove dependency on struct objc_class.