| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | attr-availability-1.m | 17 - (void)overridden __attribute__((availability(macosx,introduced=10_3))); // expected-note{{overrid… 20 …_attribute__((availability(macosx,deprecated=10_3))); // expected-note{{overridden method is here}} 22 …_attribute__((availability(macosx,introduced=10_3))); // expected-note{{overridden method is here}} 28 - (void)overridden __attribute__((availability(macosx,introduced=10_4))); // expected-warning{{over… 31 …ated=10_2))); // expected-warning{{overriding method deprecated before overridden method on macOS … 33 …ted-warning{{overriding method cannot be unavailable on macOS when its overridden method is availa…
|
| H A D | related-result-type-inference.m | 85 - (id)initBlah; // expected-note 2{{overridden method is part of the 'init' method family}} 102 + (id)newBlarg; // expected-note{{overridden method is part of the 'new' method family}} 106 + alloc; // expected-note{{overridden method is part of the 'alloc' method family}} 120 - (id)initBlah; // expected-note{{overridden method is part of the 'init' method family}}
|
| H A D | attr-availability.m | 20 - (void)overridden __attribute__((availability(macosx,introduced=10.3))); // expected-note{{overrid… 23 …_attribute__((availability(macosx,deprecated=10.3))); // expected-note{{overridden method is here}} 25 …_attribute__((availability(macosx,introduced=10.3))); // expected-note{{overridden method is here}} 33 - (void)overridden __attribute__((availability(macosx,introduced=10.4))); // expected-warning{{over… 36 …ated=10.2))); // expected-warning{{overriding method deprecated before overridden method on macOS … 38 …ted-warning{{overriding method cannot be unavailable on macOS when its overridden method is availa…
|
| H A D | instancetype.m | 9 - (instancetype)init; // expected-note{{overridden method is part of the 'init' method family}} 24 - (instancetype)methodInProto2; // expected-note{{overridden method returns an instance of its clas… 25 - (instancetype)otherMethodInProto2; // expected-note{{overridden method returns an instance of its… 133 - (id)self; // expected-note{{overridden method is part of the 'self' method family}} 197 - (instancetype) baz; // expected-note {{overridden method returns an instance of its class type}} …
|
| H A D | tentative-property-decl.m | 6 are tentative as they may be overridden into a 'readwrite' property in class
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/ |
| H A D | use-override.rst | 6 Adds ``override`` (introduced in C++11) to overridden virtual functions and 11 this to signify an overridden function. 14 overridden functions to be marked appropriately. Their presence allows 15 compilers to verify that an overridden function correctly overrides a base 34 warning/error checking flags requiring ``override`` explicitly on overridden
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | warn-common.s | 12 ## Report if common is overridden 14 # OVER: common arr is overridden 16 ## Report if common is overridden, but in different order
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | parent-virtual-call.rst | 7 to overridden parent's virtual methods. 22 …// warning: qualified name A::foo refers to a member overridden in subclass; did you mean 'B'? [b…
|
| /llvm-project-15.0.7/flang/test/Driver/ |
| H A D | override-triple.ll | 1 ; Verify that the module triple is overridden by the driver - even in the presence 10 ; For the triple to be overridden by the driver, it needs to be different to the host triple.
|
| H A D | missing-triple.ll | 1 ; Verify that the module triple is overridden by the driver - even when the
|
| /llvm-project-15.0.7/clang/test/Rewriter/ |
| H A D | instancetype-test.mm | 10 - (instancetype)init; // expected-note{{overridden method is part of the 'init' method family}} 25 - (instancetype)methodInProto2; // expected-note{{overridden method returns an instance of its clas… 26 - (instancetype)otherMethodInProto2; // expected-note{{overridden method returns an instance of its…
|
| /llvm-project-15.0.7/clang/test/SemaObjCXX/ |
| H A D | instancetype.mm | 9 - (instancetype)init; // expected-note{{overridden method is part of the 'init' method family}} 24 - (instancetype)methodInProto2; // expected-note{{overridden method returns an instance of its clas… 25 - (instancetype)otherMethodInProto2; // expected-note{{overridden method returns an instance of its… 133 - (id)self; // expected-note{{overridden method is part of the 'self' method family}} 197 - (instancetype) baz; // expected-note {{overridden method returns an instance of its class type}} …
|
| H A D | noescape.mm | 34 …virtual void m0(int *__attribute__((noescape))); // expected-note {{parameter of overridden method… 47 -(void) m0:(int*)__attribute__((noescape)) p; // expected-note {{parameter of overridden method is … 107 -(void) m0:(int*)__attribute__((noescape)) p; // expected-note 2 {{parameter of overridden method i…
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CXCursor.cpp | 1190 overridden.push_back(MakeCXCursor(*I, TU)); in getOverriddenCursors() 1612 void clang_getOverriddenCursors(CXCursor cursor, CXCursor **overridden, in clang_getOverriddenCursors() argument 1614 if (overridden) in clang_getOverriddenCursors() 1615 *overridden = nullptr; in clang_getOverriddenCursors() 1621 if (!overridden || !num_overridden || !TU) in clang_getOverriddenCursors() 1663 *overridden = &((*Vec)[1]); in clang_getOverriddenCursors() 1667 void clang_disposeOverriddenCursors(CXCursor *overridden) { in clang_disposeOverriddenCursors() argument 1668 if (!overridden) in clang_disposeOverriddenCursors() 1673 --overridden; in clang_disposeOverriddenCursors() 1676 const_cast<void *>(overridden->data[0])); in clang_disposeOverriddenCursors() [all …]
|
| /llvm-project-15.0.7/llvm/docs/CommandGuide/ |
| H A D | llvm-ifs.rst | 51 triple format. It can be optional and can be overridden from command line 171 This flag strips the ``Arch`` field from the IFS file so it can be overridden 178 overridden later. 183 This flag strips the ``BitWidth`` field from the IFS file so it can be overridden 189 This flag strips the ``Target`` field from the IFS file so it can be overridden
|
| /llvm-project-15.0.7/openmp/docs/remarks/ |
| H A D | OMP121.rst | 15 can be overridden using an assumption stating that it contains no calls that 51 external function ``work``. This can be overridden by asserting that it does not
|
| H A D | OMP113.rst | 10 potentially be shared between the threads. This can be overridden using a 51 As the remark suggests, this behaviour can be overridden using the ``noescape``
|
| /llvm-project-15.0.7/llvm/test/Transforms/Inline/ |
| H A D | 2007-06-25-WeakInline.ll | 4 ; 'bar' can be overridden at link-time, don't inline it.
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | warn-suggest-destructor-override | 14 virtual ~C(); // expected-note 2{{overridden virtual function is here}}
|
| H A D | warn-inconsistent-missing-destructor-override | 18 virtual ~C() {} // expected-note 2{{overridden virtual function is here}}
|
| H A D | warn-suggest-override | 14 virtual void run(); // expected-note 2{{overridden virtual function is here}}
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | check-declarations.cpp | 1651 if (overridden->attrs().test(Attr::NON_OVERRIDABLE)) { in CheckProcBinding() 1652 SayWithDeclaration(*overridden, in CheckProcBinding() 1659 SayWithDeclaration(*overridden, in CheckProcBinding() 1665 SayWithDeclaration(*overridden, in CheckProcBinding() 1671 SayWithDeclaration(*overridden, in CheckProcBinding() 1681 SayWithDeclaration(*overridden, in CheckProcBinding() 1689 SayWithDeclaration(*overridden, in CheckProcBinding() 1693 SayWithDeclaration(*overridden, in CheckProcBinding() 1700 overridden->attrs().test(Attr::PUBLIC)) { in CheckProcBinding() 1701 SayWithDeclaration(*overridden, in CheckProcBinding() [all …]
|
| /llvm-project-15.0.7/llvm/test/MC/RISCV/ |
| H A D | attribute-with-option.s | 17 ## Check that the architecture attribute is not overridden by the command line
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopUnroll/AMDGPU/ |
| H A D | unroll-threshold.ll | 59 ; is overridden by a low threshold using the amdgpu.loop.unroll.threshold metadata 84 ; is overridden by a high threshold using the amdgpu.loop.unroll.threshold metadata
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 4418 if (overridden->isDirectMethod()) { in CheckObjCMethodDirectOverrides() 4419 const auto *attr = overridden->getAttr<ObjCDirectAttr>(); in CheckObjCMethodDirectOverrides() 4425 << isa<ObjCProtocolDecl>(overridden->getDeclContext()); in CheckObjCMethodDirectOverrides() 4443 for (ObjCMethodDecl *overridden : overrides) { in CheckObjCMethodOverrides() 4446 CurrentClass != overridden->getClassInterface() || in CheckObjCMethodOverrides() 4447 overridden->isOverriding()) { in CheckObjCMethodOverrides() 4469 OverrideSearch overrides(*this, overridden); in CheckObjCMethodOverrides() 4475 overridden->setOverriding(true); in CheckObjCMethodOverrides() 4490 mergeObjCMethodDecls(ObjCMethod, overridden); in CheckObjCMethodOverrides() 4492 if (ObjCMethod->isImplicit() && overridden->isImplicit()) in CheckObjCMethodOverrides() [all …]
|