Home
last modified time | relevance | path

Searched defs:C2 (Results 1 – 25 of 231) sorted by relevance

12345678910

/llvm-project/libcxxabi/test/
H A Dcatch_class_03.pass.cpp49 struct C2 struct
54 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() argument
55 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() argument
56 ~C2() {count--;} in ~C2() argument
H A Dcatch_ptr.pass.cpp49 struct C2 struct
54 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() function
55 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() argument
56 ~C2() {count--;} in ~C2() argument
H A Dcatch_class_04.pass.cpp49 struct C2 struct
54 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() function
55 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() argument
56 ~C2() {count--;} in ~C2() argument
/llvm-project/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-non-virtual-base-ordering.cpp6 struct C2 { int a; virtual void C2M() {} }; in C2M() argument
H A Ddllstorage-visibility.cpp59 struct HIDDEN C2 { struct
61 __attribute__((dllexport)) void exported_hidden() {} in exported_hidden()
/llvm-project/clang/test/SemaCXX/
H A Dvisibility.cpp5 struct C2 struct
7 static int p __attribute__((visibility("hidden")));
H A Dvtable-instantiation.cpp10 template<class T2> struct C2 { struct
11 void c2() { in c2()
H A Dmember-name-lookup.cpp77 struct C2 : virtual A { struct
81 …enum E3 { enumerator3_2 }; // expected-note 2{{member type 'C2::E3' found by ambiguous name lookup… argument
H A DPR12481.cpp4 class C2 { }; class
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/google/
H A Dexplicit-constructor.cpp106 struct C2 { struct
107 C2(initializer_list<int> list1) {} in C2() argument
108 C2(const initializer_list<unsigned> &list2) {} in C2() function
109 C2(initializer_list<unsigned> &&list3) {} in C2() function
111 explicit C2(initializer_list<double> list4) {} in C2() argument
/llvm-project/libcxx/test/libcxx/debug/containers/
H A Dsequence_container_iterators.pass.cpp96 Container C2; in SpliceFirstElem() local
101 Container C2; in SpliceFirstElem() local
117 Container C2; in SpliceFirstElemAfter() local
122 Container C2; in SpliceFirstElemAfter() local
233 Container C2 = C1; in InsertIterValue() local
258 Container C2 = C1; in EmplaceIterValue() local
278 Container C2 = C1; in InsertIterSizeValue() local
297 Container C2 = C1; in InsertIterIterIter() local
/llvm-project/clang/test/Layout/
H A Daix-bitfield-alignment.c90 struct C2 { struct
98 } C2; argument
H A Dms-x86-empty-nonvirtual-bases.cpp16 struct C2 { int a; C2() : a(0xf00000C2) {printf("C2 : %p\n", this);} }; in C2() struct
/llvm-project/clang/test/CodeGenObjC/
H A Dproperty-list-in-class.m18 @interface C2 : C1 <P, P2> { interface
28 @implementation C2 implementation
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Dcontainer-contains.cpp43 auto C2 = static_cast<bool>(MyMap.count(1)); testDifferentCheckTypes() local
66 auto C2 = MyMap.count(-2) == 0; testNegativeChecks() local
86 bool C2 = US.count(1002); testDifferentTypes() local
103 bool C2 = RefM.count(2002); testQualifiedTypes() local
159 bool C2 = MyMap.count(2) < 0; nonRewrittenCount() local
184 auto C2 = MyMap.count(2) != 0UL; testDifferentIntegerLiteralSuffixes() local
[all...]
/llvm-project/clang/test/Modules/Inputs/wildcard-submodule-exports/
H A DC_two.h4 unsigned long *C2; variable
/llvm-project/bolt/lib/Passes/
H A DPettisAndHansen.cpp40 Cluster *const C2; member in llvm::bolt::__anon0ca3f2600111::ClusterArc
54 void orderFuncs(const CallGraph &Cg, Cluster *C1, Cluster *C2) { in orderFuncs()
115 auto insertOrInc = [&](Cluster *C1, Cluster *C2, double Weight) { in pettisAndHansen()
156 Cluster *const C2 = Max.C2; in pettisAndHansen() local
/llvm-project/clang/test/Modules/Inputs/submodule-visibility/
H A Dcycle2.h6 struct C2 {}; struct
/llvm-project/clang/test/InterfaceStubs/
H A Dunresolved-using-typename.cpp11 template<typename T> class C2 : public C1<T> { using typename C1<T>::Repr; }; class
H A Dindirect-field-decl.cpp9 template<typename T> class C2 { union { T c; }; }; class
/llvm-project/llvm/lib/IR/
H A DConstantsContext.h71 BinaryConstantExpr(unsigned Opcode,Constant * C1,Constant * C2,unsigned Flags) BinaryConstantExpr() argument
99 ExtractElementConstantExpr(Constant * C1,Constant * C2) ExtractElementConstantExpr() argument
126 InsertElementConstantExpr(Constant * C1,Constant * C2,Constant * C3) InsertElementConstantExpr() argument
154 ShuffleVectorConstantExpr(Constant * C1,Constant * C2,ArrayRef<int> Mask) ShuffleVectorConstantExpr() argument
/llvm-project/clang/test/Sema/
H A Dattr-only-in-default-eval.cpp10 class [[clang::available_only_in_default_eval_method]] C2 { class
/llvm-project/clang/test/SemaTemplate/
H A Dundefined-template.cpp13 template<typename T1> struct C2 { struct
14 static char s_var_2; // expected-note{{forward declaration of template entity is here}}
17 …ass T2> static char s_tvar_2; // expected-note{{forward declaration of template entity is here}}
/llvm-project/clang/test/CXX/temp/temp.param/
H A Dp8-cxx20.cpp25 template<A2 a2> struct C2 { struct
28 static_assert((void*)&C<A{}>::v != (void*)&C2<A2{}>::v); argument
/llvm-project/compiler-rt/test/sanitizer_common/TestCases/
H A Dsymbolize_pc_inline.cpp23 static inline void C2() { Symbolize(); } in C2() function

12345678910