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

1 2 3 4 5 6 7

  /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();
  /packages/apps/Contacts/src/com/android/contacts/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;
76 public Identity getIdentity(String name) {
85 public Identity getIdentity(PublicKey key) {
91 * @see java.security.IdentityScope#addIdentity(java.security.Identity)
93 public void addIdentity(Identity identity) throws KeyManagementException {
100 * @see java.security.IdentityScope#removeIdentity(java.security.Identity)
102 public void removeIdentity(Identity identity) throws KeyManagementException {
116 * Sets the system's identity scop
    [all...]
IdentityStub.java 24 import java.security.Identity;
30 * Stub for abstract class Identity
34 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);
  /libcore/luni/src/main/java/java/security/
IdentityScope.java 24 * {@code IdentityScope} represents a scope for {@link Identity} objects.
31 public abstract class IdentityScope extends Identity {
64 * if an identity with the same key already exists.
106 * Returns the number of {@code Identity} objects in this scope.
108 * @return the number of {@code Identity} objects in this scope.
113 * Returns the {@code Identity} with the specified name or {@code null} if
114 * no {@code Identity} with the specified name is present in this scope.
117 * the name of the {@code Identity} to be returned.
118 * @return the {@code Identity} with the specified name or {@code null} if
121 public abstract Identity getIdentity(String name)
    [all...]
  /external/guava/guava/src/com/google/common/base/
Equivalences.java 57 public static Equivalence<Object> identity() { method in class:Equivalences
58 return Identity.INSTANCE;
79 private static final class Identity extends Equivalence<Object>
82 static final Identity INSTANCE = new Identity();
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForIdentity.java 22 import android.provider.ContactsContract.CommonDataKinds.Identity;
27 * Handler for Identity data rows.
32 super(context, dbHelper, aggregator, Identity.CONTENT_ITEM_TYPE);
40 // Identity affects aggregation.
41 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE)) {
54 // Identity affects aggregation.
56 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/
SystemScope.java 25 import java.security.Identity;
43 // Identities hash: key is the identity name
80 public synchronized Identity getIdentity(String name) {
84 return (Identity) names.get(name);
90 public synchronized Identity getIdentity(PublicKey key) {
94 return (Identity) keys.get(key);
98 * @see java.security.IdentityScope#addIdentity(java.security.Identity)
100 public synchronized void addIdentity(Identity identity) throws KeyManagementException {
101 if (identity == null)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
IdentityScope2Test.java 20 import java.security.Identity;
73 public Identity getIdentity(String name) {
76 Identity current = (Identity) en.nextElement();
83 public Identity getIdentity(PublicKey pk) {
86 Identity current = (Identity) en.nextElement();
97 public void addIdentity(Identity id) throws KeyManagementException {
100 "This Identity is already contained in the scope");
103 "This Identity's public key already exists in the scope")
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info.cpp 2 template<typename T> struct Identity {
6 void f(Identity<int>::Type a) {}
7 void f(Identity<int> a) {}
  /external/apache-harmony/security/src/test/api/java.injected/java/security/
IdentityTest.java 33 * Tests for class Identity
52 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 426 milliseconds

1 2 3 4 5 6 7