Home
last modified time | relevance | path

Searched refs:Subclass (Results 1 – 25 of 25) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dnewproperty-class-method-1.m5 @interface Subclass interface
11 @implementation Subclass implementation
36 Subclass.magicNumber = 2 /*[Subclass setMagicNumber:2]*/;
37 if (Subclass.magicNumber != 0)
39 if (Subclass.magicNumber != 2)
41 Subclass.magicNumber += 3;
42 if (Subclass.magicNumber != 5)
44 Subclass.magicNumber -= 5;
45 if (Subclass.magicNumber != 0)
53 Subclass.fakeSetterNumber = Subclass.magicNumber;
[all …]
H A Dclass-property-access.m26 @interface Subclass : RootClass @end interface
30 (void)Subclass.property;
32 (void)Subclass.method;
35 Subclass.property = 2;
37 Subclass.method = 4;
41 (void)Subclass.classMethod;
45 (void)[Subclass property];
47 [Subclass method];
49 [Subclass classMethod];
53 [Subclass setProperty : 2];
[all …]
H A Ddealloc.m31 @interface Subclass : Base interface
34 @interface Subclass (CAT) interface in CAT
38 @implementation Subclass (CAT) implementation in CAT
H A Derror-missing-getter.m4 @interface Subclass interface
11 int func (int arg, Subclass *x) {
36 @interface Sub : Subclass
H A DDoubleMethod.m3 @interface Subclass interface
12 @implementation Subclass implementation
H A Dobjc-string-constant.m27 @interface Subclass : NSObject interface
31 @implementation Subclass implementation
H A Dproperty-user-setter.m69 @interface Subclass : Root interface
76 @implementation Subclass implementation
98 Subclass *x = [[Subclass alloc] init];
H A Ddeprecated-objc-introspection.m61 @interface Subclass : BaseClass @end interface
73 @implementation Subclass implementation
78 Subclass *x;
H A Dwarn-called-once.m992 NSAssert(0, @"Subclass must implement");
1006 NSAssert(0, @"Subclass must implement");
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/
H A DTweak.h129 #define REGISTER_TWEAK(Subclass) \ argument
130 ::llvm::Registry<::clang::clangd::Tweak>::Add<Subclass> \
131 TweakRegistrationFor##Subclass(#Subclass, /*Description=*/""); \
132 const char *Subclass::id() const { return #Subclass; }
/llvm-project-15.0.7/clang/test/Analysis/
H A Ddtor.cpp55 class Subclass : public SmartPointer { class
57 Subclass(void *x) : SmartPointer(x) {} in Subclass() function in Subclass
63 Subclass Deleter(mem); in testSubclassSmartPointer()
72 class MultipleInheritance : public Subclass, public SmartPointer {
74 MultipleInheritance(void *a, void *b) : Subclass(a), SmartPointer(b) {} in MultipleInheritance()
291 class Subclass : public VirtualDtor { class
293 virtual ~Subclass() { in ~Subclass()
298 void destroy(Subclass *obj) { in destroy()
H A Dnonnull.m16 @interface Subclass : MyObject interface
21 void testSubclass(int *p, Subclass *obj) {
27 void testSubclassArg(int *p, Subclass *obj) {
H A Dnull-deref-path-notes.m23 @interface Subclass : Root interface
26 @implementation Subclass implementation
/llvm-project-15.0.7/lldb/test/API/lang/cpp/template/
H A Dmain.cpp19 Subclass enumerator
49 class EnumTemplate<EnumType::Subclass> :
67 EnumTemplate<EnumType::Subclass> subclass(123*2); in main()
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Ddefault-property-synthesis.m4 // Superclass declares property. Subclass redeclares the same property.
6 // Superclass declares a property. Subclass declares a different property with the same name
8 // Superclass conforms to a protocol that declares a property. Subclass redeclares the
10 // Superclass conforms to a protocol that declares a property. Subclass conforms to the
/llvm-project-15.0.7/clang/test/FixIt/
H A Dauto-isa-fixit.m35 @interface Subclass : BaseClass @end interface
47 @implementation Subclass implementation
52 Subclass *x;
/llvm-project-15.0.7/clang/test/Parser/
H A Dcheck-objc2-syntax-1.m6 @interface Subclass interface
11 return Subclass.magicNumber;
/llvm-project-15.0.7/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp3.cpp58 struct Subclass : Base { struct
77 using Subclass::foo;
H A Dp4.cpp197 struct Subclass : Base { struct
210 using Subclass::foo; // legal in C++03
/llvm-project-15.0.7/clang/test/CXX/class.access/class.access.dcl/
H A Dp1.cpp291 struct Subclass : Base { struct
329 Subclass::foo; // legal in C++03
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Tosa/IR/
H A DTosaOps.td420 // Operator Subclass: Elementwise binary ops.
853 // Operator Subclass: Elementwise unary ops.
1106 // Operator Subclass: Elementwise ternary ops.
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DOpBase.td180 // Subclass for constraints on a type.
188 // Subclass for constraints on an attribute.
192 // Subclass for constraints on a region.
196 // Subclass for constraints on a successor.
/llvm-project-15.0.7/llvm/docs/
H A DProgrammersManual.rst3356 Subclass of DerivedType that represents integer types of any bit width. Any
3379 Subclass of Type for pointer types.
3382 Subclass of SequentialType for vector types. A vector type is similar to an
3388 Subclass of DerivedTypes for struct types.
3393 Subclass of DerivedTypes for function types.
/llvm-project-15.0.7/clang/include/clang/Basic/
H A Darm_mve.td1229 // Subclass that includes the machinery to take a 64-bit input apart
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMInstrMVE.td6371 // Subclass of MVE_VLDRSTR_rq with the same API as that multiclass,