Home
last modified time | relevance | path

Searched refs:transform (Results 1 – 25 of 3352) sorted by relevance

12345678910>>...135

/third_party/node/test/parallel/
Dtest-stream-transform-destroy.js8 const transform = new Transform({ constant
9 transform(chunk, enc, cb) {} method
12 transform.resume();
14 transform.on('end', common.mustNotCall());
15 transform.on('close', common.mustCall());
16 transform.on('finish', common.mustNotCall());
18 transform.destroy();
22 const transform = new Transform({ constant
23 transform(chunk, enc, cb) {} method
25 transform.resume();
[all …]
/third_party/flutter/flutter/packages/flutter/test/animation/
Dcurves_test.dart22 expect(flippedEase.transform(0.0), lessThan(0.001));
23 expect(flippedEase.transform(0.5), lessThan(ease.transform(0.5)));
24 expect(flippedEase.transform(1.0), greaterThan(0.999));
30 expect(step.transform(0.0), 0.0);
31 expect(step.transform(0.24), 0.0);
32 expect(step.transform(0.25), 1.0);
33 expect(step.transform(0.26), 1.0);
34 expect(step.transform(1.0), 1.0);
40 final double deltaY = curve.transform(x) - curve.transform(x + delta);
88 expect(curve.transform(0.0), inInclusiveRange(0.0, 1.0));
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DBidiTransform.java211 public String transform(CharSequence text, in transform() method in BidiTransform
375 void doTransform(BidiTransform transform) { in doTransform() argument
376transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_LOGICAL); in doTransform()
377 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT); in doTransform()
378 transform.reorder(); in doTransform()
388 void doTransform(BidiTransform transform) { in doTransform() argument
389 transform.resolve(Bidi.RTL, Bidi.REORDER_DEFAULT); in doTransform()
390 transform.reorder(); in doTransform()
391transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_VISUAL_LT… in doTransform()
401 void doTransform(BidiTransform transform) { in doTransform() argument
[all …]
DSourceTargetUtility.java21 final Transform<String, String> transform; field in SourceTargetUtility
28 public SourceTargetUtility(Transform<String, String> transform) { in SourceTargetUtility() argument
29 this(transform, null); in SourceTargetUtility()
32 public SourceTargetUtility(Transform<String, String> transform, Normalizer2 normalizer) { in SourceTargetUtility() argument
33 this.transform = transform; in SourceTargetUtility()
65 String s = transform.transform(UTF16.valueOf(i)); in SourceTargetUtility()
78 s = transform.transform(d); in SourceTargetUtility()
123 targetSet.addAll(transform.transform(s)); in addSourceTargetSet()
127 String t = transform.transform(s); in addSourceTargetSet()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBidiTransform.java221 public String transform(CharSequence text, in transform() method in BidiTransform
385 void doTransform(BidiTransform transform) { in doTransform() argument
386transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_LOGICAL); in doTransform()
387 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT); in doTransform()
388 transform.reorder(); in doTransform()
398 void doTransform(BidiTransform transform) { in doTransform() argument
399 transform.resolve(Bidi.RTL, Bidi.REORDER_DEFAULT); in doTransform()
400 transform.reorder(); in doTransform()
401transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_VISUAL_LT… in doTransform()
411 void doTransform(BidiTransform transform) { in doTransform() argument
[all …]
/third_party/skia/third_party/externals/tint/fuzzers/
Dtransform_builder.h46 transform::Manager* manager() { return &manager_; } in manager()
47 transform::DataMap* data_map() { return &data_map_; } in data_map()
54 static_assert(std::is_base_of<transform::Transform, T>::value, in AddTransform()
62 AddTransform<transform::Robustness>(); in AddPlatformIndependentPasses()
63 AddTransform<transform::FirstIndexOffset>(); in AddPlatformIndependentPasses()
64 AddTransform<transform::BindingRemapper>(); in AddPlatformIndependentPasses()
65 AddTransform<transform::Renamer>(); in AddPlatformIndependentPasses()
66 AddTransform<transform::SingleEntryPoint>(); in AddPlatformIndependentPasses()
67 AddTransform<transform::VertexPulling>(); in AddPlatformIndependentPasses()
72 transform::Manager manager_;
[all …]
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/opencv/
Dgstopencvvideofilter.cpp92 GstOpencvVideoFilter *transform = GST_OPENCV_VIDEO_FILTER (obj); in gst_opencv_video_filter_finalize() local
94 transform->cvImage.release (); in gst_opencv_video_filter_finalize()
95 transform->out_cvImage.release (); in gst_opencv_video_filter_finalize()
124 gst_opencv_video_filter_init (GstOpencvVideoFilter * transform) in gst_opencv_video_filter_init() argument
132 GstOpencvVideoFilter *transform; in gst_opencv_video_filter_transform_frame() local
136 transform = GST_OPENCV_VIDEO_FILTER (trans); in gst_opencv_video_filter_transform_frame()
137 fclass = GST_OPENCV_VIDEO_FILTER_GET_CLASS (transform); in gst_opencv_video_filter_transform_frame()
141 transform->cvImage.data = (unsigned char *) inframe->data[0]; in gst_opencv_video_filter_transform_frame()
142 transform->cvImage.datastart = (unsigned char *) inframe->data[0]; in gst_opencv_video_filter_transform_frame()
143 transform->out_cvImage.data = (unsigned char *) outframe->data[0]; in gst_opencv_video_filter_transform_frame()
[all …]
/third_party/boost/libs/yap/test/
Duser_expression_transform_2.cpp41 number const n = transform(yap::value(expr), *this); in operator ()()
50 number const lhs = transform(yap::left(expr), *this); in operator ()()
51 number const rhs = transform(yap::right(expr), *this); in operator ()()
71 user::number result = transform(a, user::eval_xform{}); in test_main()
76 user::number result = transform(make_ref(a), user::eval_xform{}); in test_main()
81 user::number result = transform(-a, user::eval_xform{}); in test_main()
87 user::number result = transform(-expr, user::eval_xform{}); in test_main()
93 user::number result = transform(expr, user::eval_xform{}); in test_main()
100 user::number result = transform(expr2, user::eval_xform{}); in test_main()
107 user::number result = transform(expr2, user::eval_xform{}); in test_main()
[all …]
Duser_expression_transform_1.cpp155 yap::transform(::boost::yap::make_terminal(lhs), *this), in operator ()()
156 yap::transform(::boost::yap::make_terminal(rhs), *this)); in operator ()()
174 yap::transform(::boost::yap::left(expr), *this), in operator ()()
175 yap::transform(::boost::yap::right(expr), *this)); in operator ()()
199 yap::transform(::boost::yap::make_terminal(lhs), *this), in operator ()()
200 yap::transform(::boost::yap::make_terminal(rhs), *this)); in operator ()()
209 yap::transform(::boost::yap::left(expr), *this), in operator ()()
210 yap::transform(::boost::yap::right(expr), *this)); in operator ()()
228 return boost::yap::transform(::boost::yap::as_expr(lhs), *this) - in operator ()()
229 boost::yap::transform(::boost::yap::as_expr(rhs), *this); in operator ()()
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_transform_feedback2.txt44 capabilities to these extensions, making transform feedback mode
47 First, it provides transform feedback objects encapsulating transform
49 transform feedback configuration in a single bind call. Second, it
50 provides the ability to pause and resume transform feedback operations.
51 When transform feedback is paused, applications may render without
52 transform feedback or may use transform feedback with different state and
53 a different transform feedback object. When transform feedback is
58 captured in transform feedback mode without querying the captured
61 captured to buffer objects during the last transform feedback capture
62 operation on the transform feedback object used. This draw operation only
[all …]
/third_party/openGLES/extensions/NV/
DNV_transform_feedback2.txt44 capabilities to these extensions, making transform feedback mode
47 First, it provides transform feedback objects encapsulating transform
49 transform feedback configuration in a single bind call. Second, it
50 provides the ability to pause and resume transform feedback operations.
51 When transform feedback is paused, applications may render without
52 transform feedback or may use transform feedback with different state and
53 a different transform feedback object. When transform feedback is
58 captured in transform feedback mode without querying the captured
61 captured to buffer objects during the last transform feedback capture
62 operation on the transform feedback object used. This draw operation only
[all …]
/third_party/jerryscript/tools/babel/
D.babelrc3 "@babel/plugin-transform-function-name",
5 "@babel/plugin-transform-block-scoping",
6 "@babel/plugin-transform-destructuring",
7 "@babel/plugin-transform-block-scoped-functions",
8 "@babel/plugin-transform-unicode-regex",
9 "@babel/plugin-transform-sticky-regex",
10 "@babel/plugin-transform-spread",
11 "@babel/plugin-transform-parameters",
12 "@babel/plugin-transform-object-super",
13 "@babel/plugin-transform-new-target",
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_transform_feedback2.txt56 making transform feedback mode more useful.
58 First, it provides transform feedback objects which encapsulate transform
60 transform feedback configuration in a single bind call. Second, it
61 provides the ability to pause and resume transform feedback operations.
62 When transform feedback is paused, applications may render without
63 transform feedback or may use transform feedback with different state and
64 a different transform feedback object. When transform feedback is
69 captured in transform feedback mode without querying the captured
72 captured to buffer objects during the last transform feedback capture
73 operation on the transform feedback object used. This draw operation only
[all …]
/third_party/openGLES/extensions/EXT/
DEXT_transform_feedback2.txt51 making transform feedback mode more useful.
53 First, it provides transform feedback objects which encapsulate transform
55 transform feedback configuration in a single bind call. Second, it
56 provides the ability to pause and resume transform feedback operations.
57 When transform feedback is paused, applications may render without
58 transform feedback or may use transform feedback with different state and
59 a different transform feedback object. When transform feedback is
64 captured in transform feedback mode without querying the captured
67 captured to buffer objects during the last transform feedback capture
68 operation on the transform feedback object used. This draw operation only
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_transform_feedback2.txt51 making transform feedback mode more useful.
53 First, it provides transform feedback objects which encapsulate transform
55 transform feedback configuration in a single bind call. Second, it
56 provides the ability to pause and resume transform feedback operations.
57 When transform feedback is paused, applications may render without
58 transform feedback or may use transform feedback with different state and
59 a different transform feedback object. When transform feedback is
64 captured in transform feedback mode without querying the captured
67 captured to buffer objects during the last transform feedback capture
68 operation on the transform feedback object used. This draw operation only
[all …]
/third_party/boost/libs/mp11/test/
Dmp_transform_sf.cpp22 template<class... L> using transform = mp_transform<F, L...>; typedef
26 BOOST_TEST_TRAIT_FALSE((mp_valid<transform>)); in main()
27 BOOST_TEST_TRAIT_FALSE((mp_valid<transform, void>)); in main()
28 BOOST_TEST_TRAIT_FALSE((mp_valid<transform, void, void>)); in main()
29 BOOST_TEST_TRAIT_FALSE((mp_valid<transform, void, void, void>)); in main()
30 BOOST_TEST_TRAIT_FALSE((mp_valid<transform, void, void, void, void>)); in main()
31 BOOST_TEST_TRAIT_FALSE((mp_valid<transform, void, void, void, void, void>)); in main()
34 BOOST_TEST_TRAIT_TRUE((mp_valid<transform, mp_list<>>)); in main()
37 BOOST_TEST_TRAIT_FALSE((mp_valid<transform, mp_list<>, mp_list<void>>)); in main()
38 BOOST_TEST_TRAIT_FALSE((mp_valid<transform, mp_list<>, mp_list<>, mp_list<void>>)); in main()
[all …]
/third_party/flutter/skia/tests/
DMatrix44Test.cpp567 SkMatrix44 transform(SkMatrix44::kIdentity_Constructor); in test_has_perspective() local
569 transform.setDouble(3, 2, -0.1); in test_has_perspective()
570 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
572 transform.reset(); in test_has_perspective()
573 REPORTER_ASSERT(reporter, !transform.hasPerspective()); in test_has_perspective()
575 transform.setDouble(3, 0, -1.0); in test_has_perspective()
576 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
578 transform.reset(); in test_has_perspective()
579 transform.setDouble(3, 1, -1.0); in test_has_perspective()
580 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
[all …]
/third_party/openGLES/extensions/ARB/
DARB_transform_feedback2.txt66 making transform feedback mode more useful.
68 First, it provides transform feedback objects which encapsulate transform
70 transform feedback configuration in a single bind call. Second, it
71 provides the ability to pause and resume transform feedback operations.
72 When transform feedback is paused, applications may render without
73 transform feedback or may use transform feedback with different state and
74 a different transform feedback object. When transform feedback is
79 captured in transform feedback mode without querying the captured
82 captured to buffer objects during the last transform feedback capture
83 operation on the transform feedback object used. This draw operation only
[all …]
/third_party/mindspore/mindspore/dataset/transforms/
Dpy_transforms_util.py47 for transform in transforms:
49 args = transform(*args)
124 for transform in transforms:
125 img = transform(img)
143 for transform in transforms:
144 img = transform(img)
172 def __init__(self, transform): argument
173 if not callable(transform):
174 …raise ValueError("Input operations should be callable python function, but got: " + str(transform))
175 self.transform = transform
[all …]
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DSourceTargetUtility.java20 final Transform<String, String> transform; field in SourceTargetUtility
27 public SourceTargetUtility(Transform<String, String> transform) { in SourceTargetUtility() argument
28 this(transform, null); in SourceTargetUtility()
31 public SourceTargetUtility(Transform<String, String> transform, Normalizer2 normalizer) { in SourceTargetUtility() argument
32 this.transform = transform; in SourceTargetUtility()
64 String s = transform.transform(UTF16.valueOf(i)); in SourceTargetUtility()
77 s = transform.transform(d); in SourceTargetUtility()
122 targetSet.addAll(transform.transform(s)); in addSourceTargetSet()
126 String t = transform.transform(s); in addSourceTargetSet()
/third_party/mindspore/mindspore/ccsrc/cxx_api/model/acl/
Dmodel_converter.cc28 transform::TensorOrderMap GetParams(const FuncGraphPtr &anf_graph) { in GetParams()
29 transform::TensorOrderMap res; in GetParams()
46 std::shared_ptr<ge::Session> sess = transform::DfGraphManager::GetInstance().GetGeSession(); in CreateSessionAndGraphRunner()
48 transform::SessionOptions options; in CreateSessionAndGraphRunner()
51 sess = transform::GraphRunner::NewSession(options); in CreateSessionAndGraphRunner()
56 transform::DfGraphManager::GetInstance().SetGeSession(sess); in CreateSessionAndGraphRunner()
60 transform::GraphRunnerOptions options; in CreateSessionAndGraphRunner()
62 auto graph_runner = std::make_shared<transform::GraphRunner>(options); in CreateSessionAndGraphRunner()
67 transform::DfGraphManager::GetInstance().SetGraphRunner(graph_runner); in CreateSessionAndGraphRunner()
74 transform::DfGraphPtr ModelConverter::ConvertFuncGraphToAIR(const FuncGraphPtr &anf_graph) { in ConvertFuncGraphToAIR()
[all …]
/third_party/boost/boost/geometry/algorithms/
Dtransform.hpp49 namespace detail { namespace transform namespace
207 typedef typename strategy::transform::services::default_strategy
279 struct transform {}; struct
282 struct transform<Point1, Point2, point_tag, point_tag> struct
283 : detail::transform::transform_point
289 struct transform struct
294 : detail::transform::transform_range
299 struct transform<Range1, Range2, ring_tag, ring_tag> struct
300 : detail::transform::transform_range
305 struct transform<Polygon1, Polygon2, polygon_tag, polygon_tag> struct
[all …]
/third_party/node/deps/npm/node_modules/through2/
Dthrough2.js33 return function (options, transform, flush) { argument
35 flush = transform
36 transform = options
40 if (typeof transform != 'function')
41 transform = noop
46 return construct(options, transform, flush)
52 module.exports = through2(function (options, transform, flush) { argument
55 t2._transform = transform
66 module.exports.ctor = through2(function (options, transform, flush) { argument
78 Through2.prototype._transform = transform
[all …]
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_point_sprite.c508 struct psprite_transform_context transform; in tgsi_add_point_sprite() local
514 memset(&transform, 0, sizeof(transform)); in tgsi_add_point_sprite()
515 transform.base.transform_declaration = psprite_decl; in tgsi_add_point_sprite()
516 transform.base.transform_instruction = psprite_inst; in tgsi_add_point_sprite()
517 transform.base.transform_property = psprite_property; in tgsi_add_point_sprite()
518 transform.base.transform_immediate = psprite_immediate; in tgsi_add_point_sprite()
519 transform.base.prolog = psprite_prolog; in tgsi_add_point_sprite()
521 transform.point_size_in = INVALID_INDEX; in tgsi_add_point_sprite()
522 transform.point_size_out = INVALID_INDEX; in tgsi_add_point_sprite()
523 transform.point_size_tmp = INVALID_INDEX; in tgsi_add_point_sprite()
[all …]
/third_party/skia/third_party/externals/tint/src/
DBUILD.gn428 "transform/add_empty_entry_point.cc",
429 "transform/add_empty_entry_point.h",
430 "transform/array_length_from_uniform.cc",
431 "transform/array_length_from_uniform.h",
432 "transform/binding_remapper.cc",
433 "transform/binding_remapper.h",
434 "transform/calculate_array_length.cc",
435 "transform/calculate_array_length.h",
436 "transform/canonicalize_entry_point_io.cc",
437 "transform/canonicalize_entry_point_io.h",
[all …]

12345678910>>...135