Home
last modified time | relevance | path

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

1234567891011

/llvm-project-15.0.7/llvm/test/FileCheck/
H A Dcheck-dag-overlap-torture.txt9 (abc<mno>xyz)
10 (abc<mno>xyz)
11 (abc<mno>xyz >xyz)
15 (abc<mno>xyz abc<mno>xyz)
72 (abc<mno>xyz)
77 (abc<mno>xyz abc<mno>x)
132 (abc<mno>xyz abc<mno>)
180 (abc<mno>xyz abc<m)
221 (abc<mno>xyz abc<)
254 (abc<mno>xyz)
[all …]
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DSmallStringTest.cpp53 StringRef abc = "abc"; in TEST_F() local
54 theString.assign(abc.begin(), abc.end()); in TEST_F()
60 StringRef abc = "abc"; in TEST_F() local
61 theString.assign(abc); in TEST_F()
67 StringRef abc = "abc"; in TEST_F() local
68 SmallVector<char, 10> abcVec(abc.begin(), abc.end()); in TEST_F()
82 theString.append(abc.begin(), abc.end()); in TEST_F()
83 theString.append(abc.begin(), abc.end()); in TEST_F()
98 SmallVector<char, 10> abcVec(abc.begin(), abc.end()); in TEST_F()
120 theString.assign(abc.begin(), abc.end()); in TEST_F()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/objc/
H A Dassert-equals.m4 __typeof(@"abc") getStr(void) {
5 return @"abc";
8 XCTAssertEqual(getStr(), @"abc");
10 // CHECK-FIXES: XCTAssertEqualObjects(getStr(), @"abc");
11 XCTAssertEqual(@"abc", @"abc");
13 // CHECK-FIXES: XCTAssertEqualObjects(@"abc", @"abc");
14 XCTAssertEqual(@"abc", getStr());
16 // CHECK-FIXES: XCTAssertEqualObjects(@"abc", getStr());
24 // XCTAssertEqual(@"abc" != @"abc", @"xyz" != @"xyz")
/llvm-project-15.0.7/libc/test/src/string/
H A Dstrncat_test.cpp13 const char *abc = "abc"; in TEST() local
19 char *result = __llvm_libc::strncat(dest, abc, 0); in TEST()
24 result = __llvm_libc::strncat(dest, abc, 1); in TEST()
32 result = __llvm_libc::strncat(dest, abc, 3); in TEST()
35 ASSERT_STREQ(dest, abc); in TEST()
39 const char *abc = "abc"; in TEST() local
48 char *result = __llvm_libc::strncat(dest, abc, 1); in TEST()
53 result = __llvm_libc::strncat(dest, abc, 2); in TEST()
60 result = __llvm_libc::strncat(dest, abc, 3); in TEST()
68 result = __llvm_libc::strncat(dest, abc, 4); in TEST()
[all …]
H A Dstrndup_test.cpp24 const char *abc = "abc"; in TEST() local
26 char *result = __llvm_libc::strndup(abc, 3); in TEST()
29 ASSERT_NE(abc, const_cast<const char *>(result)); in TEST()
30 ASSERT_STREQ(abc, result); in TEST()
33 result = __llvm_libc::strndup(abc, 1); in TEST()
36 ASSERT_NE(abc, const_cast<const char *>(result)); in TEST()
40 result = __llvm_libc::strndup(abc, 10); in TEST()
43 ASSERT_NE(abc, const_cast<const char *>(result)); in TEST()
44 ASSERT_STREQ(abc, result); in TEST()
H A Dstpcpy_test.cpp26 const char *abc = "abc"; in TEST() local
27 size_t src_size = __llvm_libc::internal::string_length(abc); in TEST()
30 char *result = __llvm_libc::stpcpy(dest, abc); in TEST()
33 ASSERT_STREQ(dest, abc); in TEST()
37 const char *abc = "abc"; in TEST() local
38 size_t src_size = __llvm_libc::internal::string_length(abc); in TEST()
41 char *result = __llvm_libc::stpcpy(dest + 3, abc); in TEST()
H A Dstrcat_test.cpp13 const char *abc = "abc"; in TEST() local
18 char *result = __llvm_libc::strcat(dest, abc); in TEST()
21 ASSERT_STREQ(dest, abc); in TEST()
25 const char *abc = "abc"; in TEST() local
33 char *result = __llvm_libc::strcat(dest, abc); in TEST()
H A Dstrcpy_test.cpp23 const char *abc = "abc"; in TEST() local
26 char *result = __llvm_libc::strcpy(dest, abc); in TEST()
29 ASSERT_STREQ(dest, abc); in TEST()
33 const char *abc = "abc"; in TEST() local
40 char *result = __llvm_libc::strcpy(dest + 3, abc); in TEST()
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dapple-kext-indirect-call-2.cpp9 virtual const char* abc(void) const;
12 const char* A::abc(void) const {return "A"; }; in abc() function in A
23 const char* c = p->A::abc(); in FUNC()
28 struct Base { virtual char* abc(void) const; };
30 char* Base::abc() const { return 0; } in abc() function in Base
38 char* c = p->Base::abc(); in FUNC1()
64 virtual char *abc(void) const;
70 char* D2::abc(void) const { return 0; } in abc() function in D2
75 char* c = p->D2::abc(); in FUNC3()
/llvm-project-15.0.7/llvm/test/MC/AVR/
H A Drelocations.s37 ; CHECK-NEXT: R_AVR_LO8_LDI abc
38 ; CHECK-NEXT: R_AVR_LO8_LDI abc
40 ldi r16, +lo8(abc)
41 ldi r16, lo8(+(abc))
46 ldi r30, hi8(abc)
47 ldi r16, +hi8(abc)
48 ldi r16, hi8(+(abc))
52 ldi r16, -lo8(abc)
53 ldi r16, lo8(-(abc))
57 ldi r16, -hi8(abc)
[all …]
/llvm-project-15.0.7/llvm/test/Linker/
H A Dtype-unique-name.ll4 ; CHECK: %abc = type { i8 }
6 %abc = type opaque
8 declare %abc* @f()
10 define %abc* @g() {
11 %x = call %abc* @f()
12 ret %abc* %x
/llvm-project-15.0.7/libcxx/test/std/strings/string.view/string.view.comparison/
H A Dequal.pass.cpp65 SV abc = SV(MAKE_CSTRING(CharT, "abc")); in test() local
68 assert((abc == abc0def) == false); in test()
69 assert((abc == abcdef) == false); in test()
70 assert((abc0def == abc) == false); in test()
72 assert((abcdef == abc) == false); in test()
75 assert((abc.data() == abc0def) == false); in test()
76 assert((abc0def == abc.data()) == false); in test()
79 assert((std::basic_string<CharT, Traits>(abc) == abc0def) == false); in test()
80 assert((abc0def == std::basic_string<CharT, Traits>(abc)) == false); in test()
H A Dgreater_equal.pass.cpp65 SV abc = SV(MAKE_CSTRING(CharT, "abc")); in test() local
68 assert((abc >= abc0def) == false); in test()
69 assert((abc >= abcdef) == false); in test()
70 assert((abc0def >= abc) == true); in test()
72 assert((abcdef >= abc) == true); in test()
75 assert((abc.data() >= abc0def) == false); in test()
76 assert((abc0def >= abc.data()) == true); in test()
79 assert((std::basic_string<CharT, Traits>(abc) >= abc0def) == false); in test()
80 assert((abc0def >= std::basic_string<CharT, Traits>(abc)) == true); in test()
H A Dless.pass.cpp65 SV abc = SV(MAKE_CSTRING(CharT, "abc")); in test() local
68 assert((abc < abc0def) == true); in test()
69 assert((abc < abcdef) == true); in test()
70 assert((abc0def < abc) == false); in test()
72 assert((abcdef < abc) == false); in test()
75 assert((abc.data() < abc0def) == true); in test()
76 assert((abc0def < abc.data()) == false); in test()
79 assert((std::basic_string<CharT, Traits>(abc) < abc0def) == true); in test()
80 assert((abc0def < std::basic_string<CharT, Traits>(abc)) == false); in test()
H A Dless_equal.pass.cpp65 SV abc = SV(MAKE_CSTRING(CharT, "abc")); in test() local
68 assert((abc <= abc0def) == true); in test()
69 assert((abc <= abcdef) == true); in test()
70 assert((abc0def <= abc) == false); in test()
72 assert((abcdef <= abc) == false); in test()
75 assert((abc.data() <= abc0def) == true); in test()
76 assert((abc0def <= abc.data()) == false); in test()
79 assert((std::basic_string<CharT, Traits>(abc) <= abc0def) == true); in test()
80 assert((abc0def <= std::basic_string<CharT, Traits>(abc)) == false); in test()
H A Dnot_equal.pass.cpp65 SV abc = SV(MAKE_CSTRING(CharT, "abc")); in test() local
68 assert((abc != abc0def) == true); in test()
69 assert((abc != abcdef) == true); in test()
70 assert((abc0def != abc) == true); in test()
72 assert((abcdef != abc) == true); in test()
75 assert((abc.data() != abc0def) == true); in test()
76 assert((abc0def != abc.data()) == true); in test()
79 assert((std::basic_string<CharT, Traits>(abc) != abc0def) == true); in test()
80 assert((abc0def != std::basic_string<CharT, Traits>(abc)) == true); in test()
H A Dgreater.pass.cpp65 SV abc = SV(MAKE_CSTRING(CharT, "abc")); in test() local
68 assert((abc > abc0def) == false); in test()
69 assert((abc > abcdef) == false); in test()
70 assert((abc0def > abc) == true); in test()
72 assert((abcdef > abc) == true); in test()
75 assert((abc.data() > abc0def) == false); in test()
76 assert((abc0def > abc.data()) == true); in test()
79 assert((std::basic_string<CharT, Traits>(abc) > abc0def) == false); in test()
80 assert((abc0def > std::basic_string<CharT, Traits>(abc)) == true); in test()
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/
H A DDebuggerBase.py9 import abc
108 @abc.abstractmethod
136 @abc.abstractmethod
148 @abc.abstractmethod
163 @abc.abstractmethod
169 @abc.abstractmethod
177 @abc.abstractmethod
183 @abc.abstractmethod
187 @abc.abstractmethod
191 @abc.abstractmethod
[all …]
/llvm-project-15.0.7/llvm/test/Transforms/NaryReassociate/NVPTX/
H A Dnary-slsr.ll11 ; abc = (a + b) + c;
12 ; foo(abc);
13 ; ab2c = abc + b;
22 %abc = add i32 %ab, %c
23 call void @foo(i32 %abc)
24 ; CHECK: call void @foo(i32 %abc)
25 ; PTX: st.param.b32 [param0+0], [[abc:%r[0-9]+]];
30 ; CHECK-NEXT: %ab2c = add i32 %abc, %b
31 ; PTX: add.s32 [[ab2c:%r[0-9]+]], [[abc]], [[b]]
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dsret.c3 struct abc { struct
11 struct abc foo1(void); argument
12 struct abc foo2();
15 struct abc dummy1 = foo1(); in bar()
16 struct abc dummy2 = foo2(); in bar()
H A D2002-02-16-RenamingTest.c5 void abc(void *);
8 abc(&X); in Test5()
11 abc(&X); in Test5()
14 abc(&X); in Test5()
/llvm-project-15.0.7/llvm/test/Transforms/IRCE/
H A Dunsigned_comparisons_ult.ll41 %abc = icmp ult i32 %idx, %len
72 ; CHECK-NEXT: %abc = icmp ult i32 %idx, %len
88 %abc = icmp ult i32 %idx, %len
131 %abc = icmp ult i32 %idx, %len
174 %abc = icmp ult i32 %idx, %len
204 ; CHECK-NEXT: %abc = icmp ult i32 %idx, %len
220 %abc = icmp ult i32 %idx, %len
263 %abc = icmp ult i32 %idx, %len
293 %abc = icmp ult i32 %idx, %len
339 %abc = icmp ult i32 %idx, %len
[all …]
H A Dunsigned_comparisons_ugt.ll38 %abc = icmp ult i32 %idx, %len
39 br i1 %abc, label %in.bounds, label %out.of.bounds
69 ; CHECK-NEXT: %abc = icmp ult i32 %idx, %len
85 %abc = icmp ult i32 %idx, %len
86 br i1 %abc, label %in.bounds, label %out.of.bounds
128 %abc = icmp ult i32 %idx, %len
159 ; CHECK-NEXT: %abc = icmp ult i32 %idx, %len
175 %abc = icmp ult i32 %idx, %len
205 %abc = icmp ult i32 %idx, %len
230 ; CHECK-NEXT: %abc = icmp ult i32 %idx, %len
[all …]
/llvm-project-15.0.7/lldb/test/API/lang/cpp/global_variables/
H A Dmain.cpp3 namespace abc { namespace
14 int unused = abc::g_file_global_const_int; in main()
15 int unused2 = abc::g_anon_namespace_const_int; in main()
16 return abc::g_file_global_int; // Set break point at this line. in main()
/llvm-project-15.0.7/llvm/test/Demangle/
H A Dms-options.test27 ?a@abc@@3PAY09HA
28 ; CHECK: int (*abc::a)[10]
29 ; CHECK-NO-CALLING-CONV: int (*abc::a)[10]
30 ; CHECK-NO-RETURN: int (*abc::a)[10]
31 ; CHECK-NO-ACCESS: int (*abc::a)[10]
32 ; CHECK-NO-MEMBER-TYPE: int (*abc::a)[10]
33 ; CHECK-NO-VARIABLE-TYPE: abc::a
34 ; CHECK-NO-ALL: abc::a

1234567891011