Searched defs:Identity (Results 1 - 22 of 22) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Ddebug-info.cpp4 template<typename T> struct Identity { struct
8 void f(Identity<int>::Type a) {}
9 void f(Identity<int> a) {}
/external/clang/test/Modules/Inputs/
H A Dcxx-templates-b.h34 template<typename T, typename> struct Identity { typedef T type; }; struct
36 typename Identity<DefinedInBImpl, T>::type dependent;
38 typename Identity<DefinedInBImpl, T>::type::Inner inner;
/external/eigen/Eigen/src/Geometry/
H A DAngleAxis.h134 static inline const AngleAxis Identity() { return AngleAxis(0, Vector3::UnitX()); } function in class:Eigen::AngleAxis
H A DRotation2D.h114 static inline Rotation2D Identity() { return Rotation2D(0); } function in class:Eigen::Rotation2D
H A DTranslation.h145 static const Translation Identity() { return Translation(VectorType::Zero()); } function in class:Eigen::Translation
H A DQuaternion.h103 * \sa MatrixBase::Identity()
105 static inline Quaternion<Scalar> Identity() { return Quaternion<Scalar>(1, 0, 0, 0); } function in class:Eigen::QuaternionBase
107 /** \sa QuaternionBase::Identity(), MatrixBase::setIdentity()
H A DTransform.h499 static const Transform Identity() function in class:Eigen::Transform
501 return Transform(MatrixType::Identity());
/external/fonttools/Lib/fontTools/misc/
H A Dtransform.py14 Identity -- Transform instance set to the identity transformation
42 >>> t = Identity.scale(0.5).translate(100, 200).skew(0.1, 0.2)
51 __all__ = ["Transform", "Identity", "Offset", "Scale"]
228 >>> t = Identity.translate(2, 3).scale(4, 5)
246 >>> t = Identity.scale(2, 3).translate(4, 5)
255 >>> len(Identity)
263 >>> list(Identity)
265 >>> tuple(Identity)
275 >>> t1 = Identity.scale(2, 3).translate(4, 6)
276 >>> t2 = Identity
328 Identity = Transform() variable
[all...]
/external/fonttools/Tools/fontTools/misc/
H A Dtransform.py14 Identity -- Transform instance set to the identity transformation
42 >>> t = Identity.scale(0.5).translate(100, 200).skew(0.1, 0.2)
51 __all__ = ["Transform", "Identity", "Offset", "Scale"]
228 >>> t = Identity.translate(2, 3).scale(4, 5)
246 >>> t = Identity.scale(2, 3).translate(4, 5)
255 >>> len(Identity)
263 >>> list(Identity)
265 >>> tuple(Identity)
275 >>> t1 = Identity.scale(2, 3).translate(4, 6)
276 >>> t2 = Identity
328 Identity = Transform() variable
[all...]
/external/guava/guava/src/com/google/common/base/
H A DEquivalence.java318 return Identity.INSTANCE;
339 static final class Identity extends Equivalence<Object> class in class:Equivalence
342 static final Identity INSTANCE = new Identity();
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsmtrx.c83 // 3x3 Identity
100 cmsMAT3 Identity; local
103 _cmsMAT3identity(&Identity);
107 if (!CloseEnough(a ->v[i].n[j], Identity.v[i].n[j])) return FALSE;
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h24 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods,
665 // Identity:
673 * it is redundant to pass \a rows and \a cols as arguments, so Identity() should be used
679 * \sa Identity(), setIdentity(), isIdentity()
683 MatrixBase<Derived>::Identity(Index nbRows, Index nbCols) function in class:Eigen::MatrixBase
696 * \sa Identity(Index,Index), setIdentity(), isIdentity()
700 MatrixBase<Derived>::Identity() function in class:Eigen::MatrixBase
713 * \sa class CwiseNullaryOp, Identity(), Identity(Index,Index), setIdentity()
745 return m = Derived::Identity(
[all...]
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DQuaternion.h131 * \sa MatrixBase::Identity()
133 static inline Quaternion Identity() { return Quaternion(1, 0, 0, 0); } function in class:Eigen::Quaternion
135 /** \sa Quaternion::Identity(), MatrixBase::setIdentity()
H A DTransform.h184 static const typename MatrixType::IdentityReturnType Identity() function in class:Eigen::Transform
186 return MatrixType::Identity();
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp735 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, I->getType()); local
736 assert(Identity && "Associative operation without identity!");
737 Ops.push_back(std::make_pair(Identity, APInt(Bitwidth, 1)));
/external/mesa3d/src/mesa/math/
H A Dm_matrix.c131 * Identity matrix.
133 static GLfloat Identity[16] = { variable
596 memcpy( out, Identity, sizeof(Identity) );
630 * Simply copies Identity into GLmatrix::inv.
634 memcpy( mat->inv, Identity, sizeof(Identity) );
656 memcpy( out, Identity, 16 * sizeof(GLfloat) );
689 memcpy( out, Identity, 16 * sizeof(GLfloat) );
711 memcpy( out, Identity, 1
[all...]
/external/openssh/
H A Dssh-agent.c119 } Identity; typedef in typeref:struct:identity
185 free_identity(Identity *id)
194 static Identity *
197 Identity *id;
209 confirm_key(Identity *id)
240 Identity *id;
293 Identity *id;
464 Identity *id = lookup_identity(key, version);
492 Identity *id;
513 Identity *i
[all...]
H A Dsshconnect2.c250 typedef struct identity Identity; typedef in typeref:struct:identity
320 static int sign_and_send_pubkey(Authctxt *, Identity *);
560 Identity *id = NULL;
1008 sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
1099 send_pubkey_test(Authctxt *authctxt, Identity *id)
1304 Identity *id;
1321 Identity *id;
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2792 Value *Identity; local
2798 VectorStart = Identity = RdxDesc.StartValue;
2800 VectorStart = Identity = Builder.CreateVectorSplat(VF,
2810 Identity = Iden;
2811 // This vector is the Identity vector where the first element is the
2815 Identity = ConstantVector::getSplat(VF, Iden);
2817 // This vector is the Identity vector where the first element is the
2819 VectorStart = Builder.CreateInsertElement(Identity,
2835 Value *StartVal = (part == 0) ? VectorStart : Identity;
2855 Value *StartVal = (part == 0) ? VectorStart : Identity;
[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 7124 milliseconds