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

1 2 3 4 5 6 7 8 91011

  /external/eigen/doc/snippets/
MatrixBase_identity.cpp 1 cout << Matrix<double, 3, 4>::Identity() << endl;
MatrixBase_identity_int_int.cpp 1 cout << MatrixXd::Identity(4, 3) << endl;
MatrixBase_cast.cpp 1 Matrix2d md = Matrix2d::Identity() * 0.45;
2 Matrix2f mf = Matrix2f::Identity();
MatrixBase_cwiseEqual.cpp 4 cout << "Comparing m with identity matrix:" << endl;
5 cout << m.cwiseEqual(MatrixXi::Identity(2,2)) << endl;
6 int count = m.cwiseEqual(MatrixXi::Identity(2,2)).count();
MatrixBase_cwiseNotEqual.cpp 4 cout << "Comparing m with identity matrix:" << endl;
5 cout << m.cwiseNotEqual(MatrixXi::Identity(2,2)) << endl;
6 int count = m.cwiseNotEqual(MatrixXi::Identity(2,2)).count();
MatrixBase_col.cpp 1 Matrix3d m = Matrix3d::Identity();
MatrixBase_row.cpp 1 Matrix3d m = Matrix3d::Identity();
MatrixBase_isDiagonal.cpp 1 Matrix3d m = 10000 * Matrix3d::Identity();
MatrixBase_isIdentity.cpp 1 Matrix3d m = Matrix3d::Identity();
MatrixBase_isUnitary.cpp 1 Matrix3d m = Matrix3d::Identity();
TopicAliasing_cwise.cpp 9 mat = mat - MatrixXf::Identity(2,2);
19 mat = (2 * mat - MatrixXf::Identity(2,2)).array().square();
EigenSolver_compute.cpp 5 es.compute(A + MatrixXf::Identity(4,4), false); // re-use es to compute eigenvalues of A+I
HouseholderQR_householderQ.cpp 1 MatrixXf A(MatrixXf::Random(5,3)), thinQ(MatrixXf::Identity(5,3)), Q;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
IdentityDataItem.java 21 import android.provider.ContactsContract.CommonDataKinds.Identity;
24 * Represents an identity data item, wrapping the columns in
25 * {@link ContactsContract.CommonDataKinds.Identity}.
34 return getContentValues().getAsString(Identity.IDENTITY);
38 return getContentValues().getAsString(Identity.NAMESPACE);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
IdentityScope2Test.java 20 import java.security.Identity;
43 Hashtable<Identity, Identity> identities;
51 identities = new Hashtable<Identity, Identity>();
56 identities = new Hashtable<Identity, Identity>();
61 identities = new Hashtable<Identity, Identity>();
67 identities = new Hashtable<Identity, Identity>()
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
IdentityScopeStub.java 24 import java.security.Identity;
80 public Identity getIdentity(String name) {
90 public Identity getIdentity(PublicKey key) {
97 * @see java.security.IdentityScope#addIdentity(java.security.Identity)
99 public void addIdentity(Identity identity) throws KeyManagementException {
107 * @see java.security.IdentityScope#removeIdentity(java.security.Identity)
109 public void removeIdentity(Identity identity) throws KeyManagementException {
124 * Sets the system's identity scop
    [all...]
IdentityStub.java 24 import java.security.Identity;
30 * Stub for abstract class Identity
33 public class IdentityStub extends Identity {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
IdentityScopeStub.java 25 import java.security.Identity;
77 public Identity getIdentity(String name) {
86 public Identity getIdentity(PublicKey key) {
92 * @see java.security.IdentityScope#addIdentity(java.security.Identity)
94 public void addIdentity(Identity identity) throws KeyManagementException {
101 * @see java.security.IdentityScope#removeIdentity(java.security.Identity)
103 public void removeIdentity(Identity identity) throws KeyManagementException {
117 * Sets the system's identity scop
    [all...]
IdentityStub.java 25 import java.security.Identity;
31 * Stub for abstract class Identity
35 public class IdentityStub extends Identity {
81 public boolean identityEquals(Identity identity) {
82 return super.identityEquals(identity);
SystemScope.java 25 import java.security.Identity;
45 // Identities hash: key is the identity name
82 public synchronized Identity getIdentity(String name) {
86 return (Identity) names.get(name);
92 public synchronized Identity getIdentity(PublicKey key) {
96 return (Identity) keys.get(key);
100 * @see java.security.IdentityScope#addIdentity(java.security.Identity)
102 public synchronized void addIdentity(Identity identity) throws KeyManagementException {
103 if (identity == null)
    [all...]
  /libcore/ojluni/src/main/java/java/security/
IdentityScope.java 34 * <p>This class represents a scope for identities. It is an Identity
38 * <p>An IdentityScope can contain Identity objects of all kinds, including
39 * Signers. All types of Identity objects can be retrieved, added, and
41 * expected, that different types of identity scopes will
48 * Suppose it is an Identity, that is, it has a public key, and a set of
50 * "Acme Software". No other named Identity in the scope has the same
53 * @see Identity
67 class IdentityScope extends Identity {
108 * Constructs a new identity scope with the specified name.
117 * Constructs a new identity scope with the specified name and scope
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForIdentity.java 22 import android.provider.ContactsContract.CommonDataKinds.Identity;
26 * Handler for Identity data rows.
31 super(context, dbHelper, aggregator, Identity.CONTENT_ITEM_TYPE);
39 // Identity affects aggregation.
40 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE)) {
53 // Identity affects aggregation.
55 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE))
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
IdentityScope2Test.java 20 import java.security.Identity;
74 public Identity getIdentity(String name) {
77 Identity current = (Identity) en.nextElement();
84 public Identity getIdentity(PublicKey pk) {
87 Identity current = (Identity) en.nextElement();
98 public void addIdentity(Identity id) throws KeyManagementException {
101 "This Identity is already contained in the scope");
104 "This Identity's public key already exists in the scope")
    [all...]
  /external/apache-harmony/security/src/test/api/java.injected/java/security/
IdentityTest.java 32 * Tests for class Identity
51 Identity i1 = new IdentityStub("testEquals");
65 Identity i2 = new IdentityStub("testEquals", IdentityScope.getSystemScope());
67 Identity i3 = new IdentityStub("testEquals3");
73 * verify Identity.toString()
80 * verify Identity() creates instance
87 * verify Identity(String) creates instance with given name
90 Identity i = new IdentityStub("iii");
99 * verify Identity(String, IdentityScope) creates instance with given name and in give scope
103 Identity i = new IdentityStub("iii2", s)
    [all...]
  /external/eigen/doc/examples/
Tutorial_simple_example_fixed_size.cpp 10 Matrix4f m4 = Matrix4f::Identity();

Completed in 235 milliseconds

1 2 3 4 5 6 7 8 91011