Home
last modified time | relevance | path

Searched refs:MyData (Results 1 – 6 of 6) sorted by relevance

/llvm-project/clang-tools-extra/docs/clang-tidy/checks/cert/
H A Ddcl58-cpp.rst39 struct MyData { long data; };
42 struct ::std::hash<MyData> { // no warning: specialization with user-defined type
43 unsigned long operator()(const MyData &K) const {
53 …bool less<void>::operator()<MyData &&, MyData &&>(MyData &&, MyData &&) const { // warning: modifi…
/llvm-project/clang/test/CodeGenObjCXX/
H A Dsynthesized-property-cleanup.mm11 // CHECK: define {{.*}}@"\01-[MyData setData:]"
16 // CHECK: define {{.*}}@"\01-[MyData string]"
20 @interface MyData : NSObject interface
33 @implementation MyData implementation
/llvm-project/clang/test/SemaObjC/
H A Ddefault-synthesize-sourceloc.m14 @interface MyData : NSObject interface
20 // CHECK: ObjCImplementationDecl {{.*}}line:[[@LINE+2]]{{.*}} MyData
22 @implementation MyData implementation
/llvm-project/cross-project-tests/debuginfo-tests/llgdb-tests/
H A Dforward-declare-class.cpp23 int MyData; member in A
/llvm-project/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp1588 class MyData { in bar2()
1598 MyData operator+(const MyData& other) const SHARED_LOCKS_REQUIRED(mu, other.mu); in bar3()
1601 MyData operator-(const MyData& a, const MyData& b) SHARED_LOCKS_REQUIRED(a.mu, b.mu); in bar4()
1605 void lockData (MyData *d) EXCLUSIVE_LOCK_FUNCTION(d->mu); in bar4()
1606 void unlockData(MyData *d) UNLOCK_FUNCTION(d->mu); in bar4()
1612 void foo(MyData* d) EXCLUSIVE_LOCKS_REQUIRED(d->mu) { }
1614 void subst(MyData
1558 class MyData { global() class
[all...]
/llvm-project/llvm/unittests/ADT/
H A DIntervalTreeTest.cpp50 class MyData : public IntervalData<UUPoint, UUValue> { in TEST() class
67 using UUTree = IntervalTree<UUPoint, UUValue, MyData>; in TEST()