Searched refs:Identity (Results 1 - 25 of 150) sorted by relevance

123456

/external/eigen/doc/snippets/
H A DMatrixBase_identity.cpp1 cout << Matrix<double, 3, 4>::Identity() << endl;
H A DMatrixBase_identity_int_int.cpp1 cout << MatrixXd::Identity(4, 3) << endl;
H A DMatrixBase_cast.cpp1 Matrix2d md = Matrix2d::Identity() * 0.45;
2 Matrix2f mf = Matrix2f::Identity();
H A DMatrixBase_cwiseEqual.cpp5 cout << m.cwiseEqual(MatrixXi::Identity(2,2)) << endl;
6 int count = m.cwiseEqual(MatrixXi::Identity(2,2)).count();
H A DMatrixBase_cwiseNotEqual.cpp5 cout << m.cwiseNotEqual(MatrixXi::Identity(2,2)) << endl;
6 int count = m.cwiseNotEqual(MatrixXi::Identity(2,2)).count();
H A DMatrixBase_col.cpp1 Matrix3d m = Matrix3d::Identity();
H A DMatrixBase_row.cpp1 Matrix3d m = Matrix3d::Identity();
H A DMatrixBase_isDiagonal.cpp1 Matrix3d m = 10000 * Matrix3d::Identity();
H A DMatrixBase_isIdentity.cpp1 Matrix3d m = Matrix3d::Identity();
H A DMatrixBase_isUnitary.cpp1 Matrix3d m = Matrix3d::Identity();
H A DTopicAliasing_cwise.cpp9 mat = mat - MatrixXf::Identity(2,2);
19 mat = (2 * mat - MatrixXf::Identity(2,2)).array().square();
H A DEigenSolver_compute.cpp5 es.compute(A + MatrixXf::Identity(4,4), false); // re-use es to compute eigenvalues of A+I
H A DMatrixBase_set.cpp6 Matrix3i m2 = Matrix3i::Identity();
H A DSelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp6 es.compute(A + Matrix4f::Identity(4,4)); // re-use es to compute eigenvalues of A+I
H A DSelfAdjointEigenSolver_compute_MatrixType.cpp6 es.compute(A + MatrixXf::Identity(4,4)); // re-use es to compute eigenvalues of A+I
H A DTutorial_AdvancedInitialization_ThreeWays.cpp4 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);
H A DTutorial_commainit_02.cpp6 MatrixXf::Identity(rows-3,cols-3);
/external/chromium_org/remoting/webapp/
H A Didentity.js19 * @type {remoting.Identity|remoting.OAuth2}
29 remoting.Identity = function(consentCallback) {
34 /** @type {Array.<remoting.Identity.Callbacks>} */
51 remoting.Identity.prototype.callWithToken = function(onOk, onError) {
52 this.pendingCallbacks_.push(new remoting.Identity.Callbacks(onOk, onError));
69 remoting.Identity.prototype.getEmail = function(onOk, onError) {
70 /** @type {remoting.Identity} */
88 remoting.Identity.prototype.getCachedEmail = function() {
100 remoting.Identity.prototype.onAuthComplete_ = function(interactive, token) {
104 var callback = /** @type {remoting.Identity
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DIdentityScopeStub.java24 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 {
H A DIdentityStub.java24 import java.security.Identity;
30 * Stub for abstract class Identity
34 public class IdentityStub extends Identity {
/external/guava/guava/src/com/google/common/base/
H A DEquivalences.java58 return Identity.INSTANCE;
79 private static final class Identity extends Equivalence<Object> class in class:Equivalences
82 static final Identity INSTANCE = new Identity();
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DIdentityScope2Test.java20 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'
[all...]
/external/apache-harmony/security/src/test/api/java.injected/java/security/
H A DIdentityTest.java33 * 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
[all...]
/external/eigen/doc/examples/
H A DTutorial_simple_example_fixed_size.cpp10 Matrix4f m4 = Matrix4f::Identity();
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
H A DSystemScopeTest.java24 import java.security.Identity;
55 while (e.hasMoreElements()) ss.removeIdentity((Identity)e.nextElement());
87 java.security.Identity aaa = new IdentityScopeStub("aaa");
101 java.security.Identity aaa = new IdentityScopeStub("aaa");
115 java.security.Identity aaa = new IdentityScopeStub("aaa");
119 java.security.Identity bbb = new IdentityScopeStub("aaa");
125 java.security.Identity ccc = new IdentityScopeStub("ccc");
142 java.security.Identity aaa = new IdentityScopeStub("aaa");
151 java.security.Identity aaa = new IdentityScopeStub("aaa");
152 java.security.Identity bb
[all...]

Completed in 1829 milliseconds

123456