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

1 2 3 4 5

  /external/webrtc/talk/app/webrtc/java/jni/
androidvideocapturer_jni.h 79 struct Identity {
89 typename Identity<Args>::type... args);
  /art/runtime/base/
stl_util.h 174 // See std::identity<> for more background:
177 // e.g. "template <typename X> void bar(identity<X>::type foo);
180 // or "template <typename T> void foo(T* x, typename Identity<T*>::type y);
186 struct Identity {
  /external/eigen/Eigen/src/Geometry/
Rotation2D.h 114 static inline Rotation2D Identity() { return Rotation2D(0); }
Translation.h 145 static const Translation Identity() { return Translation(VectorType::Zero()); }
AngleAxis.h 134 static inline const AngleAxis Identity() { return AngleAxis(0, Vector3::UnitX()); }
Quaternion.h 102 /** \returns a quaternion representing an identity rotation
103 * \sa MatrixBase::Identity()
105 static inline Quaternion<Scalar> Identity() { return Quaternion<Scalar>(1, 0, 0, 0); }
107 /** \sa QuaternionBase::Identity(), MatrixBase::setIdentity()
Transform.h 496 * \brief Returns an identity transformation.
499 static const Transform Identity()
501 return Transform(MatrixType::Identity());
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsmtrx.c 83 // 3x3 Identity
100 cmsMAT3 Identity;
103 _cmsMAT3identity(&Identity);
107 if (!CloseEnough(a ->v[i].n[j], Identity.v[i].n[j])) return FALSE;
  /external/clang/test/CodeGen/
pass-object-size.c 241 int Identity(void *p, size_t i) { return i; }
244 int AsmObjectSize0(void *const p PS(0)) __asm__("Identity");
246 int AsmObjectSize1(void *const p PS(1)) __asm__("Identity");
248 int AsmObjectSize2(void *const p PS(2)) __asm__("Identity");
250 int AsmObjectSize3(void *const p PS(3)) __asm__("Identity");
256 // CHECK: call i32 @"\01Identity"(i8* %{{.*}}, i64 360)
258 // CHECK: call i32 @"\01Identity"(i8* %{{.*}}, i64 360)
260 // CHECK: call i32 @"\01Identity"(i8* %{{.*}}, i64 360)
262 // CHECK: call i32 @"\01Identity"(i8* %{{.*}}, i64 360)
265 // CHECK: call i32 @"\01Identity"(i8* %{{.*}}, i64 356
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info.cpp 4 template<typename T> struct Identity {
8 void f(Identity<int>::Type a) {}
9 void f(Identity<int> a) {}
  /external/clang/test/Modules/Inputs/
cxx-templates-b.h 34 template<typename T, typename> struct Identity { typedef T type; };
36 typename Identity<DefinedInBImpl, T>::type dependent;
38 typename Identity<DefinedInBImpl, T>::type::Inner inner;
  /external/fonttools/Lib/fontTools/misc/
transform.py 14 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
    [all...]
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 30 * equivalences are the {@linkplain #identity() identity equivalence} and {@linkplain #equals equals
133 * For example, {@code Equivalence.identity().onResultOf(Functions.toStringFunction())} is broken
317 public static Equivalence<Object> identity() { method in class:Equivalence
318 return Identity.INSTANCE;
339 static final class Identity extends Equivalence<Object>
342 static final Identity INSTANCE = new Identity();
  /external/webrtc/webrtc/base/
bind_unittest.cc 27 template <class T> T Identity(T value) { ++call_count; return value; }
131 EXPECT_EQ(100, Bind(&MethodBindTester::Identity<int>, &object, 100)());
134 EXPECT_EQ(string_value, Bind(&MethodBindTester::Identity<std::string>,
  /libcore/ojluni/src/main/java/java/security/
Identity.java 38 * <p>All Identity objects have a name and a public key. Names are
39 * immutable. Identities may also be scoped. That is, if an Identity is
41 * key of the Identity are unique within that scope.
43 * <p>An Identity also has a set of certificates (all certifying its own
47 * <p>An Identity can be subclassed, to include postal and email addresses,
61 public abstract class Identity implements Principal, Serializable {
67 * The name for this identity.
74 * The public key for this identity.
81 * Generic, descriptive information about the identity.
88 * The scope of the identity
    [all...]
  /development/ndk/sources/android/ndk_helper/
vecmath.h 926 static Mat4 Identity()
  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 24 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods,
665 // Identity:
667 /** \returns an expression of the identity matrix (not necessarily square).
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)
688 /** \returns an expression of the identity matrix (not necessarily square).
696 * \sa Identity(Index,Index), setIdentity(), isIdentity()
700 MatrixBase<Derived>::Identity()
706 /** \returns true if *this is approximately equal to the identity matri
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 184 static const typename MatrixType::IdentityReturnType Identity()
186 return MatrixType::Identity();
Quaternion.h 130 /** \returns a quaternion representing an identity rotation
131 * \sa MatrixBase::Identity()
133 static inline Quaternion Identity() { return Quaternion(1, 0, 0, 0); }
135 /** \sa Quaternion::Identity(), MatrixBase::setIdentity()
347 // set to identity
  /external/opencv3/modules/core/include/opencv2/core/
affine.hpp 86 //! Create identity transform
87 static Affine3 Identity();
230 cv::Affine3<T> cv::Affine3<T>::Identity()
  /external/libchrome/base/
bind_unittest.cc 177 int Identity(int n) {
457 Callback<int()> bind_primitive_cb = Bind(&Identity, n);
464 Callback<int()> bind_int_literal_cb = Bind(&Identity, 3);
543 Callback<int()> ref_copies_cb = Bind(&Identity, ref_n);
548 Callback<int()> const_ref_copies_cb = Bind(&Identity, const_ref_n);
662 Callback<int()> copy_cb = Bind(&Identity, n);
663 Callback<int()> const_ref_cb = Bind(&Identity, ConstRef(n));
  /external/libweave/third_party/chromium/base/
bind_unittest.cc 178 int Identity(int n) {
458 Callback<int()> bind_primitive_cb = Bind(&Identity, n);
465 Callback<int()> bind_int_literal_cb = Bind(&Identity, 3);
544 Callback<int()> ref_copies_cb = Bind(&Identity, ref_n);
549 Callback<int()> const_ref_copies_cb = Bind(&Identity, const_ref_n);
663 Callback<int()> copy_cb = Bind(&Identity, n);
664 Callback<int()> const_ref_cb = Bind(&Identity, ConstRef(n));
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 702 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, I->getType());
703 assert(Identity && "Associative operation without identity!");
704 Ops.emplace_back(Identity, APInt(Bitwidth, 1));
    [all...]
  /external/mesa3d/src/mesa/math/
m_matrix.c 50 #define MAT_FLAG_IDENTITY 0 /**< is an identity matrix flag.
51 * (Not actually used - the identity
131 * Identity matrix.
133 static GLfloat Identity[16] = {
596 memcpy( out, Identity, sizeof(Identity) );
623 * Compute inverse of an identity transformation matrix.
630 * Simply copies Identity into GLmatrix::inv.
634 memcpy( mat->inv, Identity, sizeof(Identity) );
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
clfs.h 109 GUID Identity;

Completed in 636 milliseconds

1 2 3 4 5