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

1234567

/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 DHouseholderQR_householderQ.cpp1 MatrixXf A(MatrixXf::Random(5,3)), thinQ(MatrixXf::Identity(5,3)), Q;
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/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DIdentityScopeStub.java24 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 DIdentityStub.java24 import java.security.Identity;
30 * Stub for abstract class Identity
33 public class IdentityStub extends Identity {
/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>} */
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 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;
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 DIdentityTest.java32 * 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 DTutorial_simple_example_fixed_size.cpp10 Matrix4f m4 = Matrix4f::Identity();

Completed in 325 milliseconds

1234567