/external/libcxx/test/libcxx/experimental/filesystem/class.path/path.req/ |
H A D | is_pathable.pass.cpp | 38 struct Identity { typedef Tp type; }; struct 41 Identity<Source> CheckSourceType(Source const&);
|
/external/webrtc/talk/app/webrtc/java/jni/ |
H A D | androidvideocapturer_jni.h | 79 struct Identity { struct in class:webrtc_jni::AndroidVideoCapturerJni 89 typename Identity<Args>::type... args);
|
/external/libcxx/test/libcxx/type_traits/ |
H A D | lazy_metafunctions.pass.cpp | 21 struct Identity { struct 28 typedef Identity<TrueT> LazyTrueT; 29 typedef Identity<FalseT> LazyFalseT;
|
/external/clang/test/CodeGen/ |
H A D | pass-object-size.c | 241 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 D | debug-info.cpp | 23 template<typename T> struct Identity { struct 27 void f(Identity<int>::Type a) {} 28 void f(Identity<int> a) {}
|
/external/clang/test/Modules/Inputs/ |
H A D | cxx-templates-b.h | 34 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 D | AngleAxis.h | 145 EIGEN_DEVICE_FUNC static inline const AngleAxis Identity() { return AngleAxis(Scalar(0), Vector3::UnitX()); } function in class:Eigen::AngleAxis
|
H A D | Rotation2D.h | 152 EIGEN_DEVICE_FUNC static inline Rotation2D Identity() { return Rotation2D(0); } function in class:Eigen::Rotation2D
|
H A D | Translation.h | 147 static const Translation Identity() { return Translation(VectorType::Zero()); } function in class:Eigen::Translation
|
H A D | Quaternion.h | 104 * \sa MatrixBase::Identity() 106 EIGEN_DEVICE_FUNC static inline Quaternion<Scalar> Identity() { return Quaternion<Scalar>(Scalar(1), Scalar(0), Scalar(0), Scalar(0)); } function in class:Eigen::QuaternionBase 108 /** \sa QuaternionBase::Identity(), MatrixBase::setIdentity()
|
H A D | Transform.h | 539 EIGEN_DEVICE_FUNC static const Transform Identity() function in class:Eigen::Transform 541 return Transform(MatrixType::Identity());
|
/external/fonttools/Lib/fontTools/misc/ |
H A D | 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) 276 >>> t2 = Identity 328 Identity = Transform() variable [all...] |
/external/fonttools/Tools/fontTools/misc/ |
H A D | 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) 276 >>> t2 = Identity 328 Identity = Transform() variable [all...] |
/external/guava/guava/src/com/google/common/base/ |
H A D | Equivalence.java | 318 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 D | cmsmtrx.c | 83 // 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 D | bind_unittest.cc | 27 template <class T> T Identity(T value) { ++call_count; return value; } function in struct:rtc::__anon25971::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 D | CwiseNullaryOp.h | 35 * 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 rows, Index cols) 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() 747 return m = Derived::Identity( [all...] |
/external/eigen/unsupported/Eigen/CXX11/src/util/ |
H A D | CXX11Meta.h | 267 constexpr static inline int run() { return Reducer::Identity; } 293 static constexpr int Identity = 0; member in struct:Eigen::internal::sum_op 297 static constexpr int Identity = 1; member in struct:Eigen::internal::product_op
|
/external/libcxx/test/support/ |
H A D | uses_alloc_types.hpp | 131 struct Identity { typedef T type; }; struct in namespace:UsesAllocatorType::detail 134 using IdentityT = typename Identity<T>::type; 255 typename detail::Identity<LArgs>::type..., CtorAlloc const& alloc) {
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | Reassociate.cpp | 601 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, I->getType()); local 602 assert(Identity && "Associative operation without identity!"); 603 Ops.emplace_back(Identity, APInt(Bitwidth, 1));
|
/external/mesa3d/src/mesa/math/ |
H A D | m_matrix.c | 132 * Identity matrix. 134 static const GLfloat Identity[16] = { variable 597 memcpy( out, Identity, sizeof(Identity) ); 631 * Simply copies Identity into GLmatrix::inv. 635 memcpy( mat->inv, Identity, sizeof(Identity) ); 657 memcpy( out, Identity, sizeof(Identity) ); 690 memcpy( out, Identity, sizeo [all...] |
/external/openssh/ |
H A D | ssh-agent.c | 119 } Identity; typedef in typeref:struct:identity 192 free_identity(Identity *id) 201 static Identity * 204 Identity *id; 216 confirm_key(Identity *id) 247 Identity *id; 300 Identity *id; 483 Identity *id = lookup_identity(key, version); 511 Identity *id; 532 Identity *i [all...] |
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
H A D | PVRTVector.h | 1289 @fn Identity 1293 static PVRTMat3 Identity() function in struct:PVRTMat3 1674 ppRows[j][0] = PVRTMat4::Identity().f[i + 4 * j]; 1773 static PVRTMat4 Identity() function in struct:PVRTMat4
|
/external/libchrome/base/ |
H A D | bind_unittest.cc | 264 int Identity(int n) { function in namespace:base::__anon9963 544 Callback<int()> bind_primitive_cb = Bind(&Identity, n); 551 Callback<int()> bind_int_literal_cb = Bind(&Identity, 3); 630 Callback<int()> ref_copies_cb = Bind(&Identity, ref_n); 635 Callback<int()> const_ref_copies_cb = Bind(&Identity, const_ref_n); 727 Callback<int()> copy_cb = Bind(&Identity, n); 728 Callback<int()> const_ref_cb = Bind(&Identity, ConstRef(n));
|
/external/mesa3d/src/gallium/state_trackers/nine/ |
H A D | nine_state.c | 3755 static D3DMATRIX Identity = { .m[0] = { 1, 0, 0, 0 }, local 3784 return &Identity; 3789 ff_state->transform[n] = Identity;
|