Searched defs:Base (Results 151 - 175 of 448) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Duser-defined-conversions.cpp42 struct Base { struct
43 Base(const FunkyDerived&);
46 struct Derived : Base { };
48 struct FunkyDerived : Base { };
51 operator Base();
64 Base b1 = ctb;
65 Base b2(ctb);
66 Base b3 = ctd;
67 Base b4(ctd);
68 Base b
[all...]
H A Dvararg-non-pod.cpp98 struct Base { virtual ~Base(); }; struct
99 Base &get_base(...);
102 void test_typeid(Base &base) {
103 (void)typeid(get_base(base)); // expected-warning{{cannot pass object of non-POD type 'Base' through variadic function; call will abort at runtime}}
/external/clang/test/SemaTemplate/
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 Dinstantiate-exception-spec-cxx11.cpp116 struct Base { struct
119 template<typename T> struct Derived : Base {
/external/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp54 Record *Base);
75 Record *Base) {
76 std::string BaseName = macroName(Base->getName());
78 ChildIterator i = Tree.lower_bound(Base), e = Tree.upper_bound(Base);
83 if (Base->getValue("Abstract") && !Base->getValueAsBit("Abstract"))
84 First = Last = Base;
92 OS << "# define " << NodeName << "(Type, Base) "
93 << BaseName << "(Type, Base)\
72 EmitNode( const ChildMap &Tree, raw_ostream &OS, Record *Base) argument
[all...]
/external/eigen/Eigen/src/Core/
H A DArrayWrapper.h39 typedef ArrayBase<ArrayWrapper> Base; typedef in class:Eigen::ArrayWrapper
159 typedef MatrixBase<MatrixWrapper<ExpressionType> > Base; typedef in class:Eigen::MatrixWrapper
H A DCwiseUnaryView.h63 typedef typename CwiseUnaryViewImpl<ViewOp, MatrixType,typename internal::traits<MatrixType>::StorageKind>::Base Base; typedef in class:Eigen::CwiseUnaryView
98 typedef typename internal::dense_xpr_base< CwiseUnaryView<ViewOp, MatrixType> >::type Base; typedef in class:Eigen::CwiseUnaryViewImpl
H A DDiagonal.h70 typedef typename internal::dense_xpr_base<Diagonal>::type Base; typedef in class:Eigen::Diagonal
H A DDiagonalProduct.h49 typedef MatrixBase<DiagonalProduct> Base; typedef in class:Eigen::DiagonalProduct
H A DMap.h109 typedef MapBase<Map> Base; typedef in class:Eigen::Map
112 typedef typename Base::PointerType PointerType;
140 : Base(cast_to_pointer_type(dataPtr)), m_stride(a_stride)
142 PlainObjectType::Base::_check_template_params();
152 : Base(cast_to_pointer_type(dataPtr), a_size), m_stride(a_stride)
154 PlainObjectType::Base::_check_template_params();
165 : Base(cast_to_pointer_type(dataPtr), nbRows, nbCols), m_stride(a_stride)
167 PlainObjectType::Base::_check_template_params();
H A DMapBase.h23 * \brief Base class for Map and Block expression with direct access
32 typedef typename internal::dense_xpr_base<Derived>::type Base; typedef in class:Eigen::MapBase
36 SizeAtCompileTime = Base::SizeAtCompileTime
50 using Base::derived;
51 // using Base::RowsAtCompileTime;
52 // using Base::ColsAtCompileTime;
53 // using Base::SizeAtCompileTime;
54 using Base::MaxRowsAtCompileTime;
55 using Base::MaxColsAtCompileTime;
56 using Base
173 typedef MapBase<Derived, ReadOnlyAccessors> Base; typedef in class:Eigen::MapBase
[all...]
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 Matrix() : Base()
[all...]
H A DRef.h131 typedef MapBase<Derived> Base; typedef in class:Eigen::RefBase
148 : Base(0,RowsAtCompileTime==Dynamic?0:RowsAtCompileTime,ColsAtCompileTime==Dynamic?0:ColsAtCompileTime),
166 ::new (static_cast<Base*>(this)) Base(expr.data(), 1, expr.size());
171 ::new (static_cast<Base*>(this)) Base(expr.data(), expr.size(), 1);
174 ::new (static_cast<Base*>(this)) Base(expr.data(), expr.rows(), expr.cols());
193 typedef RefBase<Ref> Base; typedef in class:Eigen::Ref
202 Base
227 typedef RefBase<Ref> Base; typedef in class:Eigen::Ref
[all...]
H A DReplicate.h69 typedef typename internal::dense_xpr_base<Replicate>::type Base; typedef in class:Eigen::Replicate
H A DSelect.h60 typedef typename internal::dense_xpr_base<Select>::type Base; typedef in class:Eigen::Select
H A DSelfCwiseBinaryOp.h50 typedef typename internal::dense_xpr_base<SelfCwiseBinaryOp>::type Base; typedef in class:Eigen::SelfCwiseBinaryOp
150 return Base::operator=(rhs);
/external/eigen/Eigen/src/Core/util/
H A DBlasUtil.h178 typedef blas_traits<NestedXpr> Base; typedef in struct:Eigen::internal::blas_traits
180 typedef typename Base::ExtractType ExtractType;
184 NeedToConjugate = Base::NeedToConjugate ? 0 : IsComplex
186 static inline ExtractType extract(const XprType& x) { return Base::extract(x.nestedExpression()); }
187 static inline Scalar extractScalarFactor(const XprType& x) { return conj(Base::extractScalarFactor(x.nestedExpression())); }
195 typedef blas_traits<NestedXpr> Base; typedef in struct:Eigen::internal::blas_traits
197 typedef typename Base::ExtractType ExtractType;
198 static inline ExtractType extract(const XprType& x) { return Base::extract(x.nestedExpression()); }
200 { return x.functor().m_other * Base::extractScalarFactor(x.nestedExpression()); }
208 typedef blas_traits<NestedXpr> Base; typedef in struct:Eigen::internal::blas_traits
222 typedef blas_traits<NestedXpr> Base; typedef in struct:Eigen::internal::blas_traits
[all...]
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DAngleAxis.h48 typedef RotationBase<AngleAxis<_Scalar>,3> Base; typedef in class:Eigen::AngleAxis
52 using Base::operator*;
/external/eigen/Eigen/src/Geometry/
H A DAngleAxis.h51 typedef RotationBase<AngleAxis<_Scalar>,3> Base; typedef in class:Eigen::AngleAxis
55 using Base::operator*;
H A DRotation2D.h43 typedef RotationBase<Rotation2D<_Scalar>,2> Base; typedef in class:Eigen::Rotation2D
47 using Base::operator*;
/external/eigen/Eigen/src/SparseCore/
H A DSparseTriangularView.h68 typedef typename MatrixTypeNestedCleaned::InnerIterator Base; typedef in class:Eigen::SparseTriangularView::InnerIterator
73 : Base(view.nestedExpression(), outer), m_returnOne(false)
78 Base::operator++();
82 else if(HasUnitDiag && ((!Base::operator bool()) || Base::index()>=Base::outer()))
84 if((!SkipFirst) && Base::operator bool())
85 Base::operator++();
96 Base::operator++();
97 if(HasUnitDiag && (!SkipFirst) && ((!Base
138 typedef typename MatrixTypeNestedCleaned::ReverseInnerIterator Base; typedef in class:Eigen::SparseTriangularView::ReverseInnerIterator
[all...]
/external/eigen/test/
H A DdenseLM.cpp23 typedef DenseFunctor<Scalar> Base; typedef in struct:DenseLM
24 typedef typename Base::JacobianType JacobianType;
33 int m = Base::values();
34 int n = Base::inputs();
59 int m = Base::values();
60 int n = Base::inputs();
80 int m = Base::values();
81 int n = Base::inputs();
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h198 typedef IterativeSolverBase<MINRES> Base; typedef in class:Eigen::MINRES
199 using Base::mp_matrix;
200 using Base::m_error;
201 using Base::m_iterations;
202 using Base::m_info;
203 using Base::m_isInitialized;
216 MINRES() : Base() {}
228 MINRES(const MatrixType& A) : Base(A) {}
243 eigen_assert(Base::rows()==b.rows()
253 m_iterations = Base
[all...]
/external/llvm/include/llvm/IR/
H A DDominators.h68 typedef DominatorTreeBase<BasicBlock> Base; typedef in class:llvm::DominatorTree
81 if (Base::compare(Other))
88 using Base::dominates;
101 using Base::isReachableFromEntry;
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MachObjectWriter.cpp271 const MCSymbolData *Base = Asm.getAtom(&SD); local
275 // If the symbol is a variable and we weren't able to get a Base for it
278 if (Symbol->isVariable() && !Base) {
305 Base = nullptr;
311 if (Base) {
312 Index = Base->getIndex();
316 if (Base != &SD)
317 Value += Layout.getSymbolOffset(&SD) - Layout.getSymbolOffset(Base);

Completed in 205 milliseconds

1234567891011>>