Home
last modified time | relevance | path

Searched refs:transform (Results 1 - 25 of 780) sorted by relevance

12345678910>>...32

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiTransform.java175 * String out = bidiTransform.transform(in,
185 * String inNew = bidiTransform.transform(out,
221 public String transform(CharSequence text, in transform() method in BidiTransform
385 void doTransform(BidiTransform transform) {
386 transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_LOGICAL);
387 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT);
388 transform.reorder();
398 void doTransform(BidiTransform transform) {
399 transform.resolve(Bidi.RTL, Bidi.REORDER_DEFAULT);
400 transform
619 doTransform(BidiTransform transform) doTransform() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DBidiTransform.java166 * String out = bidiTransform.transform(in,
176 * String inNew = bidiTransform.transform(out,
211 public String transform(CharSequence text, in transform() method in BidiTransform
375 void doTransform(BidiTransform transform) {
376 transform.shapeArabic(ArabicShaping.TEXT_DIRECTION_LOGICAL, ArabicShaping.TEXT_DIRECTION_LOGICAL);
377 transform.resolve(Bidi.LTR, Bidi.REORDER_DEFAULT);
378 transform.reorder();
388 void doTransform(BidiTransform transform) {
389 transform.resolve(Bidi.RTL, Bidi.REORDER_DEFAULT);
390 transform
609 doTransform(BidiTransform transform) doTransform() argument
[all...]
H A 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( in SourceTargetUtility()
[all...]
H A DBytesDictionaryMatcher.java20 private final int transform; field in BytesDictionaryMatcher
22 public BytesDictionaryMatcher(byte[] chars, int transform) { in BytesDictionaryMatcher() argument
24 Assert.assrt((transform & DictionaryData.TRANSFORM_TYPE_MASK) == DictionaryData.TRANSFORM_TYPE_OFFSET); in BytesDictionaryMatcher()
25 // while there is only one transform type so far, save the entire transform constant so that in BytesDictionaryMatcher()
26 // if we add any others, we need only change code in transform() and the assert above rather in BytesDictionaryMatcher()
27 // than adding a "transform type" variable in BytesDictionaryMatcher()
28 this.transform = transform; in BytesDictionaryMatcher()
31 private int transform(in method in BytesDictionaryMatcher
[all...]
/third_party/skia/third_party/externals/tint/fuzzers/
H A Dtransform_builder.h28 /// Fuzzer utility class to build inputs for transforms and setup the transform
46 transform::Manager* manager() { return &manager_; } in manager()
47 transform::DataMap* data_map() { return &data_map_; } in data_map()
49 /// Adds a transform and needed data to |manager_| and |data_map_|.
50 /// @tparam T - A class that inherits from transform::Transform and has an
54 static_assert(std::is_base_of<transform::Transform, T>::value, in AddTransform()
55 "T is not a transform::Transform"); in AddTransform()
62 AddTransform<transform::Robustness>(); in AddPlatformIndependentPasses()
63 AddTransform<transform::FirstIndexOffset>(); in AddPlatformIndependentPasses()
64 AddTransform<transform in AddPlatformIndependentPasses()
[all...]
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A 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( in SourceTargetUtility()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_point_sprite.c111 * TGSI declaration transform callback.
158 * TGSI immediate declaration transform callback.
172 * TGSI transform prolog callback.
438 * TGSI instruction transform callback.
497 * TGSI property instruction transform callback.
518 * TGSI utility to transform a geometry shader to support point sprite.
528 struct psprite_transform_context transform; in tgsi_add_point_sprite() local
534 memset(&transform, 0, sizeof(transform)); in tgsi_add_point_sprite()
535 transform in tgsi_add_point_sprite()
[all...]
H A Dtgsi_aa_point.c60 * TGSI declaration transform callback.
84 * TGSI immediate declaration transform callback.
97 * TGSI transform prolog callback.
213 * TGSI instruction transform callback.
238 * TGSI transform epilog callback.
264 * TGSI utility to transform a fragment shader to support antialiasing point.
285 struct aa_transform_context transform; in tgsi_add_aa_point() local
290 memset(&transform, 0, sizeof(transform)); in tgsi_add_aa_point()
291 transform in tgsi_add_aa_point()
[all...]
H A Dtgsi_two_side.c202 struct two_side_transform_context transform; in tgsi_add_two_side() local
207 memset(&transform, 0, sizeof(transform)); in tgsi_add_two_side()
208 transform.base.transform_declaration = xform_decl; in tgsi_add_two_side()
209 transform.base.transform_instruction = xform_inst; in tgsi_add_two_side()
210 transform.base.prolog = emit_prolog; in tgsi_add_two_side()
211 transform.face_input = INVALID_INDEX; in tgsi_add_two_side()
212 transform.front_color_input[0] = INVALID_INDEX; in tgsi_add_two_side()
213 transform.front_color_input[1] = INVALID_INDEX; in tgsi_add_two_side()
214 transform in tgsi_add_two_side()
[all...]
H A Dtgsi_vpos.c55 * TGSI transform prolog callback.
87 struct write_vpos_context transform; in tgsi_write_vpos() local
92 memset(&transform, 0, sizeof(transform)); in tgsi_write_vpos()
93 transform.base.prolog = write_vpos_prolog; in tgsi_write_vpos()
95 transform.imm_index = num_immediates; in tgsi_write_vpos()
97 return tgsi_transform_shader(tokens_in, new_len, &transform.base); in tgsi_write_vpos()
/third_party/mbedtls/library/
H A Dssl_msg.c857 mbedtls_ssl_transform const *transform) in ssl_transform_aead_dynamic_iv_is_explicit()
859 return transform->ivlen != transform->fixed_ivlen; in ssl_transform_aead_dynamic_iv_is_explicit()
902 mbedtls_ssl_transform *transform, in mbedtls_ssl_encrypt_buf()
937 if (transform == NULL) { in mbedtls_ssl_encrypt_buf()
938 MBEDTLS_SSL_DEBUG_MSG(1, ("no transform provided to encrypt_buf")); in mbedtls_ssl_encrypt_buf()
953 ssl_mode = mbedtls_ssl_get_mode_from_transform(transform); in mbedtls_ssl_encrypt_buf()
981 if (transform->tls_version == MBEDTLS_SSL_VERSION_TLS1_3) { in mbedtls_ssl_encrypt_buf()
1001 rec->cid_len = transform->out_cid_len; in mbedtls_ssl_encrypt_buf()
1002 memcpy(rec->cid, transform in mbedtls_ssl_encrypt_buf()
856 ssl_transform_aead_dynamic_iv_is_explicit( mbedtls_ssl_transform const *transform) ssl_transform_aead_dynamic_iv_is_explicit() argument
901 mbedtls_ssl_encrypt_buf(mbedtls_ssl_context *ssl, mbedtls_ssl_transform *transform, mbedtls_record *rec, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng) mbedtls_ssl_encrypt_buf() argument
1479 mbedtls_ssl_decrypt_buf(mbedtls_ssl_context const *ssl, mbedtls_ssl_transform *transform, mbedtls_record *rec) mbedtls_ssl_decrypt_buf() argument
5272 ssl_transform_get_explicit_iv_len( mbedtls_ssl_transform const *transform) ssl_transform_get_explicit_iv_len() argument
5278 mbedtls_ssl_update_out_pointers(mbedtls_ssl_context *ssl, mbedtls_ssl_transform *transform) mbedtls_ssl_update_out_pointers() argument
5448 const mbedtls_ssl_transform *transform = ssl->transform_out; mbedtls_ssl_get_record_expansion() local
6203 mbedtls_ssl_transform_free(mbedtls_ssl_transform *transform) mbedtls_ssl_transform_free() argument
6230 mbedtls_ssl_set_inbound_transform(mbedtls_ssl_context *ssl, mbedtls_ssl_transform *transform) mbedtls_ssl_set_inbound_transform() argument
6237 mbedtls_ssl_set_outbound_transform(mbedtls_ssl_context *ssl, mbedtls_ssl_transform *transform) mbedtls_ssl_set_outbound_transform() argument
[all...]
/third_party/skia/third_party/externals/tint/src/transform/
H A Dmanager.cc15 #include "src/transform/manager.h"
17 /// If set to 1 then the transform::Manager will dump the WGSL of the program
18 /// before and after each transform. Helpful for debugging bad output.
27 TINT_INSTANTIATE_TYPEINFO(tint::transform::Manager);
30 namespace transform { namespace
37 auto print_program = [&](const char* msg, const Transform* transform) { in Run()
41 std::cout << "-- " << msg << " " << transform->TypeInfo().name << ":" in Run()
54 for (const auto& transform : transforms_) { in Run()
55 TINT_IF_PRINT_PROGRAM(print_program("Input to", transform.get())); in Run()
57 auto res = transform in Run()
[all...]
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/
H A Dprocessor.js56 Promise.resolve(_this.func(root)).then(function (transform) {
63 transform: transform,
79 var transform = this.func(root);
80 if (transform && typeof transform.then === "function") {
89 transform: transform,
126 _proto.transform = function transform(rul function
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/breakiter/
H A DBytesDictionaryMatcher.java20 private final int transform; field in BytesDictionaryMatcher
22 public BytesDictionaryMatcher(byte[] chars, int transform) { in BytesDictionaryMatcher() argument
24 Assert.assrt((transform & DictionaryData.TRANSFORM_TYPE_MASK) == DictionaryData.TRANSFORM_TYPE_OFFSET); in BytesDictionaryMatcher()
25 // while there is only one transform type so far, save the entire transform constant so that in BytesDictionaryMatcher()
26 // if we add any others, we need only change code in transform() and the assert above rather in BytesDictionaryMatcher()
27 // than adding a "transform type" variable in BytesDictionaryMatcher()
28 this.transform = transform; in BytesDictionaryMatcher()
31 private int transform(in method in BytesDictionaryMatcher
[all...]
/third_party/skia/third_party/externals/tint/src/utils/
H A Dtransform.h30 /// @param transform the transformation function with signature: `OUT(IN)`
32 /// `transform`.
34 auto Transform(const std::vector<IN>& in, TRANSFORMER&& transform)
35 -> std::vector<decltype(transform(in[0]))> {
36 std::vector<decltype(transform(in[0]))> result(in.size());
38 result[i] = transform(in[i]);
45 /// @param transform the transformation function with signature:
48 /// `transform`.
50 auto Transform(const std::vector<IN>& in, TRANSFORMER&& transform)
51 -> std::vector<decltype(transform(i
[all...]
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_pstipple.c192 * TGSI declaration transform callback.
248 * TGSI transform prolog
380 struct pstip_transform_context transform; in util_pstipple_create_fragment_shader() local
386 memset(&transform, 0, sizeof(transform)); in util_pstipple_create_fragment_shader()
387 transform.wincoordInput = -1; in util_pstipple_create_fragment_shader()
388 transform.wincoordFile = wincoordFile; in util_pstipple_create_fragment_shader()
389 transform.maxInput = -1; in util_pstipple_create_fragment_shader()
390 transform.coordOrigin = TGSI_FS_COORD_ORIGIN_UPPER_LEFT; in util_pstipple_create_fragment_shader()
391 transform in util_pstipple_create_fragment_shader()
[all...]
/third_party/node/test/parallel/
H A Dtest-stream-writable-needdrain-state.js7 const transform = new stream.Transform({
8 transform: _transform,
14 assert.strictEqual(transform._writableState.needDrain, true);
19 assert.strictEqual(transform._writableState.needDrain, false);
21 transform.write('asdasd', common.mustCall(() => {
22 assert.strictEqual(transform._writableState.needDrain, false);
25 assert.strictEqual(transform._writableState.needDrain, true);
H A Dtest-whatwg-transformstream.js57 async transform(chunk, controller) {
67 const transform = new Transform();
68 const stream = new TransformStream(transform);
69 assert(transform.started);
86 assert(transform.flushed);
171 const transform = new TransformStream({
177 assert.match(inspect(transform), /TransformStream/);
178 assert.match(inspect(transform, { depth: null }), /TransformStream/);
179 assert.match(inspect(transform, { depth: 0 }), /TransformStream \[/);
198 transform(chun
[all...]
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H A Dparser.cc20 #include "src/transform/decompose_strided_matrix.h"
21 #include "src/transform/manager.h"
22 #include "src/transform/remove_unreachable_statements.h"
23 #include "src/transform/simplify_pointers.h"
24 #include "src/transform/unshadow.h"
55 if (transform::DecomposeStridedMatrix::ShouldRun(&program)) { in Parse()
56 transform::Manager manager; in Parse()
57 manager.Add<transform::Unshadow>(); in Parse()
58 manager.Add<transform::SimplifyPointers>(); in Parse()
59 manager.Add<transform in Parse()
[all...]
/third_party/skia/third_party/externals/tint/src/writer/glsl/
H A Dtest_helper.h23 #include "src/transform/glsl.h"
24 #include "src/transform/manager.h"
25 #include "src/transform/renamer.h"
49 SetTransformApplied<transform::Glsl>(); in Build()
63 /// Builds the program, runs the program through the transform::Glsl sanitizer
83 transform::Manager transform_manager; in SanitizeAndBuild()
84 transform::DataMap transform_data; in SanitizeAndBuild()
85 transform_data.Add<transform::Renamer::Config>( in SanitizeAndBuild()
86 transform::Renamer::Target::kGlslKeywords); in SanitizeAndBuild()
87 transform_manager.Add<tint::transform in SanitizeAndBuild()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DAnyScriptTest.java36 assertEquals("context works", "aBd abc b", t.transform(sample)); in TestContext()
89 t.transform(test); // just verify we don't crash in TestScripts()
98 t.transform(test); // just verify we don't crash in TestScripts()
113 String wideLettersAndSpace = widen.transform(lettersAndSpace); in TestForWidth()
114 String widePunctOnly = widen.transform(punctOnly); in TestForWidth()
119 back = narrow.transform(wideLettersAndSpace); in TestForWidth()
121 back = narrow.transform(widePunctOnly); in TestForWidth()
125 back = latin.transform(wideLettersAndSpace); in TestForWidth()
128 back = latin.transform(widePunctOnly); in TestForWidth()
133 //back = t2.transform(widePunctOnl in TestForWidth()
[all...]
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DAnyScriptTest.java33 assertEquals("context works", "aBd abc b", t.transform(sample)); in TestContext()
86 t.transform(test); // just verify we don't crash in TestScripts()
95 t.transform(test); // just verify we don't crash in TestScripts()
110 String wideLettersAndSpace = widen.transform(lettersAndSpace); in TestForWidth()
111 String widePunctOnly = widen.transform(punctOnly); in TestForWidth()
116 back = narrow.transform(wideLettersAndSpace); in TestForWidth()
118 back = narrow.transform(widePunctOnly); in TestForWidth()
122 back = latin.transform(wideLettersAndSpace); in TestForWidth()
125 back = latin.transform(widePunctOnly); in TestForWidth()
130 //back = t2.transform(widePunctOnl in TestForWidth()
[all...]
/third_party/skia/modules/canvaskit/htmlcanvas/
H A Dpath2d.js103 skpath.transform(rotatedInvert);
105 skpath.transform(rotated);
159 this.addPath = function(path2d, transform) {
160 if (!transform) {
161 transform = {
166 this._path.addPath(path2d._getPath(), [transform.a, transform.c, transform.e,
167 transform.b, transform
[all...]
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless.c201 static void PredictorInverseTransform_C(const VP8LTransform* const transform, in PredictorInverseTransform_C() argument
204 const int width = transform->xsize_; in PredictorInverseTransform_C()
215 const int tile_width = 1 << transform->bits_; in PredictorInverseTransform_C()
217 const int tiles_per_row = VP8LSubSampleSize(width, transform->bits_); in PredictorInverseTransform_C()
219 transform->data_ + (y >> transform->bits_) * tiles_per_row; in PredictorInverseTransform_C()
245 // Add green to blue and red channels (i.e. perform the inverse transform of
291 // Color space inverse transform.
292 static void ColorSpaceInverseTransform_C(const VP8LTransform* const transform, in ColorSpaceInverseTransform_C() argument
295 const int width = transform in ColorSpaceInverseTransform_C()
377 VP8LInverseTransform(const VP8LTransform* const transform, int row_start, int row_end, const uint32_t* const in, uint32_t* const out) VP8LInverseTransform() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_vs_draw.c316 struct vs_transform_context transform; in r300_draw_init_vertex_shader() local
326 memset(&transform, 0, sizeof(transform)); in r300_draw_init_vertex_shader()
327 for (i = 0; i < ARRAY_SIZE(transform.out_remap); i++) { in r300_draw_init_vertex_shader()
328 transform.out_remap[i] = i; in r300_draw_init_vertex_shader()
330 transform.last_generic = -1; in r300_draw_init_vertex_shader()
331 transform.base.transform_instruction = transform_inst; in r300_draw_init_vertex_shader()
332 transform.base.transform_declaration = transform_decl; in r300_draw_init_vertex_shader()
340 transform.color_used[index] = TRUE; in r300_draw_init_vertex_shader()
345 transform in r300_draw_init_vertex_shader()
[all...]

Completed in 15 milliseconds

12345678910>>...32