Home
last modified time | relevance | path

Searched refs:transformed (Results 1 – 25 of 342) sorted by relevance

12345678910>>...14

/third_party/skia/third_party/externals/tint/src/utils/
Dtransform_test.cc33 auto transformed = Transform(empty, [](int) -> int { in TEST() local
37 CHECK_ELEMENT_TYPE(transformed, int); in TEST()
38 EXPECT_EQ(transformed.size(), 0u); in TEST()
41 auto transformed = Transform(empty, [](int, size_t) -> int { in TEST() local
45 CHECK_ELEMENT_TYPE(transformed, int); in TEST()
46 EXPECT_EQ(transformed.size(), 0u); in TEST()
53 auto transformed = Transform(input, [](int i) { return i; }); in TEST() local
54 CHECK_ELEMENT_TYPE(transformed, int); in TEST()
55 EXPECT_THAT(transformed, testing::ElementsAre(1, 2, 3, 4)); in TEST()
58 auto transformed = Transform(input, [](int i, size_t) { return i; }); in TEST() local
[all …]
/third_party/node/deps/npm/node_modules/spdx-correct/
Dindex.js286 var transformed = transforms[i](identifier).trim()
287 if (transformed !== identifier && valid(transformed)) {
288 return transformed
344 var transformed = validTransformation(identifier)
345 if (transformed !== null) {
346 return postprocess(transformed)
348 transformed = anyCorrection(identifier, function (argument) {
354 if (transformed !== null) {
355 return postprocess(transformed)
357 transformed = validLastResort(identifier)
[all …]
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/
DAlternateLocaleDataTest.java49 CldrDataSupplier transformed = in testLocaleData() local
53 CldrData unresolved = transformed.getDataForLocale("xx", UNRESOLVED); in testLocaleData()
54 CldrData resolved = transformed.getDataForLocale("xx", RESOLVED); in testLocaleData()
70 CldrDataSupplier transformed = in testMissingSource() local
74 CldrData unresolved = transformed.getDataForLocale("xx", UNRESOLVED); in testMissingSource()
75 CldrData resolved = transformed.getDataForLocale("xx", RESOLVED); in testMissingSource()
93 CldrDataSupplier transformed = in testMissingTarget() local
97 CldrData unresolved = transformed.getDataForLocale("xx", UNRESOLVED); in testMissingTarget()
98 CldrData resolved = transformed.getDataForLocale("xx", RESOLVED); in testMissingTarget()
/third_party/skia/docs/examples/
DRRect_transform.cpp11 SkRRect transformed;
14 bool success = rrect.transform(matrix, &transformed);
21 canvas->drawRRect(transformed, paint);
/third_party/libinput/tools/
Dlibinput-record-verify-yaml.py337 transformed = e["transformed"]
338 self.assertTrue(isinstance(transformed, list))
339 self.assertEqual(len(transformed), 2)
340 for t in transformed:
371 transformed = e["transformed"]
372 self.assertTrue(isinstance(transformed, list))
373 self.assertEqual(len(transformed), 2)
374 for t in transformed:
391 transformed = e["transformed"]
392 self.assertTrue(isinstance(transformed, list))
[all …]
/third_party/typescript/src/testRunner/unittests/
Dtransform.ts64 …const transformed = transform(createSourceFile("source.ts", sourceText, ScriptTarget.ES2015), tran… constant
66 onEmitNode: transformed.emitNodeWithNotification,
67 substituteNode: transformed.substituteNode
69 const result = printer.printBundle(factory.createBundle(transformed.transformed));
70 transformed.dispose();
540 …const transformed = transform(createSourceFile("source.ts", "class X { echo(x: string) { return x;… constant
541 const transformedSourceFile = transformed.transformed[0];
542 transformed.dispose();
/third_party/skia/third_party/externals/angle2/util/
DMatrix.cpp212 Vector4 transformed = (mat * Vector4(pt, 1.0f)).normalized(); in transform() local
213 return Vector3(transformed.x(), transformed.y(), transformed.z()); in transform()
218 Vector4 transformed = (mat * pt).normalized(); in transform() local
219 return Vector3(transformed.x(), transformed.y(), transformed.z()); in transform()
/third_party/openGLES/extensions/EXT/
DEXT_vertex_weighting.txt51 transformed by both the primary and secondary modelview matrices;
52 likewise, the incoming normal coordinates are transformed by the
56 by addition. The transformed, weighted, and combined vertex position
183 Note that the vertex weighting of transformed normals occurs
190 RESOLUTION: Vertex weighting of transformed normals occurs
263 to blend the position and normals transformed by the primary and
422 "For a modelview matrix M, the normal for this matrix is transformed
442 Rescale multiplies the transformed normals by a scale factor
456 matrix uniformly scales space, the rescale make sthe transformed normals
469 After rescaling, the final transformed normal used in lighting, nf,
[all …]
DEXT_rescale_normal.txt31 are transformed into eye coordinates.
82 Therefore, if the modelview matrix is M, then the transformed plane equation
91 and the fully transformed normal is
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_vertex_weighting.txt51 transformed by both the primary and secondary modelview matrices;
52 likewise, the incoming normal coordinates are transformed by the
56 by addition. The transformed, weighted, and combined vertex position
183 Note that the vertex weighting of transformed normals occurs
190 RESOLUTION: Vertex weighting of transformed normals occurs
263 to blend the position and normals transformed by the primary and
422 "For a modelview matrix M, the normal for this matrix is transformed
442 Rescale multiplies the transformed normals by a scale factor
456 matrix uniformly scales space, the rescale make sthe transformed normals
469 After rescaling, the final transformed normal used in lighting, nf,
[all …]
DEXT_rescale_normal.txt31 are transformed into eye coordinates.
82 Therefore, if the modelview matrix is M, then the transformed plane equation
91 and the fully transformed normal is
/third_party/openGLES/extensions/REND/
DREND_screen_coordinates.txt127 transformed vertex to produce a processed vertex.
130 Vertices and normals are transformed, colors may be affected or
131 replaced by lighting and texture coordinates are transformed and
136 coordinates are transformed but are not affected by texture
141 coordinates are not transformed.
158 Vertices, normals and texture coordinates are transformed before
177 Vertex command. The x, y, z, and w coordinates are transformed
185 to the vertex as transformed by only the current model-view
/third_party/skia/third_party/externals/opengl-registry/extensions/REND/
DREND_screen_coordinates.txt127 transformed vertex to produce a processed vertex.
130 Vertices and normals are transformed, colors may be affected or
131 replaced by lighting and texture coordinates are transformed and
136 coordinates are transformed but are not affected by texture
141 coordinates are not transformed.
158 Vertices, normals and texture coordinates are transformed before
177 Vertex command. The x, y, z, and w coordinates are transformed
185 to the vertex as transformed by only the current model-view
/third_party/skia/third_party/externals/tint/src/
Dclone_context.cc88 if (auto* transformed = transform.function(object)) { in CloneCloneable() local
89 return transformed; in CloneCloneable()
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_KHR_incremental_present.adoc81 slink:VkRectLayerKHR, be transformed to align with the pname:preTransform?
84 The rectangular region in slink:VkRectLayerKHR should not be transformed.
97 transformed swapchains.
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/
DSGIX_sprite.txt39 Primitives are first transformed by a rotation, depending on the
182 Sprite primitive geometry is transformed from object coordinates
190 Normals associated with sprite geometry are transformed by the inverse
192 want clip planes to be transformed by the compound matrix. In a similar
196 the associated geometry will be transformed by the compound matrix (MM).
205 (SPRITE_OBJECT_ALIGNED_SGIX) or transformed into eye
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Dgraphics_robust_access_test.cpp200 const std::string& transformed) { in ACCheck() argument
202 (transformed.empty() ? "" : " ") + transformed + in ACCheck()
212 const std::string& transformed) { in ACCheckFail() argument
214 (transformed.empty() ? "" : " ") + transformed + in ACCheckFail()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Dgraphics_robust_access_test.cpp200 const std::string& transformed) { in ACCheck() argument
202 (transformed.empty() ? "" : " ") + transformed + in ACCheck()
212 const std::string& transformed) { in ACCheckFail() argument
214 (transformed.empty() ? "" : " ") + transformed + in ACCheckFail()
/third_party/openGLES/extensions/SGIX/
DSGIX_sprite.txt39 Primitives are first transformed by a rotation, depending on the
182 Sprite primitive geometry is transformed from object coordinates
190 Normals associated with sprite geometry are transformed by the inverse
192 want clip planes to be transformed by the compound matrix. In a similar
196 the associated geometry will be transformed by the compound matrix (MM).
205 (SPRITE_OBJECT_ALIGNED_SGIX) or transformed into eye
/third_party/spirv-tools/test/opt/
Dgraphics_robust_access_test.cpp200 const std::string& transformed) { in ACCheck() argument
202 (transformed.empty() ? "" : " ") + transformed + in ACCheck()
212 const std::string& transformed) { in ACCheckFail() argument
214 (transformed.empty() ? "" : " ") + transformed + in ACCheckFail()
/third_party/vk-gl-cts/framework/referencerenderer/
Ddesign.txt27 - based on indices setup transformed vertex buffer
48 + array of generic transformed attributes (float/int/uint)
/third_party/skia/third_party/externals/opengl-registry/extensions/APPLE/
DAPPLE_transform_hint.txt30 precision of the transformed vertex coordinates.
40 with identical object coordinates will always be transformed
/third_party/openGLES/extensions/APPLE/
DAPPLE_transform_hint.txt30 precision of the transformed vertex coordinates.
40 with identical object coordinates will always be transformed
/third_party/skia/third_party/externals/freetype/src/autofit/
Dafloader.c377 loader->transformed = slot_internal->glyph_transformed; in af_loader_load_glyph()
378 if ( loader->transformed ) in af_loader_load_glyph()
395 if ( loader->transformed ) in af_loader_load_glyph()
517 if ( loader->transformed ) in af_loader_load_glyph()
/third_party/skia/third_party/externals/opengl-registry/extensions/IBM/
DIBM_rasterpos_clip.txt56 The transformed coordinates are passed to clipping as if they
64 The transformed coordinates are passed to clipping as if they

12345678910>>...14