Home
last modified time | relevance | path

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

123456

/external/libcxxabi/test/
Dcatch_class_03.pass.cpp43 struct C2 struct
48 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() argument
49 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() function
50 ~C2() {count--;} in ~C2() argument
Dcatch_ptr.pass.cpp43 struct C2 struct
48 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() argument
49 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() argument
50 ~C2() {count--;} in ~C2() argument
Dcatch_class_04.pass.cpp43 struct C2 struct
48 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() argument
49 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() argument
50 ~C2() {count--;} in ~C2() argument
/external/clang/test/CodeGenCXX/
Dmicrosoft-abi-non-virtual-base-ordering.cpp6 struct C2 { int a; virtual void C2M() {} }; in C2M() argument
Dvtt-layout.cpp34 class C2 : public virtual V3, virtual V2 { int i; }; class
53 class C2 : public virtual V3, virtual V2 { int i; }; class
/external/clang/test/SemaCXX/
Dvisibility.cpp5 struct C2 struct
7 static int p __attribute__((visibility("hidden")));
Dmember-name-lookup.cpp77 struct C2 : virtual A { struct
84 struct D2 : B2, C2 { argument
Dvtable-instantiation.cpp10 template<class T2> struct C2 { struct
11 void c2() { in c2()
Dnested-name-spec.cpp28 class C2 { class
319 typedef int C2; typedef
326 struct C2 { static const unsigned N1 = 1; }; struct
345 int f(C1::C2), C2 : N1; member
378 int C2:N1; member
DPR12481.cpp4 class C2 { }; class
/external/llvm/lib/IR/
DConstantsContext.h60 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2, in BinaryConstantExpr()
81 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3) in SelectConstantExpr()
102 ExtractElementConstantExpr(Constant *C1, Constant *C2) in ExtractElementConstantExpr()
123 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) in InsertElementConstantExpr()
145 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3) in ShuffleVectorConstantExpr()
DConstants.cpp1803 Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2, in get()
1926 Constant *C2, bool OnlyIfReduced) { in getCompare()
2193 Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2, in getAdd()
2200 Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) { in getFAdd()
2204 Constant *ConstantExpr::getSub(Constant *C1, Constant *C2, in getSub()
2211 Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) { in getFSub()
2215 Constant *ConstantExpr::getMul(Constant *C1, Constant *C2, in getMul()
2222 Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) { in getFMul()
2226 Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) { in getUDiv()
2231 Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) { in getSDiv()
[all …]
/external/clang/test/CodeGenObjC/
Dproperty-list-in-class.m18 @interface C2 : C1 <P, P2> { interface
28 @implementation C2 implementation
/external/v8/test/mjsunit/
Dsetter-on-constructor-prototype.js46 function C2() { class in RunTest
49 C2.prototype = { }; class
/external/clang/test/Layout/
Dms-x86-empty-nonvirtual-bases.cpp16 struct C2 { int a; C2() : a(0xf00000C2) {printf("C2 : %p\n", this);} }; in C2() struct
Dms-x86-empty-virtual-base.cpp16 struct C2 { int a; C2() : a(0xf00000C2) {printf("C2 : %3d\n", ((int)(__SIZE_TYPE__)this)&0xfff);} }; in C2() function
/external/pdfium/core/src/fdrm/crypto/
Dfx_crypt_aes.cpp466 static const int C1 = 1, C2 = 2, C3 = 3, Nb = 4; in aes_encrypt_nb_4() local
493 static const int C1 = 1, C2 = 2, C3 = 3, Nb = 6; in aes_encrypt_nb_6() local
528 static const int C1 = 1, C2 = 3, C3 = 4, Nb = 8; in aes_encrypt_nb_8() local
583 static const int C1 = 4 - 1, C2 = 4 - 2, C3 = 4 - 3, Nb = 4; in aes_decrypt_nb_4() local
610 static const int C1 = 6 - 1, C2 = 6 - 2, C3 = 6 - 3, Nb = 6; in aes_decrypt_nb_6() local
645 static const int C1 = 8 - 1, C2 = 8 - 3, C3 = 8 - 4, Nb = 8; in aes_decrypt_nb_8() local
/external/v8/test/mjsunit/es6/
Dcomputed-property-names-classes.js224 class C2 { class in TestGetter
270 class C2 { class in TestSetter
320 class C2 { class
356 class C2 { class
392 class C2 { class in TestConstructor
/external/clang/test/Modules/Inputs/wildcard-submodule-exports/
DC_two.h4 unsigned long *C2; variable
/external/clang/test/Modules/Inputs/submodule-visibility/
Dcycle2.h6 struct C2 {}; struct
/external/testng/src/test/java/test/dependent/
DC2.java7 public class C2 { class
/external/clang/test/SemaTemplate/
Dclass-template-id-2.cpp14 class C2 : public N::A<float> { }; // expected-error{{base class has incomplete type}} class
/external/clang/test/Parser/
Dcxx-concept-declaration.cpp8 template<typename T> concept bool C2() { return true; } in C2() function
/external/fdlibm/
Dk_cos.c58 C2 = -1.38888888888741095749e-03, /* 0xBF56C16C, 0x16C15177 */ variable
/external/clang/lib/AST/
DRawCommentList.cpp76 unsigned C2 = SM.getPresumedColumnNumber(L2, &Invalid); in commentsStartOnSameColumn() local
298 const RawComment &C2 = RC; in addComment() local

123456