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

12

/external/webrtc/talk/app/webrtc/java/jni/
H A Dandroidvideocapturer_jni.h79 struct Identity { struct in class:webrtc_jni::AndroidVideoCapturerJni
89 typename Identity<Args>::type... args);
/external/clang/test/CodeGen/
H A Dpass-object-size.c241 int Identity(void *p, size_t i) { return i; } function
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"(i
[all...]
/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/third_party/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/webrtc/webrtc/base/
H A Dbind_unittest.cc27 template <class T> T Identity(T value) { ++call_count; return value; } function in struct:rtc::__anon20660::MethodBindTester
131 EXPECT_EQ(100, Bind(&MethodBindTester::Identity<int>, &object, 100)());
134 EXPECT_EQ(string_value, Bind(&MethodBindTester::Identity<std::string>,
/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/opencv3/modules/core/include/opencv2/core/
H A Daffine.hpp87 static Affine3 Identity();
230 cv::Affine3<T> cv::Affine3<T>::Identity() function in class:cv::Affine3
/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/libchrome/base/
H A Dbind_unittest.cc177 int Identity(int n) { function in namespace:base::__anon8964
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/
H A Dbind_unittest.cc178 int Identity(int n) { function in namespace:base::__anon11267
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/
H A DReassociate.cpp702 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, I->getType()); local
703 assert(Identity && "Associative operation without identity!");
704 Ops.emplace_back(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/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3329 Value *Identity; local
3335 VectorStart = Identity = ReductionStartValue;
3337 VectorStart = Identity =
3345 Identity = Iden;
3346 // This vector is the Identity vector where the first element is the
3350 Identity = ConstantVector::getSplat(VF, Iden);
3352 // This vector is the Identity vector where the first element is the
3355 Builder.CreateInsertElement(Identity, ReductionStartValue, Zero);
3370 Value *StartVal = (part == 0) ? VectorStart : Identity;
/external/robolectric/v3/libs/
H A Dsqlite4java-0.282.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/almworks/ com/almworks/sqlite4java/ javolution/ javolution/util/ javolution/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 760 milliseconds

12