Home
last modified time | relevance | path

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

1234

/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dconstructor-direct-call.cpp43 class Test3 { class
45 Test3() { a = 10; b = 15; c = 20; } in Test3() function in Test3
46 Test3(const Test3& that) { a = that.a; b = that.b; c = that.c; } in Test3() function in Test3
55 Test3 var; in f3()
59 Test3 var2; in f3()
63 var.Test3::Test3(); in f3()
67 var.Test3::Test3(var2); in f3()
H A Daix-static-init.cpp22 struct Test3 { struct
23 constexpr Test3() {}; in Test3() function
24 ~Test3() {}; in ~Test3() argument
27 constinit Test3 t;
H A Dvalue-init.cpp101 struct Test3 : public Test { }; struct
129 Test3 empty3[3] = {}; in f()
H A Dcxx11-vtable-key-function.cpp28 namespace Test3 { namespace
H A Dconst-init-cxx11.cpp94 struct Test3 : C, PackedD { constexpr Test3() {} }; in Test3() function
96 extern constexpr Test3 t3 = Test3();
/llvm-project-15.0.7/clang/test/PCH/
H A Dcxx11-inheriting-ctors.cpp42 struct Test3 : B { struct
53 Test3<Base> test3a(42);
54 Test3<Base> test3b(nullptr);
65 Test3<Base> retest3a(42);
66 Test3<Base> retest3b(nullptr);
/llvm-project-15.0.7/llvm/test/TableGen/
H A Dinterleave.td18 // CHECK: Test3 = "foobarzoosnorkquux";
25 string Test3 = !interleave(StringList, "");
33 // CHECK: Test3 = "0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 42";
38 string Test3 = !interleave(!listconcat(IntList, [42]), " & ");
44 // CHECK: Test3 = "2 & 7 & 1 & 0";
49 string Test3 = !interleave(!listconcat(BitsList, [ {0, 0, 0} ]), " & ");
55 // CHECK: Test3 = "0 and 1 and 1 and 0 and 1 and 1";
60 string Test3 = !interleave(!listconcat(BitList, [1]), " and ");
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dforwarding-reference-overload.cpp90 class Test3 { class
92 template <typename T> Test3(T &&n);
94 template <typename T> Test3(T &&n, int I = 5, ...);
96 Test3(const Test3 &rhs) = delete;
99 Test3(Test3 &&rhs);
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dbitfield-layout.cpp25 struct Test3 { struct
28 CHECK_SIZE(Test3, 4); argument
29 CHECK_ALIGN(Test3, 4);
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Drelated-result-type.m43 @interface Test3 : NSString interface
47 @implementation Test3 implementation
48 // CHECK: define internal {{.*}}i8* @"\01-[Test3 init]"
H A Darc-property.m90 @interface Test3 interface
94 void test3(Test3 *t) {
122 @implementation Test3 implementation
127 // CHECK: define internal i8* @"\01-[Test3 copyMachine]"(
138 @property (copy, nonatomic, readonly) Test3 *someId;
141 @property (copy, nonatomic, readwrite) Test3 *someId;
H A Darc-captured-32bit-block-var-layout-2.m22 // Test3
34 // the descriptor of Test3's block.
/llvm-project-15.0.7/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.unnamed/
H A Dp1.cpp29 class Test3 {}; // expected-note {{previous definition}} class
32 class Test3 {}; // expected-error {{redefinition of 'Test3'}} class
/llvm-project-15.0.7/clang/test/AST/
H A Dast-dump-funcs-json.cpp6 void Test3() volatile;
24 void Test3(int a, int b);
H A Dast-dump-attr.m25 @property (readonly) [[clang::objc_returns_inner_pointer]] void *Test3, *Test4;
26 // CHECK: ObjCPropertyDecl{{.*}} Test3 'void *' readonly
35 // CHECK: ObjCMethodDecl{{.*}} implicit{{.*}} Test3
H A Dast-dump-c-attr.c19 Test3 [[deprecated]] enumerator
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Ddefault-synthesize-2.m41 // Test3
42 @interface Test3 interface
50 @implementation Test3 // expected-warning {{autosynthesized property 'uid' will use synthesized ins… implementation
H A Darc-property.m60 @interface Test3 interface
63 void test3(Test3 *t3) {
H A Dmethod-conflict-1.m66 @interface Test3 {} interface
71 @implementation Test3 implementation
H A Dproperty-category-4.m51 // Test3
63 // Test3
/llvm-project-15.0.7/clang/test/Sema/
H A Dattr-capabilities.c16 int Test3 __attribute__((acquire_capability("test3"))); // expected-warning {{'acquire_capability'… variable
20 struct __attribute__((capability(12))) Test3 {}; // expected-error {{'capability' attribute require… struct
/llvm-project-15.0.7/clang/test/CoverageMapping/
H A Dnestedclass.cpp14 struct Test3 { // CHECK-INNERMOST: emitTest3 struct
/llvm-project-15.0.7/llvm/test/Transforms/SimpleLoopUnswitch/
H A Ddelete-dead-blocks.ll78 ; CHECK-LABEL: @Test3
79 define void @Test3(i32) {
/llvm-project-15.0.7/clang/test/CXX/class/
H A Dp2-0x.cpp19 namespace Test3 { namespace
/llvm-project-15.0.7/clang/test/ARCMT/
H A Dobjcmt-protocol-conformance.m33 @interface Test3 : NSObject { // Test for Super class and no protocol list interface
38 @implementation Test3 implementation

1234