/libcore/luni/src/test/java/tests/api/javax/security/auth/ |
X500PrincipalTest.java | 43 X500Principal xpr = new X500Principal(name); local 44 assertNotNull("Null object returned", xpr); 45 String resName = xpr.getName(); 52 X500Principal xpr = new X500Principal((String)null); local 60 X500Principal xpr = new X500Principal("X500PrincipalName"); local 78 X500Principal xpr = new X500Principal(is); local 79 assertNotNull("Null object returned", xpr); 80 byte[] resArray = xpr.getEncoded(); 87 X500Principal xpr = new X500Principal(isNull); local 96 X500Principal xpr = new X500Principal(is) local 113 X500Principal xpr = new X500Principal(ba); local 122 X500Principal xpr = new X500Principal(baNull); local 131 X500Principal xpr = new X500Principal(ba); local 144 X500Principal xpr = new X500Principal(name); local 159 X500Principal xpr = new X500Principal(name); local 199 X500Principal xpr = new X500Principal(name); local 213 X500Principal xpr = new X500Principal(name); local 228 X500Principal xpr = new X500Principal(ba); local [all...] |
/external/eigen/Eigen/src/Core/ |
Block.h | 109 inline Block(XprType& xpr, Index i) 110 : m_xpr(xpr), 117 m_blockRows(BlockRows==1 ? 1 : xpr.rows()), 118 m_blockCols(BlockCols==1 ? 1 : xpr.cols()) 121 ((BlockRows==1) && (BlockCols==XprType::ColsAtCompileTime) && i<xpr.rows()) 122 ||((BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) && i<xpr.cols()))); 127 inline Block(XprType& xpr, Index startRow, Index startCol) 128 : m_xpr(xpr), m_startRow(startRow), m_startCol(startCol), 132 eigen_assert(startRow >= 0 && BlockRows >= 1 && startRow + BlockRows <= xpr.rows() 133 && startCol >= 0 && BlockCols >= 1 && startCol + BlockCols <= xpr.cols()) [all...] |
CommaInitializer.h | 33 inline CommaInitializer(XprType& xpr, const Scalar& s) 34 : m_xpr(xpr), m_row(0), m_col(1), m_currentBlockRows(1) 40 inline CommaInitializer(XprType& xpr, const DenseBase<OtherDerived>& other) 41 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows())
|
CwiseUnaryOp.h | 67 inline CwiseUnaryOp(const XprType& xpr, const UnaryOp& func = UnaryOp()) 68 : m_xpr(xpr), m_functor(func) {}
|
Swap.h | 36 inline SwapWrapper(ExpressionType& xpr) : m_expression(xpr) {}
|
SelfCwiseBinaryOp.h | 55 inline SelfCwiseBinaryOp(Lhs& xpr, const BinaryOp& func = BinaryOp()) : m_matrix(xpr), m_functor(func) {}
|
/external/clang/test/CXX/basic/basic.def.odr/ |
p2-typeid.cpp | 28 void test(X<Poly> xp, X<Poly, Poly&> xpr, X<NonPoly> xnp, X<NonPoly, NonPoly&> xnpr) { 35 xpr.g(Poly()); // expected-note{{instantiation of member function}}
|
/external/eigen/Eigen/src/SparseCore/ |
SparseCwiseBinaryOp.h | 106 EIGEN_STRONG_INLINE sparse_cwise_binary_op_inner_iterator_selector(const CwiseBinaryXpr& xpr, Index outer) 107 : m_lhsIter(xpr.lhs(),outer), m_rhsIter(xpr.rhs(),outer), m_functor(xpr.functor()) 171 EIGEN_STRONG_INLINE sparse_cwise_binary_op_inner_iterator_selector(const CwiseBinaryXpr& xpr, Index outer) 172 : m_lhsIter(xpr.lhs(),outer), m_rhsIter(xpr.rhs(),outer), m_functor(xpr.functor()) 225 EIGEN_STRONG_INLINE sparse_cwise_binary_op_inner_iterator_selector(const CwiseBinaryXpr& xpr, Index outer) 226 : m_rhs(xpr.rhs()), m_lhsIter(xpr.lhs(),outer), m_functor(xpr.functor()), m_outer(outer [all...] |
SparseTranspose.h | 52 EIGEN_STRONG_INLINE ReverseInnerIterator(const TransposeImpl& xpr, typename TransposeImpl<MatrixType,Sparse>::Index outer) 53 : Base(xpr.derived().nestedExpression(), outer)
|
SparseBlock.h | 47 inline InnerIterator(const SparseInnerVectorSet& xpr, Index outer) 48 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 58 inline ReverseInnerIterator(const SparseInnerVectorSet& xpr, Index outer) 59 : MatrixType::ReverseInnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 120 inline InnerIterator(const SparseInnerVectorSet& xpr, Index outer) 121 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 131 inline ReverseInnerIterator(const SparseInnerVectorSet& xpr, Index outer [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
BlockOfDynamicSparseMatrix.h | 32 inline InnerIterator(const SparseInnerVectorSet& xpr, Index outer) 33 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
|
/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
Quaternion.h | 280 /** Set \c *this from the expression \a xpr: 281 * - if \a xpr is a 4x1 vector, then \a xpr is assumed to be a quaternion 282 * - if \a xpr is a 3x3 matrix, then \a xpr is assumed to be rotation matrix 283 * and \a xpr is converted to a quaternion 287 inline Quaternion<Scalar>& Quaternion<Scalar>::operator=(const MatrixBase<Derived>& xpr) 289 ei_quaternion_assign_impl<Derived>::run(*this, xpr.derived());
|
/external/eigen/Eigen/src/Geometry/ |
Quaternion.h | 514 /** Set \c *this from the expression \a xpr: 515 * - if \a xpr is a 4x1 vector, then \a xpr is assumed to be a quaternion 516 * - if \a xpr is a 3x3 matrix, then \a xpr is assumed to be rotation matrix 517 * and \a xpr is converted to a quaternion 522 inline Derived& QuaternionBase<Derived>::operator=(const MatrixBase<MatrixDerived>& xpr) 526 internal::quaternionbase_assign_impl<MatrixDerived>::run(*this, xpr.derived());
|