| /src/external/gpl3/gcc/dist/libobjc/objc-private/ |
| runtime.h | 48 extern BOOL __objc_add_class_to_hash (Class); /* (objc-class.c) */ 49 extern void __objc_init_class_tables (void); /* (objc-class.c) */ 51 extern void __objc_install_premature_dtable (Class); /* (objc-dispatch.c) */ 52 extern void __objc_resolve_class_links (void); /* (objc-class.c) */ 53 extern void __objc_update_dispatch_table_for_class (Class);/* (objc-msg.c) */ 57 extern BOOL __objc_init_class (Class class); /* init.c */ 58 extern void class_add_method_list (Class, struct objc_method_list *); 60 /* Registering instance methods as class methods for root classes * [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/objc-private/ |
| runtime.h | 48 extern BOOL __objc_add_class_to_hash (Class); /* (objc-class.c) */ 49 extern void __objc_init_class_tables (void); /* (objc-class.c) */ 51 extern void __objc_install_premature_dtable (Class); /* (objc-dispatch.c) */ 52 extern void __objc_resolve_class_links (void); /* (objc-class.c) */ 53 extern void __objc_update_dispatch_table_for_class (Class);/* (objc-msg.c) */ 57 extern BOOL __objc_init_class (Class class); /* init.c */ 58 extern void class_add_method_list (Class, struct objc_method_list *); 60 /* Registering instance methods as class methods for root classes * [all...] |
| /src/external/gpl3/gcc/dist/libobjc/objc/ |
| Object.h | 1 /* Interface for the Object class for Objective-C. 35 /* The Object class is a very minimal root class included with the 40 your own root class, different from Object. 43 expected to provide its own root class (typically called NSObject), 52 Class isa; /* A pointer to the instance's class structure. */ 54 - (Class)class;
|
| objc.h | 60 /* The basic Objective-C types (SEL, Class, id) are defined as pointer 69 whether a class implements a selector or not, and if you have a 70 selector and know that the class implements it, you can use it to 71 call the method for an object in the class. */ 74 /* A Class is a class (in the object-oriented sense). In Objective-C 75 there is the complication that each Class is an object itself, and 76 so belongs to a class too. This class that a class belongs to i [all...] |
| runtime.h | 63 name of the category, the class it belongs to, and the methods, 144 /* Return the class of 'object', or Nil if the object is nil. If 145 'object' is a class, the meta class is returned; if 'object' is a 146 meta class, the root meta class is returned (note that this is 148 object_get_class(), which for a meta class would return the meta 149 class itself). This function is inline, so it is really fast and 152 static inline Class 238 /* Create an instance of class 'class_', adding extraBytes to the siz [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/objc/ |
| Object.h | 1 /* Interface for the Object class for Objective-C. 35 /* The Object class is a very minimal root class included with the 40 your own root class, different from Object. 43 expected to provide its own root class (typically called NSObject), 52 Class isa; /* A pointer to the instance's class structure. */ 54 - (Class)class;
|
| objc.h | 60 /* The basic Objective-C types (SEL, Class, id) are defined as pointer 69 whether a class implements a selector or not, and if you have a 70 selector and know that the class implements it, you can use it to 71 call the method for an object in the class. */ 74 /* A Class is a class (in the object-oriented sense). In Objective-C 75 there is the complication that each Class is an object itself, and 76 so belongs to a class too. This class that a class belongs to i [all...] |
| runtime.h | 63 name of the category, the class it belongs to, and the methods, 144 /* Return the class of 'object', or Nil if the object is nil. If 145 'object' is a class, the meta class is returned; if 'object' is a 146 meta class, the root meta class is returned (note that this is 148 object_get_class(), which for a meta class would return the meta 149 class itself). This function is inline, so it is really fast and 152 static inline Class 238 /* Create an instance of class 'class_', adding extraBytes to the siz [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| PrettyClassDefinitionDumper.h | 23 class BitVector; 27 class ClassLayout; 28 class LinePrinter; 30 class ClassDefinitionDumper : public PDBSymDumper { 34 void start(const PDBSymbolTypeUDT &Class); 35 void start(const ClassLayout &Class); 38 void prettyPrintClassIntro(const ClassLayout &Class); 39 void prettyPrintClassOutro(const ClassLayout &Class);
|
| PrettyTypeDumper.cpp | 102 while (auto Class = E.getNext()) { 110 if (Class->getUnmodifiedTypeId() != 0) { 115 if (Printer.IsTypeExcluded(Class->getName(), Class->getLength())) { 120 auto Layout = std::make_unique<ClassLayout>(std::move(Class)); 149 // Dump member enums when dumping their class definition. 180 const PDBSymbolTypeUDT &Class) { 181 if (Class.getUnmodifiedTypeId() != 0) { 182 if (Class.isConstType()) 184 if (Class.isVolatileType() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| ObjCARCInstKind.h | 25 /// (possibly united with the ARCRuntimeEntrypoint class) and an enum that deals 28 enum class ARCInstKind { 56 raw_ostream &operator<<(raw_ostream &OS, const ARCInstKind Class); 58 /// Test if the given class is a kind of user. 59 bool IsUser(ARCInstKind Class); 61 /// Test if the given class is objc_retain or equivalent. 62 bool IsRetain(ARCInstKind Class); 64 /// Test if the given class is objc_autorelease or equivalent. 65 bool IsAutorelease(ARCInstKind Class); 67 /// Test if the given class represents instructions which return thei [all...] |
| /src/external/gpl3/gcc/dist/fixincludes/tests/base/objc/ |
| runtime.h | 18 Class _Nullable subclassing, 19 void (^ _Nonnull block)(Class _Nonnull aClass, BOOL * _Nonnull stop)
|
| /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/objc/ |
| runtime.h | 18 Class _Nullable subclassing, 19 void (^ _Nonnull block)(Class _Nonnull aClass, BOOL * _Nonnull stop)
|
| /src/external/gpl3/gcc/dist/libobjc/ |
| Object.m | 1 /* The implementation of class Object for Objective-C. 31 - (Class)class
|
| class.c | 1 /* GNU Objective C Runtime class related functions 5 Lock-free class table code designed and written from scratch by 28 /* The code in this file critically affects class method invocation 33 that class method invocations are slow. The reason is that when you 42 objc_get_class returns the class pointer corresponding to the string 48 caching the class pointer: 50 Class arrayClass = [NSArray class]; 58 In this case, you always perform a class lookup (the first one), but 60 instance method invocation. It helps if you have many class metho 459 Class class; local 490 Class class = objc_getClass (name); local 501 Class class = objc_getClass (name); local 740 Class class; local 798 Class class = Nil; local [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/ |
| Object.m | 1 /* The implementation of class Object for Objective-C. 31 - (Class)class
|
| class.c | 1 /* GNU Objective C Runtime class related functions 5 Lock-free class table code designed and written from scratch by 28 /* The code in this file critically affects class method invocation 33 that class method invocations are slow. The reason is that when you 42 objc_get_class returns the class pointer corresponding to the string 48 caching the class pointer: 50 Class arrayClass = [NSArray class]; 58 In this case, you always perform a class lookup (the first one), but 60 instance method invocation. It helps if you have many class metho 459 Class class; local 490 Class class = objc_getClass (name); local 501 Class class = objc_getClass (name); local 740 Class class; local 798 Class class = Nil; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| cpsizeof.cc | 18 struct Class 24 Class () : a (1), b ('2'), c (3) { } 29 Class *kp; 40 typedef Class c4[4]; 63 T (Class);
|
| rvalue-ref-sizeof.cc | 22 struct Class 28 Class () : a (1), b ('2'), c (3) { } 33 Class *kp; 44 typedef Class c4[4]; 67 T (Class);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| cpsizeof.cc | 18 struct Class 24 Class () : a (1), b ('2'), c (3) { } 29 Class *kp; 40 typedef Class c4[4]; 63 T (Class);
|
| rvalue-ref-sizeof.cc | 22 struct Class 28 Class () : a (1), b ('2'), c (3) { } 33 Class *kp; 44 typedef Class c4[4]; 67 T (Class);
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| ASTFwd.h | 19 class Decl; 20 #define DECL(DERIVED, BASE) class DERIVED##Decl; 22 class Stmt; 23 #define STMT(DERIVED, BASE) class DERIVED; 25 class Type; 26 #define TYPE(DERIVED, BASE) class DERIVED##Type; 28 class CXXCtorInitializer; 29 class OMPClause; 31 #define CLAUSE_CLASS(Enum, Str, Class) class Class [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| PtrTypesSemantics.h | 15 class CXXBaseSpecifier; 16 class CXXMethodDecl; 17 class CXXRecordDecl; 18 class Expr; 19 class FunctionDecl; 20 class Type; 34 /// \returns true if \p Class is ref-countable, false if not, None if 36 llvm::Optional<bool> isRefCountable(const clang::CXXRecordDecl *Class); 38 /// \returns true if \p Class is ref-counted, false if not. 39 bool isRefCounted(const clang::CXXRecordDecl *Class); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/ |
| DependencyAnalysis.cpp | 37 ARCInstKind Class) { 38 switch (Class) { 69 ARCInstKind Class) { 70 // First perform a quick check if Class can not touch ref counts. 71 if (!CanDecrementRefCount(Class)) 75 return CanAlterRefCount(Inst, Ptr, PA, Class); 81 ProvenanceAnalysis &PA, ARCInstKind Class) { 84 if (Class == ARCInstKind::Call) 132 ARCInstKind Class = GetARCInstKind(Inst); 133 switch (Class) { [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| ObjCNoReturn.cpp | 20 static bool isSubclass(const ObjCInterfaceDecl *Class, IdentifierInfo *II) { 21 if (!Class) 23 if (Class->getIdentifier() == II) 25 return isSubclass(Class->getSuperClass(), II);
|