/external/llvm-project/clang/test/SemaObjC/ |
D | newproperty-class-method-1.m | 5 @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) 48 Subclass.fakeSetterNumber = 123; [all …]
|
D | class-property-access.m | 26 @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 …]
|
D | dealloc.m | 31 @interface Subclass : Base interface 34 @interface Subclass (CAT) interface in CAT 38 @implementation Subclass (CAT) implementation in CAT
|
D | error-missing-getter.m | 4 @interface Subclass interface 11 int func (int arg, Subclass *x) { 36 @interface Sub : Subclass
|
D | DoubleMethod.m | 3 @interface Subclass interface 12 @implementation Subclass implementation
|
/external/clang/test/SemaObjC/ |
D | newproperty-class-method-1.m | 5 @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) 48 Subclass.fakeSetterNumber = 123; [all …]
|
D | class-property-access.m | 26 @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 …]
|
D | dealloc.m | 31 @interface Subclass : Base interface 34 @interface Subclass (CAT) interface in CAT 38 @implementation Subclass (CAT) implementation in CAT
|
D | error-missing-getter.m | 4 @interface Subclass interface 11 int func (int arg, Subclass *x) { 36 @interface Sub : Subclass
|
D | DoubleMethod.m | 3 @interface Subclass interface 12 @implementation Subclass implementation
|
/external/openscreen/cast/streaming/ |
D | expanded_value_base.h | 36 template <typename FullWidthInteger, class Subclass> 73 Subclass ExpandLessThanOrEqual(ShortUnsigned x) const { in ExpandLessThanOrEqual() 94 return Subclass(result); in ExpandLessThanOrEqual() 101 return Subclass(x); in ExpandLessThanOrEqual() 108 Subclass ExpandGreaterThan(ShortUnsigned x) const { in ExpandGreaterThan() 109 const Subclass maximum_possible_result( in ExpandGreaterThan() 120 Subclass Expand(ShortUnsigned x) const { in Expand() 121 const Subclass maximum_possible_result( in Expand() 127 constexpr bool operator==(Subclass rhs) const { return value_ == rhs.value_; } 128 constexpr bool operator!=(Subclass rhs) const { return value_ != rhs.value_; } [all …]
|
/external/grpc-grpc/test/core/gprpp/ |
D | ref_counted_ptr_test.cc | 183 class Subclass : public BaseClass { class 185 Subclass() {} in Subclass() function in grpc_core::testing::__anon90a80ae10111::Subclass 189 RefCountedPtr<BaseClass> p(New<Subclass>()); in TEST() 195 RefCountedPtr<Subclass> s = MakeRefCounted<Subclass>(); in TEST() 203 RefCountedPtr<Subclass> s = MakeRefCounted<Subclass>(); in TEST() 211 b.reset(New<Subclass>()); in TEST() 216 Subclass* s = New<Subclass>(); in TEST() 226 RefCountedPtr<Subclass> p = MakeRefCounted<Subclass>(); in TEST() 230 void FunctionTakingSubclass(RefCountedPtr<Subclass> p) { in FunctionTakingSubclass() 235 RefCountedPtr<Subclass> p = MakeRefCounted<Subclass>(); in TEST()
|
/external/llvm-project/clang-tools-extra/clangd/refactor/ |
D | Tweak.h | 122 #define REGISTER_TWEAK(Subclass) \ argument 123 ::llvm::Registry<::clang::clangd::Tweak>::Add<Subclass> \ 124 TweakRegistrationFor##Subclass(#Subclass, /*Description=*/""); \ 125 const char *Subclass::id() const { return #Subclass; }
|
/external/harfbuzz_ng/src/ |
D | hb-machinery.hh | 162 template <typename Stored, typename Subclass> 163 Stored * call_create () const { return Subclass::create (get_data ()); } in call_create() 178 typename Subclass = void, 184 typedef typename hb_non_void_t<Subclass, 185 hb_lazy_loader_t<Returned,Subclass,Data,WheresData,Stored> 305 template <typename Subclass> 306 struct hb_font_funcs_lazy_loader_t : hb_lazy_loader_t<hb_font_funcs_t, Subclass> 313 template <typename Subclass> 314 struct hb_unicode_funcs_lazy_loader_t : hb_lazy_loader_t<hb_unicode_funcs_t, Subclass>
|
/external/clang/test/Analysis/ |
D | dtor.cpp | 55 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() 293 class Subclass : public VirtualDtor { class 295 virtual ~Subclass() { in ~Subclass() 300 void destroy(Subclass *obj) { in destroy()
|
/external/llvm-project/clang/test/Analysis/ |
D | dtor.cpp | 55 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() 293 class Subclass : public VirtualDtor { class 295 virtual ~Subclass() { in ~Subclass() 300 void destroy(Subclass *obj) { in destroy()
|
/external/llvm-project/lldb/test/API/lang/cpp/template/ |
D | main.cpp | 19 Subclass enumerator 49 class EnumTemplate<EnumType::Subclass> : 67 EnumTemplate<EnumType::Subclass> subclass(123*2); in main()
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | default-property-synthesis.m | 4 // 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
|
/external/clang/test/CodeGenObjC/ |
D | default-property-synthesis.m | 4 // 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
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | inspect_utils_test.py | 518 class Subclass(Superclass): class 527 inspect_utils.getdefiningclass(Subclass.foo, Subclass), Subclass) 529 inspect_utils.getdefiningclass(Subclass.bar, Subclass), Superclass) 531 inspect_utils.getdefiningclass(Subclass.baz, Subclass), Subclass) 533 inspect_utils.getdefiningclass(Subclass.class_method, Subclass),
|
/external/llvm-project/clang/test/FixIt/ |
D | auto-isa-fixit.m | 35 @interface Subclass : BaseClass @end interface 47 @implementation Subclass implementation 52 Subclass *x;
|
/external/clang/test/FixIt/ |
D | auto-isa-fixit.m | 35 @interface Subclass : BaseClass @end interface 47 @implementation Subclass implementation 52 Subclass *x;
|
/external/llvm-project/clang/test/Parser/ |
D | check-objc2-syntax-1.m | 6 @interface Subclass interface 11 return Subclass.magicNumber;
|
/external/clang/test/Parser/ |
D | check-objc2-syntax-1.m | 6 @interface Subclass interface 11 return Subclass.magicNumber;
|
/external/skqp/tests/ |
D | GrTRecorderTest.cpp | 147 class Subclass : public Base { class 149 Subclass() : fString("Lorem ipsum dolor sit amet") {} in Subclass() function in Subclass 162 class SubSubclass : public Subclass { 169 Subclass::validate(reporter); in validate() 232 GrNEW_APPEND_TO_RECORDER(recorder, Subclass, ()); in test_subclasses()
|