/external/eigen/doc/snippets/ |
H A D | MatrixBase_identity.cpp | 1 cout << Matrix<double, 3, 4>::Identity() << endl;
|
H A D | MatrixBase_identity_int_int.cpp | 1 cout << MatrixXd::Identity(4, 3) << endl;
|
H A D | MatrixBase_cast.cpp | 1 Matrix2d md = Matrix2d::Identity() * 0.45; 2 Matrix2f mf = Matrix2f::Identity();
|
H A D | MatrixBase_cwiseEqual.cpp | 5 cout << m.cwiseEqual(MatrixXi::Identity(2,2)) << endl; 6 int count = m.cwiseEqual(MatrixXi::Identity(2,2)).count();
|
H A D | MatrixBase_cwiseNotEqual.cpp | 5 cout << m.cwiseNotEqual(MatrixXi::Identity(2,2)) << endl; 6 int count = m.cwiseNotEqual(MatrixXi::Identity(2,2)).count();
|
H A D | MatrixBase_col.cpp | 1 Matrix3d m = Matrix3d::Identity();
|
H A D | MatrixBase_row.cpp | 1 Matrix3d m = Matrix3d::Identity();
|
H A D | MatrixBase_isDiagonal.cpp | 1 Matrix3d m = 10000 * Matrix3d::Identity();
|
H A D | MatrixBase_isIdentity.cpp | 1 Matrix3d m = Matrix3d::Identity();
|
H A D | MatrixBase_isUnitary.cpp | 1 Matrix3d m = Matrix3d::Identity();
|
H A D | TopicAliasing_cwise.cpp | 9 mat = mat - MatrixXf::Identity(2,2); 19 mat = (2 * mat - MatrixXf::Identity(2,2)).array().square();
|
H A D | EigenSolver_compute.cpp | 5 es.compute(A + MatrixXf::Identity(4,4), false); // re-use es to compute eigenvalues of A+I
|
H A D | HouseholderQR_householderQ.cpp | 1 MatrixXf A(MatrixXf::Random(5,3)), thinQ(MatrixXf::Identity(5,3)), Q;
|
H A D | MatrixBase_set.cpp | 6 Matrix3i m2 = Matrix3i::Identity();
|
H A D | SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp | 6 es.compute(A + Matrix4f::Identity(4,4)); // re-use es to compute eigenvalues of A+I
|
H A D | SelfAdjointEigenSolver_compute_MatrixType.cpp | 6 es.compute(A + MatrixXf::Identity(4,4)); // re-use es to compute eigenvalues of A+I
|
H A D | 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);
|
H A D | Tutorial_commainit_02.cpp | 6 MatrixXf::Identity(rows-3,cols-3);
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
H A D | 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 {
|
H A D | IdentityStub.java | 24 import java.security.Identity; 30 * Stub for abstract class Identity 33 public class IdentityStub extends Identity {
|
/external/chromium_org/remoting/webapp/ |
H A D | identity.js | 19 * @type {remoting.Identity|remoting.OAuth2} 29 remoting.Identity = function(consentCallback) { 34 /** @type {Array.<remoting.Identity.Callbacks>} */ 47 remoting.Identity.prototype.callWithToken = function(onOk, onError) { 48 this.pendingCallbacks_.push(new remoting.Identity.Callbacks(onOk, onError)); 62 remoting.Identity.prototype.removeCachedAuthToken = function(onDone) { 83 remoting.Identity.prototype.getEmail = function(onOk, onError) { 84 /** @type {remoting.Identity} */ 102 remoting.Identity.prototype.getCachedEmail = function() { 114 remoting.Identity [all...] |
/external/guava/guava/src/com/google/common/base/ |
H A D | Equivalences.java | 58 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 D | 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' [all...] |
/external/apache-harmony/security/src/test/api/java.injected/java/security/ |
H A D | 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 [all...] |
/external/eigen/doc/examples/ |
H A D | Tutorial_simple_example_fixed_size.cpp | 10 Matrix4f m4 = Matrix4f::Identity();
|