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

12 3 4 5 6 7

  /external/eigen/doc/snippets/
EigenSolver_compute.cpp 5 es.compute(A + MatrixXf::Identity(4,4), false); // re-use es to compute eigenvalues of A+I
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);
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 while (e.hasMoreElements()) ss.removeIdentity((Identity)e.nextElement());
81 * verify getIdentity(String) returns requested identity or null if not found
87 java.security.Identity aaa = new IdentityScopeStub("aaa");
95 * verify getIdentity(PublicKey) returns requested identity or null if not found
101 java.security.Identity aaa = new IdentityScopeStub("aaa");
109 * verify that only one identity with given name or public key can be added
115 java.security.Identity aaa = new IdentityScopeStub("aaa");
119 java.security.Identity bbb = new IdentityScopeStub("aaa");
125 java.security.Identity ccc = new IdentityScopeStub("ccc")
    [all...]
  /libcore/luni/src/main/java/java/security/
Identity.java 26 * {@code Identity} represents an identity like a person or a company.
33 public abstract class Identity implements Principal, Serializable {
47 * Constructs a new instance of {@code Identity}.
49 protected Identity() {
53 * Creates a new instance of {@code Identity} with the specified name.
56 * the name of this {@code Identity}.
58 public Identity(String name) {
63 * Creates a new instance of {@code Identity} with the specified name and
64 * the scope of this {@code Identity}
    [all...]
Signer.java 21 * {@link Signer} represents an identity (individual or corporation) that owns a
29 public abstract class Signer extends Identity {
  /external/smack/src/org/jivesoftware/smackx/packet/
DiscoverInfo.java 47 private final List<Identity> identities = new CopyOnWriteArrayList<Identity>();
74 for (Identity i : d.identities) {
119 * Adds a new identity of the requested entity to the discovered information.
121 * @param identity the discovered entity's identity
123 public void addIdentity(Identity identity) {
125 identities.add(identity);
134 public void addIdentities(Collection<Identity> identitiesToAdd)
    [all...]
  /libcore/luni/src/test/java/tests/java/security/
IdentityTest.java 25 import java.security.Identity;
40 * Tests for class Identity
71 Identity i2 = new IdentityStub("testEquals", IdentityScope.getSystemScope());
73 Identity i3 = new IdentityStub("testEquals3");
79 * verify Identity.toString()
86 * verify Identity() creates instance
93 * verify Identity(String) creates instance with given name
96 Identity i = new IdentityStub("iii");
105 * verify Identity(String, IdentityScope) creates instance with given name and in give scope
109 Identity i = new IdentityStub("iii2", s)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
NodeInformationProvider.java 62 * example, the x-command protocol must provide an identity of
67 List<DiscoverInfo.Identity> getNodeIdentities();
ServiceDiscoveryManager.java 33 import org.jivesoftware.smackx.packet.DiscoverInfo.Identity;
57 private static List<DiscoverInfo.Identity> identities = new LinkedList<DiscoverInfo.Identity>();
77 identities.add(new Identity(DEFAULT_IDENTITY_CATEGORY, DEFAULT_IDENTITY_NAME, DEFAULT_IDENTITY_TYPE));
104 * Returns the name of the client that will be returned when asked for the client identity
105 * in a disco request. The name could be any value you need to identity this client.
107 * @return the name of the client that will be returned when asked for the client identity
111 DiscoverInfo.Identity identity = identities.get(0); local
112 if (identity != null)
127 DiscoverInfo.Identity identity = identities.remove(0); local
141 DiscoverInfo.Identity identity = identities.get(0); local
158 DiscoverInfo.Identity identity = identities.get(0); local
    [all...]
GatewayManager.java 16 import org.jivesoftware.smackx.packet.DiscoverInfo.Identity;
74 * Discovers {@link DiscoveryInfo} and {@link DiscoveryInfo.Identity} of a gateway
81 Iterator<Identity> i = info.getIdentities();
84 Identity identity = i.next(); local
85 String category = identity.getCategory();
90 new Gateway(connection,itemJID,info,identity));
94 new Gateway(connection,itemJID,info,identity));
Gateway.java 23 import org.jivesoftware.smackx.packet.DiscoverInfo.Identity;
38 private Identity identity; field in class:Gateway
48 Gateway(Connection connection, String entityJID, DiscoverInfo info, Identity identity){
51 this.identity = identity;
56 Iterator<Identity> iterator = info.getIdentities();
58 Identity temp = iterator.next();
60 this.identity = temp
    [all...]
  /external/eigen/doc/examples/
class_Block.cpp 22 Matrix4d m = Matrix4d::Identity();
class_FixedBlock.cpp 22 Matrix3d m = Matrix3d::Identity();
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixLogarithm.h 151 RealScalar normTminusI = (T - MatrixType::Identity(T.rows(), T.rows())).cwiseAbs().colwise().sum().maxCoeff();
250 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows());
253 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI)
266 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows());
269 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI)
284 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows());
287 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI)
302 MatrixType TminusI = T - MatrixType::Identity(T.rows(), T.rows());
305 result += weights[k] * (MatrixType::Identity(T.rows(), T.rows()) + nodes[k] * TminusI)
322 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/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/eigen/test/
prec_inverse_4x4.cpp 23 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/smack/src/org/jivesoftware/smackx/provider/
DiscoverInfoProvider.java 40 DiscoverInfo.Identity identity = null; local
50 if (parser.getName().equals("identity")) {
67 if (parser.getName().equals("identity")) {
68 // Create a new identity and add it to the discovered info.
69 identity = new DiscoverInfo.Identity(category, name, type);
71 identity.setLanguage(lang);
72 discoverInfo.addIdentity(identity);

Completed in 365 milliseconds

12 3 4 5 6 7