Home
last modified time | relevance | path

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

12345678910>>...46

/llvm-project/clang/test/InstallAPI/
H A Dbinary-attributes.test4 ; RUN: cp -r %S/Inputs/Simple/Simple.framework %t/System/Library/Frameworks/
5 ; RUN: yaml2obj %S/Inputs/Simple/Simple.yaml -o %t/Simple
8 ; RUN: -install_name /System/Library/Frameworks/Simple.framework/Versions/A/Simple \
10 ; RUN: -o tmp.tbd --verify-against=%t/Simple 2>&1 | FileCheck -check-prefix=ARCHITECTURE %s
14 ; RUN: -install_name Simple -dynamiclib \
16 ; RUN: -o tmp.tbd --verify-against=%t/Simple 2>&1 | FileCheck -check-prefix=INSTALL_NAME %s
17 …or: install_name does not match: 'Simple' (provided) vs '/System/Library/Frameworks/Simple.framewo…
20 ; RUN: -install_name /System/Library/Frameworks/Simple.framework/Versions/A/Simple \
22 ; RUN: -o tmp.tbd --verify-against=%t/Simple 2>&1 | FileCheck -check-prefix=CURRENT_VERSION %s
26 ; RUN: -install_name /System/Library/Frameworks/Simple.framework/Versions/A/Simple \
[all …]
H A Dextra-exclude-headers.test4 ; RUN: cp -r %S/Inputs/Simple/Simple.framework %t/System/Library/Frameworks/
7 ; RUN: yaml2obj %S/Inputs/Simple/Simple.yaml -o %t/Simple
11 ; RUN: -install_name /System/Library/Frameworks/Simple.framework/Versions/A/Simple \
14 ; RUN: %t/inputs.json -o %t/Simple.tbd \
15 ; RUN: --verify-against=%t/Simple --verify-mode=ErrorsAndWarnings \
18 ; RUN: llvm-readtapi -compare %t/Simple.tbd %t/expected-excluded.tbd
22 ; RUN: -install_name /System/Library/Frameworks/Simple.framework/Versions/A/Simple \
25 ; RUN: %t/inputs.json -o %t/Simple.tbd \
26 ; RUN: --verify-against=%t/Simple --verify-mode=Pedantic \
27 ; RUN: --extra-project-header=%S/Inputs/Simple/SimpleInternalAPI2.h \
[all …]
H A Ddirectory-scanning-frameworks.test4 ; RUN: cp -r %S/Inputs/Simple/* %t/SDKRoot/System/Library/Frameworks/
7 ; RUN: rm %t/SDKRoot/System/Library/Frameworks/Simple.framework/Headers/Simple.h
10 ; RUN: -install_name /System/Library/Frameworks/Simple.framework/Versions/A/Simple \
11 ; RUN: -current_version 1.2.3 -compatibility_version 1 -o %t/Simple.tbd \
13 ; RUN: %t/SDKRoot/System/Library/Frameworks/Simple.framework 2>&1 | FileCheck -allow-empty %s \
15 ; RUN: llvm-readtapi -compare %t/expected.tbd %t/Simple.tbd
19 ; RUN: -install_name /System/Library/Frameworks/Simple.framework/Versions/A/Simple \
20 ; RUN: -current_version 1.2.3 -compatibility_version 1 -o %t/Simple.tbd \
77 "name": "/System/Library/Frameworks/Simple.framework/Versions/A/Simple"
H A Dforwarded-search-paths.test7 ; RUN: cp -r %S/Inputs/Simple/Simple.framework %t/System/Library/Frameworks/
8 ; RUN: yaml2obj %S/Inputs/Simple/Simple.yaml -o %t/Simple
12 ; RUN: -install_name /System/Library/Frameworks/Simple.framework/Versions/A/Simple \
13 ; RUN: -current_version 1.2.3 -compatibility_version 1 -o %t/Simple.tbd \
16 ; RUN: --verify-against=%t/Simple --verify-mode=ErrorsOnly \
31 "path" : "DSTROOT/System/Library/Frameworks/Simple.framework/Headers/Basic.h"
/llvm-project/clang/test/Sema/
H A Dbuiltins-arm64-exclusive.c3 struct Simple { struct
17 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() argument
23 …sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldrex()
32 struct Simple var = {0}; in test_strex()
40 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex()
47 …res |= __builtin_arm_strex(var, (struct Simple *)addr); // expected-error {{address argument to at… in test_strex()
48 …res |= __builtin_arm_strex(var, (struct Simple **)addr); // expected-error {{passing 'struct Simpl… in test_strex()
49 …res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure… in test_strex()
66 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex()
72 …sum += __builtin_arm_ldaex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldaex()
[all …]
H A Dbuiltins-arm-exclusive.c3 struct Simple { struct
16 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() argument
22 …sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldrex()
33 struct Simple var = {0}; in test_strex()
40 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex()
47 …res |= __builtin_arm_strex(var, (struct Simple *)addr); // expected-error {{address argument to at… in test_strex()
48 …res |= __builtin_arm_strex(var, (struct Simple **)addr); // expected-error {{passing 'struct Simpl… in test_strex()
49 …res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure… in test_strex()
67 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex()
73 …sum += __builtin_arm_ldaex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldaex()
[all …]
/llvm-project/compiler-rt/test/msan/
H A Duse-after-dtor.cpp12 struct Simple { struct
14 Simple() { in Simple() function
17 ~Simple() { in ~Simple() argument
24 assert(sizeof(Simple) <= sizeof(buf)); in main()
26 Simple *s = new(&buf) Simple(); in main()
27 s->~Simple(); in main()
H A Ddtor-member.cpp21 struct Simple { struct
23 Simple() { in Simple() argument
26 ~Simple() { } in ~Simple() argument
31 assert(sizeof(Simple) <= sizeof(buf)); in main()
37 Simple *s = new(&buf) Simple(); in main()
38 s->~Simple(); in main()
H A Ddtor-bit-fields.cpp35 struct Simple { struct
37 ~Simple() {} in ~Simple() argument
61 Simple *s = new Simple(); in main()
62 s->~Simple(); in main()
/llvm-project/clang/test/Profile/
H A Dcxx-class.cpp20 class Simple { class
26 explicit Simple(int Member) : Member(Member) { in Simple() function in Simple
39 ~Simple() { in ~Simple()
63 class Derived : virtual public Simple {
68 Derived() : Simple(0) { in Derived()
100 Simple S(I); in simple_wrapper()
/llvm-project/compiler-rt/test/fuzzer/
H A DUseAfterDtor.cpp4 struct Simple { struct
6 Simple() { in Simple() argument
9 ~Simple() { in ~Simple() argument
14 Simple *volatile SimpleSink;
20 Simple S; in LLVMFuzzerTestOneInput()
/llvm-project/clang/test/CodeGen/
H A Dbuiltins-arm-exclusive.c4 struct Simple { struct
68 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex()
137 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex()
150 struct Simple var = {0}; in test_strex()
189 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex()
203 struct Simple var = {0}; in test_stlex()
242 res |= __builtin_arm_stlex(&var, (struct Simple **)addr); in test_stlex()
/llvm-project/clang/test/CodeGenCXX/
H A Dsanitize-dtor-tail-call.cpp5 struct Simple { struct
7 Simple() { in Simple() argument
10 ~Simple() { in ~Simple() argument
15 Simple s;
H A Dsanitize-dtor-callback.cpp7 struct Simple { struct
9 ~Simple() {} in ~Simple() argument
11 Simple s;
41 Simple s;
H A Dsanitize-no-dtor-callback.cpp5 struct Simple { struct
7 ~Simple() {} in ~Simple() argument
9 Simple s;
H A Dsanitize-dtor-bit-field.cpp32 struct Simple { struct
34 ~Simple() {} in ~Simple() argument
36 Simple s;
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.elements/
H A Dtypes.h35 template <bool Simple>
40 requires(!Simple) in begin()
46 requires(!Simple) in end()
64 template <bool Simple>
68 requires(!Simple) in begin()
74 requires(!Simple) in end()
/llvm-project/lldb/test/API/lang/objc/objc-checker/
H A Dmain.m10 @interface Simple : NSObject interface
19 @implementation Simple implementation
41 Simple *my_simple = [[Simple alloc] init];
/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-advanced/
H A Dmain.cpp36 struct Simple struct
41 Simple(int X, float Y, char Z) : in Simple() argument
66 Simple* s;
68 s(new Simple(X,Y,Z)) {} in Couple()
165 Simple a_simple_object(3,0.14,'E'); in main()
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.zip/
H A Dtypes.h34 template <bool Simple>
39 requires(!Simple) in begin()
45 requires(!Simple) in end()
63 template <bool Simple>
69 requires(!Simple) { in begin()
74 requires(!Simple) { in end()
89 template <bool Simple>
93 requires(!Simple) { in begin()
98 requires(!Simple) { in end()
113 template <bool Simple>
[all …]
/llvm-project/clang/test/APINotes/
H A Dyaml-roundtrip.test1 RUN: apinotes-test %S/Inputs/Frameworks/Simple.framework/Headers/Simple.apinotes > %t.result
2 RUN: not diff -b %S/Inputs/Frameworks/Simple.framework/Headers/Simple.apinotes %t.result | FileChec…
/llvm-project/llvm/test/TableGen/
H A DRelTest.td9 let Namespace = "Simple";
12 def SimpleRegClass : RegisterClass<"Simple",[i32],0,(add R0)>;
30 let Namespace = "Simple";
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-override-no-destructors.cpp9 struct Simple : public Base { struct
10 virtual ~Simple();
/llvm-project/clang/test/Index/
H A Dms-property.cpp4 struct Simple { struct
20 Simple s; in test()
/llvm-project/mlir/test/Target/LLVMIR/Import/
H A Dmetadata-tbaa.ll3 ; CHECK-DAG: #[[R0:.*]] = #llvm.tbaa_root<id = "Simple C/C++ TBAA">
25 !2 = !{!"Simple C/C++ TBAA"}
33 ; CHECK-DAG: #[[R0:.*]] = #llvm.tbaa_root<id = "Simple C/C++ TBAA">
65 !10 = !{!"Simple C/C++ TBAA"}
97 !2 = !{!"Simple C/C++ TBAA"}

12345678910>>...46