HomeSort by relevance Sort by last modified time
    Searched refs:Identity (Results 26 - 50 of 259) sorted by null

12 3 4 5 6 7 8 91011

  /external/eigen/doc/snippets/
MatrixBase_set.cpp 6 Matrix3i m2 = Matrix3i::Identity();
SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp 6 es.compute(A + Matrix4f::Identity(4,4)); // re-use es to compute eigenvalues of A+I
SelfAdjointEigenSolver_compute_MatrixType.cpp 6 es.compute(A + MatrixXf::Identity(4,4)); // re-use es to compute eigenvalues of A+I
Tutorial_AdvancedInitialization_ThreeWays.cpp 4 mat1.topRightCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
5 mat1.bottomLeftCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
17 mat3 << MatrixXd::Zero(size/2, size/2), MatrixXd::Identity(size/2, size/2),
18 MatrixXd::Identity(size/2, size/2), MatrixXd::Zero(size/2, size/2);
Tutorial_commainit_02.cpp 6 MatrixXf::Identity(rows-3,cols-3);
RealQZ_compute.cpp 15 << "\n|QQ* - I|: " << (qz.matrixQ()*qz.matrixQ().adjoint() - MatrixXf::Identity(4,4)).norm()
16 << ", |ZZ* - I|: " << (qz.matrixZ()*qz.matrixZ().adjoint() - MatrixXf::Identity(4,4)).norm()
HouseholderSequence_HouseholderSequence.cpp 15 Matrix3d H0 = Matrix3d::Identity() - h(0) * v0 * v0.adjoint();
18 Matrix3d H1 = Matrix3d::Identity() - h(1) * v1 * v1.adjoint();
21 Matrix3d H2 = Matrix3d::Identity() - h(2) * v2 * v2.adjoint();
class_FullPivLU.cpp 9 Matrix5x5 l = Matrix5x5::Identity();
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
SystemScopeTest.java 24 import java.security.Identity;
55 ss.removeIdentity((Identity) e.nextElement());
82 * verify getIdentity(String) returns requested identity or null if not found
88 java.security.Identity aaa = new IdentityScopeStub("aaa");
96 * verify getIdentity(PublicKey) returns requested identity or null if not found
102 java.security.Identity aaa = new IdentityScopeStub("aaa");
110 * verify that only one identity with given name or public key can be added
116 java.security.Identity aaa = new IdentityScopeStub("aaa");
120 java.security.Identity bbb = new IdentityScopeStub("aaa");
127 java.security.Identity ccc = new IdentityScopeStub("ccc")
    [all...]
  /libcore/luni/src/test/java/tests/java/security/
IdentityTest.java 25 import java.security.Identity;
41 * Tests for class Identity
72 Identity i2 = new IdentityStub("testEquals", IdentityScope.getSystemScope());
74 Identity i3 = new IdentityStub("testEquals3");
80 * verify Identity.toString()
87 * verify Identity() creates instance
94 * verify Identity(String) creates instance with given name
97 Identity i = new IdentityStub("iii");
106 * verify Identity(String, IdentityScope) creates instance with given name and in give scope
110 Identity i = new IdentityStub("iii2", s)
    [all...]
  /libcore/ojluni/src/main/java/java/security/
Identity.java 38 * <p>All Identity objects have a name and a public key. Names are
39 * immutable. Identities may also be scoped. That is, if an Identity is
41 * key of the Identity are unique within that scope.
43 * <p>An Identity also has a set of certificates (all certifying its own
47 * <p>An Identity can be subclassed, to include postal and email addresses,
61 public abstract class Identity implements Principal, Serializable {
67 * The name for this identity.
74 * The public key for this identity.
81 * Generic, descriptive information about the identity.
88 * The scope of the identity
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info.cpp 4 template<typename T> struct Identity {
8 void f(Identity<int>::Type a) {}
9 void f(Identity<int> a) {}
  /external/eigen/doc/examples/
class_Block.cpp 22 Matrix4d m = Matrix4d::Identity();
class_FixedBlock.cpp 22 Matrix3d m = Matrix3d::Identity();
function_taking_ref.cpp 18 cout << "inv_cond(m+I): " << inv_cond(m+Matrix4f::Identity()) << endl;
  /external/webrtc/talk/app/webrtc/java/jni/
androidvideocapturer_jni.h 79 struct Identity {
89 typename Identity<Args>::type... args);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixLogarithm.h 140 RealScalar normTminusI = (T - MatrixType::Identity(T.rows(), T.rows())).cwiseAbs().colwise().sum().maxCoeff();
241 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows());
244 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI)
257 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows());
260 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI)
275 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows());
278 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI)
293 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows());
296 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI)
313 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows())
    [all...]
MatrixFunctionAtomic.h 76 m_Ashifted = A - m_avgEival * MatrixType::Identity(m_Arows, m_Arows);
78 MatrixType F = m_f(m_avgEival, 0) * MatrixType::Identity(m_Arows, m_Arows);
97 const MatrixType N = MatrixType::Identity(m_Arows, m_Arows) - m_Ashifted;
  /external/clang/test/Modules/Inputs/
cxx-templates-b.h 34 template<typename T, typename> struct Identity { typedef T type; };
36 typename Identity<DefinedInBImpl, T>::type dependent;
38 typename Identity<DefinedInBImpl, T>::type::Inner inner;
  /external/eigen/Eigen/src/Eigen2Support/
QR.h 37 MatrixType ret = MatrixType::Identity(this->rows(), this->cols());
  /external/eigen/demos/opengl/
gpuhelper.cpp 34 pushMatrix(Matrix4f::Identity(),GL_PROJECTION);
47 pushMatrix(Matrix4f::Identity(),GL_MODELVIEW);
63 Vector3f ax = Matrix3f::Identity().col(2).cross(vec);
84 Vector3f ax = Matrix3f::Identity().col(2).cross(vec);
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 30 * equivalences are the {@linkplain #identity() identity equivalence} and {@linkplain #equals equals
133 * For example, {@code Equivalence.identity().onResultOf(Functions.toStringFunction())} is broken
317 public static Equivalence<Object> identity() { method in class:Equivalence
318 return Identity.INSTANCE;
339 static final class Identity extends Equivalence<Object>
342 static final Identity INSTANCE = new Identity();
  /external/eigen/test/
prec_inverse_4x4.cpp 22 double error = double( (m*inv-MatrixType::Identity()).norm() / NumTraits<Scalar>::epsilon() );
44 double error = double( (m*inv-MatrixType::Identity()).norm() * absdet / NumTraits<Scalar>::epsilon() );
  /external/eigen/test/eigen2/
eigen2_prec_inverse_4x4.cpp 42 double error = double( (m*inv-MatrixType::Identity()).norm() / epsilon<Scalar>() );
62 double error = double( (m*inv-MatrixType::Identity()).norm() * absdet / epsilon<Scalar>() );
eigen2_svd.cpp 60 VERIFY_IS_APPROX(unitary * unitary.adjoint(), MatrixType::Identity(unitary.rows(),unitary.rows()));
66 VERIFY_IS_APPROX(unitary * unitary.adjoint(), MatrixType::Identity(unitary.rows(),unitary.rows()));

Completed in 1757 milliseconds

12 3 4 5 6 7 8 91011