Home
last modified time | relevance | path

Searched defs:Base (Results 1 – 25 of 494) sorted by relevance

12345678910>>...20

/external/compiler-rt/test/msan/
Ddtor-multiple-inheritance-nontrivial-class-members.cc57 struct Base { struct
68 Base(int *derived_a, Vector<int> *derived_v1, Vector<int> *derived_v2, in Base() argument
79 virtual ~Base() { in ~Base() argument
Ddtor-derived-class.cc8 struct Base { struct
10 Base() { x = 5; } in Base() function
11 virtual ~Base() {} in ~Base() argument
/external/clang/test/PCH/
Dcxx11-inheriting-ctors.cpp9 struct Base { struct
10 Base(int) {} in Base() function
13 Base(T) {} in Base() function
Dcxx-offsetof-base.h3 struct Base { int x; }; argument
/external/clang/test/CodeGenCXX/
Dsanitize-dtor-repress-aliasing.cpp14 struct Base { struct
17 Base() { x = 5; } in Base() argument
18 virtual ~Base() {} in ~Base() argument
Dsanitize-dtor-nontrivial-virtual-base.cpp13 struct Base { struct
16 Base() { in Base() argument
20 virtual ~Base() {} in ~Base() argument
Dpragma-pack-3.cpp3 struct Base { struct
7 struct Derived_1 : virtual Base argument
Dsanitize-dtor-derived-class.cpp8 class Base { class
11 Base() { in Base() function in Base
/external/clang/test/SemaTemplate/
Dtemp.cpp11 …namespace A { template<typename T> struct Base { typedef T t; }; } // expected-note {{member found… struct
12 …namespace B { template<typename T> struct Base { typedef T t; }; } // expected-note {{member found… argument
Dinstantiate-elab-type-specifier.cpp5 template <class T> struct Base { struct
10 template <class T> struct Derived : Base<T> { argument
Ddependent-base-classes.cpp39 struct Base { struct
40 class Nested { };
41 template<typename U> struct MemberTemplate { };
42 int a;
127 template <class T> struct Base { struct
128 Base* p;
Dclass-template-ctor-initializer.cpp13 typedef A<X> Base; typedef
37 class Base { class
39 Base() {} in Base() function in PR7259::Base
60 struct Base { Base(int); }; // expected-note {{candidate constructor not viable}} struct
Dtypo-dependent-name.cpp5 struct Base { struct
6 T inner;
/external/clang/test/SemaCXX/
Dpragma-pack.cpp6 struct Base { struct
7 int i;
22 struct Base { struct
24 int x;
Dthread-safety-reference-handling.cpp4 class Base { class
6 Base() {} in Base() function in Base
/external/v8/test/mjsunit/es6/
Dsuper.js8 function Base() { } class in TestSuperNamedLoads
10 Base.prototype = { class
49 class Base { class in TestSuperKeyedLoads
98 function Base() {} class in TestGetter
133 function Base() {} class in TestGetterKeyed
199 function Base() {} class in TestGetterNumericKeyed
271 function Base() {} class in TestSetter
314 function Base() {} class in TestSetterNumericKeyed
387 function Base() {} class in TestSetterKeyed
471 function Base() {} class in TestSetterDataProperties
[all …]
/external/llvm/lib/Target/Mips/
DMipsISelDAGToDAG.cpp69 bool MipsDAGToDAGISel::selectAddrRegImm(SDValue Addr, SDValue &Base, in selectAddrRegImm()
75 bool MipsDAGToDAGISel::selectAddrRegReg(SDValue Addr, SDValue &Base, in selectAddrRegReg()
81 bool MipsDAGToDAGISel::selectAddrDefault(SDValue Addr, SDValue &Base, in selectAddrDefault()
87 bool MipsDAGToDAGISel::selectIntAddr(SDValue Addr, SDValue &Base, in selectIntAddr()
93 bool MipsDAGToDAGISel::selectIntAddrMM(SDValue Addr, SDValue &Base, in selectIntAddrMM()
99 bool MipsDAGToDAGISel::selectIntAddrLSL2MM(SDValue Addr, SDValue &Base, in selectIntAddrLSL2MM()
105 bool MipsDAGToDAGISel::selectIntAddrMSA(SDValue Addr, SDValue &Base, in selectIntAddrMSA()
111 bool MipsDAGToDAGISel::selectAddr16(SDNode *Parent, SDValue N, SDValue &Base, in selectAddr16()
/external/clang/lib/AST/
DVTTBuilder.cpp39 void VTTBuilder::AddVTablePointer(BaseSubobject Base, uint64_t VTableIndex, in AddVTablePointer()
56 void VTTBuilder::LayoutSecondaryVTTs(BaseSubobject Base) { in LayoutSecondaryVTTs()
77 VTTBuilder::LayoutSecondaryVirtualPointers(BaseSubobject Base, in LayoutSecondaryVirtualPointers()
144 VTTBuilder::LayoutSecondaryVirtualPointers(BaseSubobject Base, in LayoutSecondaryVirtualPointers()
176 void VTTBuilder::LayoutVTT(BaseSubobject Base, bool BaseIsVirtual) { in LayoutVTT()
/external/v8/test/mjsunit/compiler/
Dcompare-map-elim2.js36 function Base() { class
39 Base.prototype.__defineGetter__("value", function() { return 1; }); class
66 function Base() { class
100 function Base() { class
/external/llvm/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp58 SDValue Base; member
190 bool selectBDAddr12Only(SDValue Addr, SDValue &Base, SDValue &Disp) const { in selectBDAddr12Only()
193 bool selectBDAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const { in selectBDAddr12Pair()
196 bool selectBDAddr20Only(SDValue Addr, SDValue &Base, SDValue &Disp) const { in selectBDAddr20Only()
199 bool selectBDAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const { in selectBDAddr20Pair()
204 bool selectMVIAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const { in selectMVIAddr12Pair()
207 bool selectMVIAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const { in selectMVIAddr20Pair()
212 bool selectBDXAddr12Only(SDValue Addr, SDValue &Base, SDValue &Disp, in selectBDXAddr12Only()
218 bool selectBDXAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp, in selectBDXAddr12Pair()
224 bool selectDynAlloc12Only(SDValue Addr, SDValue &Base, SDValue &Disp, in selectDynAlloc12Only()
[all …]
/external/clang/test/CXX/class.derived/
Dp2.cpp6 struct Base {}; struct
7 int Base = 10; variable
/external/clang/test/CodeGenObjC/
Dobjc2-nonfragile-abi-impl.m4 @interface Base @end interface
10 @implementation Base { implementation
/external/clang/test/Index/
Doverriding-method-comments.mm59 struct Base { struct
64 …omments.mm" line="[[@LINE-2]]" column="16"><Name>foo_pure</Name><USR>c:@S@Base@F@foo_pure#I#</USR>… argument
76 …ts.mm" line="[[@LINE-2]]" column="16"><Name>foo_outofline</Name><USR>c:@S@Base@F@foo_outofline#I#<… argument
79 void Base::foo_outofline(int RRR) {} argument
/external/clang/test/SemaObjC/
Dwarn-superclass-method-mismatch.m9 @interface Base : Root interface
11 -(void) method1: (Base*) x; // expected-note {{previous declaration is here}} argument
26 -(void) method2: (Base*) x; // no need to warn. At call point we warn if need be. argument
28 + mathod4: (Base*)x1; argument
/external/eigen/Eigen/src/SparseCore/
DSparseCwiseUnaryOp.h38 typedef typename CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::MatrixTypeIterator Base; typedef
61 typedef typename CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::MatrixTypeReverseIterator Base; typedef
102 typedef typename CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::MatrixTypeIterator Base; typedef
124 typedef typename CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::MatrixTypeReverseIterator Base; typedef

12345678910>>...20