/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
H A D | compare_test.cc | 27 bool Identity(bool b) { return b; } in Identity() function 30 EXPECT_TRUE(Identity(weak_equality::equivalent == 0)); in TEST() 31 EXPECT_TRUE(Identity(0 == weak_equality::equivalent)); in TEST() 32 EXPECT_TRUE(Identity(weak_equality::nonequivalent != 0)); in TEST() 33 EXPECT_TRUE(Identity(0 != weak_equality::nonequivalent)); in TEST() 46 EXPECT_TRUE(Identity(strong_equality::equal == 0)); in TEST() 47 EXPECT_TRUE(Identity(0 == strong_equality::equal)); in TEST() 48 EXPECT_TRUE(Identity(strong_equality::nonequal != 0)); in TEST() 49 EXPECT_TRUE(Identity(0 != strong_equality::nonequal)); in TEST() 50 EXPECT_TRUE(Identity(strong_equalit in TEST() [all...] |
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/ |
H A D | Transform.cs | 34 internal static readonly Org.Brotli.Dec.Transform[] Transforms = new Org.Brotli.Dec.Transform[] { new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, string.Empty), new Org.Brotli.Dec.Transform(string.Empty,
35 Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(" ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.OmitFirst1, string.Empty), new Org.Brotli.Dec.Transform
36 (string.Empty, Org.Brotli.Dec.WordTransformType.UppercaseFirst, " "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " the "), new Org.Brotli.Dec.Transform(" ", Org.Brotli.Dec.WordTransformType.Identity
37 , string.Empty), new Org.Brotli.Dec.Transform("s ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " of "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType
38 .UppercaseFirst, string.Empty), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " and "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.OmitFirst2, string.Empty), new Org.Brotli.Dec.Transform
39 (string.Empty, Org.Brotli.Dec.WordTransformType.OmitLast1, string.Empty), new Org.Brotli.Dec.Transform(", ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity
[all...] |
H A D | WordTransformType.cs | 16 internal const int Identity = 0;
field in Org.Brotli.Dec.WordTransformType
|
/third_party/typescript/tests/baselines/reference/ |
H A D | typePartameterConstraintInstantiatedWithDefaultWhenCheckingDefault.js | 8 class Identity<V> implements Settable<Identity<V>, V> { 13 public set(value: V): Identity<V> { 14 return new Identity<V>(value); 19 interface Test1<V, T extends Settable<T, V> = Identity<V>> { }; 24 type Test2<V> = Test2Base<V, Identity<V>>; 30 var Identity = /** @class */ (function () {
31 function Identity(value) {
34 Identity.prototype.set = function (value) {
35 return new Identity(valu [all...] |
H A D | mappedTypeRelationships.js | 123 type Identity<T> = { 127 function f61<U>(x: Identity<U>, y: Partial<U>) { 132 function f62<U>(x: Identity<U>, y: Readonly<U>) { 369 type Identity<T> = {
372 declare function f61<U>(x: Identity<U>, y: Partial<U>): void;
373 declare function f62<U>(x: Identity<U>, y: Readonly<U>): void;
|
H A D | jsDeclarationsTypeAliases.js | 23 * Identity function 26 * @callback Identity 72 * Identity function
75 * @callback Identity
118 * Identity function
120 export type Identity<T> = (x: T) => T;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUAtomicOptimizer.cpp | 51 Value *const Identity) const; 52 Value *buildShiftRight(IRBuilder<> &B, Value *V, Value *const Identity) const; 284 Value *V, Value *const Identity) const { in buildScan() 298 {Identity, V, B.getInt32(DPP::ROW_SHR0 | 1 << Idx), in buildScan() 306 {Identity, V, B.getInt32(DPP::BCAST15), B.getInt32(0xa), in buildScan() 311 {Identity, V, B.getInt32(DPP::BCAST31), B.getInt32(0xc), in buildScan() 325 {Identity, PermX, B.getInt32(DPP::QUAD_PERM_ID), in buildScan() 333 {Identity, Lane31, B.getInt32(DPP::QUAD_PERM_ID), in buildScan() 343 Value *const Identity) const { in buildShiftRight() 356 {Identity, in buildShiftRight() 473 Value *const Identity = B.getInt(getIdentityValueForAtomicOp(Op, TyBitWidth)); optimizeAtomic() local [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | runtime-support.h | 11 struct Identity { struct 16 struct UnderlyingTypeHelper : Identity<typename std::underlying_type<T>::type> { 22 Identity<T>>::type;
|
/third_party/mesa3d/src/mesa/math/ |
H A D | m_matrix.c | 137 * Identity matrix. 139 static const GLfloat Identity[16] = { variable 487 memcpy( out, Identity, sizeof(Identity) ); in invert_matrix_3d() 521 * Simply copies Identity into GLmatrix::inv. 525 memcpy( mat->inv, Identity, sizeof(Identity) ); in invert_matrix_identity() 547 memcpy( out, Identity, sizeof(Identity) ); in invert_matrix_3d_no_rot() 580 memcpy( out, Identity, sizeo in invert_matrix_2d_no_rot() [all...] |
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
H A D | SpecializationConstant.cpp | 39 {{vk::SurfaceRotation::Identity, {{1.0f, 0.0f, 0.0f, 1.0f}}}, 49 {{vk::SurfaceRotation::Identity, {{1.0f, 0.0f, 0.0f, 1.0f}}}, 80 CreateMat2x2(matrix, vk::SurfaceRotation::Identity), in GenerateMat2x2ArrayWithIndex() 96 {{vk::SurfaceRotation::Identity, {{1.0f, 1.0f}}}, 137 CreateVec2(vec2Values, yscale, vk::SurfaceRotation::Identity), in CreateVec2ArrayWithIndex() 156 {{vk::SurfaceRotation::Identity, CalcRotatedFlipXYValueForDFdx(vk::SurfaceRotation::Identity)}, 179 {{vk::SurfaceRotation::Identity, CalcRotatedFlipXYValueForDFdy(vk::SurfaceRotation::Identity)}, 206 CreateFloatNode(valuesEnumMap[vk::SurfaceRotation::Identity][subscrip in CreateFloatArrayWithRotationIndex() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | raw_hash_set_allocator_test.cc | 125 struct Identity { struct 177 using Table = raw_hash_set<Policy, Identity, std::equal_to<int32_t>, Alloc>; 474 using Table = raw_hash_set<Policy, Identity, std::equal_to<int32_t>, PA>; in TEST() 485 using Table = raw_hash_set<Policy, Identity, std::equal_to<int32_t>, PA>; in TEST() 494 using Table = raw_hash_set<Policy, Identity, std::equal_to<int32_t>, PA>; in TEST()
|
/third_party/spirv-tools/test/util/ |
H A D | hash_combine_test.cpp | 27 TEST(HashCombineTest, Identity) { EXPECT_EQ(hash_combine(0), 0); } in TEST()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/gles1/ |
H A D | MatrixMultTest.cpp | 35 TEST_P(MatrixMultTest, Identity) in TEST_P()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | FramebufferVk.cpp | 110 case SurfaceRotation::Identity: in EarlyAdjustFlipYForPreRotation() 137 case SurfaceRotation::Identity: in AdjustBlitAreaForPreRotation() 167 case SurfaceRotation::Identity: in AdjustDimensionsAndFlipForPreRotation() 230 case SurfaceRotation::Identity: in AdjustBlitResolveParametersForPreRotation() 751 case SurfaceRotation::Identity: in readPixels() 967 SurfaceRotation rotation = SurfaceRotation::Identity; in blit() 970 ASSERT((srcFramebufferRotation == SurfaceRotation::Identity) || in blit() 971 (dstFramebufferRotation == SurfaceRotation::Identity)); in blit() 1032 if (dstFramebufferRotation != SurfaceRotation::Identity) in blit() 1141 (rotation == SurfaceRotation::Identity); in blit() [all...] |
H A D | ContextVk.cpp | 226 {{{SurfaceRotation::Identity, {{1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f}}}, 255 return SurfaceRotation::Identity; in DetermineSurfaceRotation() 267 return SurfaceRotation::Identity; in DetermineSurfaceRotation() 273 return SurfaceRotation::Identity; in DetermineSurfaceRotation() 542 mCurrentRotationDrawFramebuffer(SurfaceRotation::Identity), 543 mCurrentRotationReadFramebuffer(SurfaceRotation::Identity), 4219 // If program is not using rotation at all, we force it to use the Identity or FlippedIdentity in updateGraphicsPipelineDescWithSpecConstUsageBits() 4223 rotationAndFlip = yFlipped ? SurfaceRotation::FlippedIdentity : SurfaceRotation::Identity; in updateGraphicsPipelineDescWithSpecConstUsageBits() 5037 case SurfaceRotation::Identity:
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
H A D | Layout.h | 46 static Layout Identity() { return {0, 1}; } in Identity() function
|
H A D | Layout.cpp | 127 auto layout = Layout::Identity(); in MetalLayoutOf() 254 auto layout = Layout::Identity(); in CommonGlslStructLayoutOf()
|
H A D | ModifyStruct.cpp | 311 ASSERT(metalLayoutTotal == Layout::Identity()); 468 Layout glslLayoutTotal = Layout::Identity(); 615 Layout metalLayoutTotal = Layout::Identity();
|
/third_party/skia/third_party/externals/tint/src/utils/ |
H A D | transform_test.cc | 50 TEST(TransformTest, Identity) { in TEST()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
H A D | vertexconversion.h | 26 struct Identity struct
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | glslang_wrapper_utils.h | 57 SurfaceRotation preRotation = SurfaceRotation::Identity;
|
H A D | renderer_utils.cpp | 241 case SurfaceRotation::Identity: in RotateRectangle() 280 rotation(SurfaceRotation::Identity) in PackPixelsParams() 295 rotation(SurfaceRotation::Identity) in PackPixelsParams() 314 case SurfaceRotation::Identity: in PackPixels() 374 if (params.rotation == SurfaceRotation::Identity && sourceFormat == *params.destFormat) in PackPixels()
|
H A D | renderer_utils.h | 52 Identity, member in rx::SurfaceRotation
|
/third_party/skia/third_party/externals/angle2/include/GLSLANG/ |
H A D | ShaderLang.h | 833 Identity, member in sh::vk::SurfaceRotation
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | ConstantFold.cpp | 1008 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, C1->getType()); in ConstantFoldBinaryInstruction() local 1009 if (Identity) { in ConstantFoldBinaryInstruction() 1010 if (C1 == Identity) in ConstantFoldBinaryInstruction() 1012 if (C2 == Identity) in ConstantFoldBinaryInstruction()
|