Home
last modified time | relevance | path

Searched refs:MyInt (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/libcxx/test/libcxx/algorithms/alg.sorting/alg.heap.operations/make.heap/
H A Dcomplexity.pass.cpp28 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 Dcomplexity.pass.cpp28 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 Dindex-refs.cpp4 typedef int MyInt; typedef
11 NS::MyInt NS::gx = EnumVal;
14 NS::MyInt x; in foo()
51 typedef int MyInt; typedef
H A Dindex-suppress-refs.m5 TYPEDEF(MyInt);
7 MyInt gx;
28 // CHECK-NEXT: [indexDeclaration]: kind: typedef | name: MyInt
/llvm-project-15.0.7/clang/test/ExtractAPI/
H A Drelative_include.m52 int MyInt;
104 "spelling": "MyInt"
109 "precise": "c:@MyInt"
126 "spelling": "MyInt"
132 "spelling": "MyInt"
135 "title": "MyInt"
138 "MyInt"
H A Dtypedef_chain.c17 typedef int MyInt; typedef
18 typedef MyInt MyIntInt;
H A Dtypedef.c17 typedef int MyInt; typedef
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Deasily-swappable-parameters-implicits.cpp117 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 Deasily-swappable-parameters-len2.cpp238 void referenceThroughTypedef(int I, ICRTy Builtin, MyIntCRTy MyInt) {} in referenceThroughTypedef() argument
/llvm-project-15.0.7/clang/test/PCH/
H A Dcxx17-deduction-guide-decl.cpp9 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 Dmain.c24 typedef int MyInt; typedef
38 MyInt a = 12345; in main()
/llvm-project-15.0.7/clang/test/CodeGenCoroutines/
H A Dcoro-await.cpp240 enum class MyInt: int {}; enum
241 ScalarAwaiter operator co_await(MyInt);
249 co_await MyInt(42); in TestOpAwait() local
H A Dcoro-await-exp-namespace.cpp245 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 Duninit-variables.c200 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()