Searched refs:Base (Results 76 - 100 of 519) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dusing-decl-templates.cpp39 struct Base { struct in namespace:test0
42 template<typename T> struct E : Base {
43 using Base::foo;
70 class Base { class in namespace:PR10883
76 class Derived : public Base<T> {
78 using Base<T>::Container;
H A Dvirtual-override.cpp144 template <typename Base>
145 struct Foo : Base {
157 template<typename Base>
158 struct Foo2 : Base {
185 class Base {}; class in namespace:PR5920
188 class Derived : public Base {};
192 virtual Base* Method();
204 class Base {}; class in namespace:PR6110
205 class Derived : public Base {};
207 typedef Base* Base
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-cast.cpp5 class Base { class
10 class Derived : public Base { };
57 template struct DynamicCast0<Base*, Derived*>;
58 template struct DynamicCast0<Base*, A>; // expected-note{{instantiation}}
113 struct Derived2 : public Base { };
115 void test_derived_to_base(Base *&bp, Derived2<int> *dp) {
H A Ddependent-names.cpp20 template <class T> class Base { class in namespace:test0
31 template <class T> class Derived1 : Base<T> {
34 Base<T>::static_foo();
35 Base<T>::instance_foo();
39 Base<T>::Inner::static_foo();
40 Base<T>::Inner::instance_foo(); // expected-error {{call to non-static member function without an object argument}}
44 Base<T>::static_foo();
45 Base<T>::instance_foo(); // expected-error {{call to non-static member function without an object argument}}
49 Base<T>::Inner::static_foo();
50 Base<
93 template <class T> struct Base { struct in namespace:test1
[all...]
H A Ddependent-base-classes.cpp39 struct Base { struct in namespace:PR6031
46 struct HasDepBase : Base<T> {
127 template <class T> struct Base { struct in namespace:PR5812
128 Base* p;
131 template <class T> struct Derived: public Base<T> {
132 typename Derived::Base* p; // meaning Derived::Base<T>
H A Dqualified-id.cpp14 template <class T> class Base { }; class in namespace:test1
15 template <class T> class Derived : public Base<T> {
/external/eigen/Eigen/src/Core/
H A DStride.h87 typedef Stride<0, Value> Base; typedef in class:Eigen::InnerStride
90 InnerStride() : Base() {}
91 InnerStride(Index v) : Base(0, v) {}
99 typedef Stride<Value, 0> Base; typedef in class:Eigen::OuterStride
102 OuterStride() : Base() {}
103 OuterStride(Index v) : Base(v,0) {}
H A DMatrix.h132 /** \brief Base class typedef.
135 typedef PlainObjectBase<Matrix> Base; typedef in class:Eigen::Matrix
141 typedef typename Base::PlainObject PlainObject;
143 using Base::base;
144 using Base::coeffRef;
156 return Base::_set(other);
172 return Base::_set(other);
184 return Base::operator=(other);
190 return Base::operator=(func);
203 EIGEN_STRONG_INLINE explicit Matrix() : Base()
[all...]
/external/llvm/include/llvm/Support/
H A DRecyclingAllocator.h29 /// Base - Implementation details.
31 Recycler<T, Size, Align> Base; member in class:llvm::RecyclingAllocator
38 ~RecyclingAllocator() { Base.clear(Allocator); }
44 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); }
46 T *Allocate() { return Base.Allocate(Allocator); }
52 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); }
54 void PrintStats() { Base.PrintStats(); }
/external/clang/lib/AST/
H A DInheritViz.cpp94 for (CXXRecordDecl::base_class_const_iterator Base = Decl->bases_begin();
95 Base != Decl->bases_end(); ++Base) {
96 QualType CanonBaseType = Context.getCanonicalType(Base->getType());
100 if (!Base->isVirtual())
104 WriteNode(Base->getType(), Base->isVirtual());
110 WriteNodeReference(Base->getType(), Base->isVirtual());
113 if (Base
[all...]
/external/webkit/Source/JavaScriptCore/heap/
H A DHandle.h94 template <typename Base, typename T> struct HandleConverter {
98 ASSERT(!static_cast<const Base*>(this)->get() || !static_cast<const Base*>(this)->get()->isZombie());
100 return static_cast<Base*>(this)->get();
105 ASSERT(!static_cast<const Base*>(this)->get() || !static_cast<const Base*>(this)->get()->isZombie());
107 return static_cast<const Base*>(this)->get();
113 ASSERT(!static_cast<const Base*>(this)->get() || !static_cast<const Base*>(this)->get()->isZombie());
115 return static_cast<Base*>(thi
[all...]
/external/clang/test/CXX/class/class.friend/
H A Dp1.cpp9 struct Base { struct
16 struct Derived : public Base {
53 friend int Base::typedeffed_member(); // okay: should look through typedef
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.h88 bool SelectADDRri_imp(SDNode *OpNode, SDValue Addr, SDValue &Base,
90 bool SelectADDRri(SDNode *OpNode, SDValue Addr, SDValue &Base,
92 bool SelectADDRri64(SDNode *OpNode, SDValue Addr, SDValue &Base,
95 bool SelectADDRsi_imp(SDNode *OpNode, SDValue Addr, SDValue &Base,
97 bool SelectADDRsi(SDNode *OpNode, SDValue Addr, SDValue &Base,
99 bool SelectADDRsi64(SDNode *OpNode, SDValue Addr, SDValue &Base,
/external/webkit/Source/WebKit2/UIProcess/
H A DWebContextUserMessageCoders.h42 typedef UserMessageEncoder<WebContextUserMessageEncoder> Base; typedef in class:WebKit::WebContextUserMessageEncoder
45 : Base(root)
85 typedef UserMessageDecoder<WebContextUserMessageDecoder> Base; typedef in class:WebKit::WebContextUserMessageDecoder
88 : Base(root)
94 : Base(root)
102 if (!Base::baseDecode(decoder, coder, type))
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundleUserMessageCoders.h45 typedef UserMessageEncoder<InjectedBundleUserMessageEncoder> Base; typedef in class:WebKit::InjectedBundleUserMessageEncoder
48 : Base(root)
88 typedef UserMessageDecoder<InjectedBundleUserMessageDecoder> Base; typedef in class:WebKit::InjectedBundleUserMessageDecoder
91 : Base(root)
96 : Base(root)
103 if (!Base::baseDecode(decoder, coder, type))
/external/eigen/Eigen/src/SparseCore/
H A DSparseCwiseUnaryOp.h38 typedef typename CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::MatrixTypeIterator Base; typedef in class:Eigen::CwiseUnaryOpImpl::InnerIterator
42 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
46 { Base::operator++(); return *this; }
48 EIGEN_STRONG_INLINE typename CwiseUnaryOpImpl::Scalar value() const { return m_functor(Base::value()); }
61 typedef typename CwiseUnaryOpImpl<UnaryOp,MatrixType,Sparse>::MatrixTypeReverseIterator Base; typedef in class:Eigen::CwiseUnaryOpImpl::ReverseInnerIterator
65 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
69 { Base::operator--(); return *this; }
71 EIGEN_STRONG_INLINE typename CwiseUnaryOpImpl::Scalar value() const { return m_functor(Base::value()); }
102 typedef typename CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::MatrixTypeIterator Base; typedef in class:Eigen::CwiseUnaryViewImpl::InnerIterator
106 : Base(unaryO
124 typedef typename CwiseUnaryViewImpl<ViewOp,MatrixType,Sparse>::MatrixTypeReverseIterator Base; typedef in class:Eigen::CwiseUnaryViewImpl::ReverseInnerIterator
[all...]
/external/eigen/Eigen/src/SuperLUSupport/
H A DSuperLUSupport.h482 typedef SuperLUBase<_MatrixType,SuperLU> Base; typedef in class:Eigen::SuperLU
484 typedef typename Base::Scalar Scalar;
485 typedef typename Base::RealScalar RealScalar;
486 typedef typename Base::Index Index;
487 typedef typename Base::IntRowVectorType IntRowVectorType;
488 typedef typename Base::IntColVectorType IntColVectorType;
489 typedef typename Base::LUMatrixType LUMatrixType;
495 SuperLU() : Base() { init(); }
497 SuperLU(const MatrixType& matrix) : Base()
499 Base
823 typedef SuperLUBase<_MatrixType,SuperILU> Base; typedef in class:Eigen::SuperILU
[all...]
/external/webkit/Source/JavaScriptCore/API/
H A DJSCallbackObjectFunctions.h45 template <class Base>
46 inline JSCallbackObject<Base>* JSCallbackObject<Base>::asCallbackObject(JSValue value)
52 template <class Base>
53 JSCallbackObject<Base>::JSCallbackObject(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, JSClassRef jsClass, void* data)
54 : Base(globalObject, structure)
57 ASSERT(Base::inherits(&s_info));
63 template <class Base>
64 JSCallbackObject<Base>::JSCallbackObject(JSGlobalData& globalData, JSClassRef jsClass, Structure* structure)
65 : Base(globalDat
[all...]
/external/eigen/Eigen/src/Eigen2Support/
H A DQR.h21 typedef HouseholderQR<MatrixType> Base; typedef in class:Eigen::QR
24 QR() : Base() {}
27 explicit QR(const T& t) : Base(t) {}
32 *result = static_cast<const Base*>(this)->solve(b);
/external/llvm/lib/Target/Mips/
H A DMipsISelDAGToDAG.h57 virtual bool selectAddrRegImm(SDValue Addr, SDValue &Base,
61 virtual bool selectAddrDefault(SDValue Addr, SDValue &Base,
65 virtual bool selectIntAddr(SDValue Addr, SDValue &Base,
68 virtual bool selectAddr16(SDNode *Parent, SDValue N, SDValue &Base,
/external/webkit/Source/WebCore/bindings/js/
H A DJSCSSImportRuleCustom.cpp37 Base::markChildren(markStack);
H A DJSCSSMediaRuleCustom.cpp37 Base::markChildren(markStack);
H A DJSCSSRuleListCustom.cpp37 Base::markChildren(markStack);
H A DJSWebKitAnimationListCustom.cpp37 Base::markChildren(markStack);
H A DJSXMLHttpRequestUploadCustom.cpp46 Base::markChildren(markStack);

Completed in 505 milliseconds

1234567891011>>