| /llvm-project-15.0.7/libcxx/test/libcxx/algorithms/alg.sorting/alg.heap.operations/make.heap/ |
| H A D | complexity.pass.cpp | 28 struct MyInt { struct 30 explicit MyInt(int xval) : value(xval) {} in MyInt() argument 31 MyInt(const MyInt& other) : value(other.value) { ++stats.copied; } in MyInt() argument 32 MyInt(MyInt&& other) : value(other.value) { ++stats.moved; } in MyInt() function 33 MyInt& operator=(const MyInt& other) { in operator =() argument 38 MyInt& operator=(MyInt&& other) { in operator =() argument 43 friend bool operator<(const MyInt& a, const MyInt& b) { in operator <() 52 std::vector<MyInt> v; in main()
|
| /llvm-project-15.0.7/libcxx/test/libcxx/algorithms/alg.sorting/alg.heap.operations/sort.heap/ |
| H A D | complexity.pass.cpp | 28 struct MyInt { struct 30 explicit MyInt(int xval) : value(xval) {} in MyInt() function 31 MyInt(const MyInt& other) : value(other.value) { ++stats.copied; } in MyInt() argument 32 MyInt(MyInt&& other) : value(other.value) { ++stats.moved; } in MyInt() function 33 MyInt& operator=(const MyInt& other) { in operator =() argument 38 MyInt& operator=(MyInt&& other) { in operator =() argument 43 friend bool operator<(const MyInt& a, const MyInt& b) { in operator <() 52 std::vector<MyInt> v; in main()
|
| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | index-refs.cpp | 4 typedef int MyInt; typedef 11 NS::MyInt NS::gx = EnumVal; 14 NS::MyInt x; in foo() 51 typedef int MyInt; typedef
|
| H A D | index-suppress-refs.m | 5 TYPEDEF(MyInt); 7 MyInt gx; 28 // CHECK-NEXT: [indexDeclaration]: kind: typedef | name: MyInt
|
| /llvm-project-15.0.7/clang/test/ExtractAPI/ |
| H A D | relative_include.m | 52 int MyInt; 104 "spelling": "MyInt" 109 "precise": "c:@MyInt" 126 "spelling": "MyInt" 132 "spelling": "MyInt" 135 "title": "MyInt" 138 "MyInt"
|
| H A D | typedef_chain.c | 17 typedef int MyInt; typedef 18 typedef MyInt MyIntInt;
|
| H A D | typedef.c | 17 typedef int MyInt; typedef
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | easily-swappable-parameters-implicits.cpp | 117 typedef int MyInt; typedef 120 void numericConversion10(MyInt MI, MyDouble MD) { numericConversion10(MD, MI); } in numericConversion10() 214 TDInt(const MyInt &); 215 operator MyInt() const; 227 TDIntDouble(const MyInt &); 229 operator MyInt() const;
|
| H A D | easily-swappable-parameters-len2.cpp | 238 void referenceThroughTypedef(int I, ICRTy Builtin, MyIntCRTy MyInt) {} in referenceThroughTypedef() argument
|
| /llvm-project-15.0.7/clang/test/PCH/ |
| H A D | cxx17-deduction-guide-decl.cpp | 9 typedef int MyInt; typedef 13 explicit Some(T, MyInt) {} in Some() argument
|
| /llvm-project-15.0.7/lldb/test/API/python_api/value/ |
| H A D | main.c | 24 typedef int MyInt; typedef 38 MyInt a = 12345; in main()
|
| /llvm-project-15.0.7/clang/test/CodeGenCoroutines/ |
| H A D | coro-await.cpp | 240 enum class MyInt: int {}; enum 241 ScalarAwaiter operator co_await(MyInt); 249 co_await MyInt(42); in TestOpAwait() local
|
| H A D | coro-await-exp-namespace.cpp | 245 enum class MyInt : int {}; enum 246 ScalarAwaiter operator co_await(MyInt); 254 co_await MyInt(42); in TestOpAwait() local
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | uninit-variables.c | 200 typedef int MyInt; typedef 201 MyInt test26(void) { in test26() 202 MyInt x; // expected-note{{initialize the variable 'x' to silence this warning}} in test26()
|