Searched defs:transform (Results 151 - 175 of 307) sorted by relevance

1234567891011>>

/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DDecodeJob.java138 Resource<T> transformed = transform(decoded);
230 private Resource<T> transform(Resource<T> decoded) { method in class:DecodeJob
235 Resource<T> transformed = transformation.transform(decoded, width, height);
/external/guava/guava/src/com/google/common/collect/
H A DFluentIterable.java45 * of the current one (for example {@link #transform})
61 * .transform(Functions.toStringFunction())
247 public final <T> FluentIterable<T> transform(Function<? super E, T> function) { method in class:FluentIterable
248 return from(Iterables.transform(iterable, function));
264 return from(Iterables.concat(transform(function)));
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DFluentIterable.java44 * of the current one (for example {@link #transform})
60 * .transform(Functions.toStringFunction())
235 public final <T> FluentIterable<T> transform(Function<? super E, T> function) { method in class:FluentIterable
236 return from(Iterables.transform(iterable, function));
252 return from(Iterables.concat(transform(function)));
/external/guava/guava-tests/test/com/google/common/collect/
H A DMultimapsCollectionTest.java360 return transform(multimap);
363 abstract M transform(Multimap<String, String> multimap); method in class:MultimapsCollectionTest.TransformedMultimapGenerator
398 TestSuite suite = new TestSuite("Multimaps.transform*");
402 Multimap<String, String> transform(Multimap<String, String> multimap) {
417 Multimap<String, String> transform(Multimap<String, String> multimap) {
431 ListMultimap<String, String> transform(Multimap<String, String> multimap) {
445 ListMultimap<String, String> transform(Multimap<String, String> multimap) {
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
H A DIDNAReference.java35 public static final NamePrepTransform transform = NamePrepTransform.getInstance(); field in class:IDNAReference
38 return transform.isReady();
154 processOut = transform.prepare(srcIter,options);
304 processOut = transform.prepare(iter, options);
/external/icu/icu4c/source/common/
H A Dbrkeng.cpp275 const int32_t transform = indexes[DictionaryData::IX_TRANSFORM]; local
277 m = new BytesDictionaryMatcher(characters, transform, file);
H A Ddictionarydata.cpp91 UChar32 BytesDictionaryMatcher::transform(UChar32 c) const { function in class:BytesDictionaryMatcher
120 UStringTrieResult result = (codePointsMatched == 0) ? bt.first(transform(c)) : bt.next(transform(c));
/external/icu/icu4c/source/tools/gendict/
H A Dgendict.cpp57 { "transform", NULL, NULL, NULL, '\1', UOPT_REQUIRES_ARG, 0}, /* 8 */
89 "\t--transform the kind of transform to use (eg --transform offset-40A3,\n"
90 "\t which specifies an offset transform with constant 0x40A3)\n",
142 char transform(UChar32 c, UErrorCode &status) { function in class:DataDict
148 fprintf(stderr, "Codepoint U+%04lx out of range for --transform offset-%04lx!\n",
153 } else { // no such transform type
155 return (char)c; // it should be noted this transform type will not generally work
159 void transform(cons function in class:DataDict
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DIDNAReference.java34 public static final NamePrepTransform transform = NamePrepTransform.getInstance(); field in class:IDNAReference
37 return transform.isReady();
153 processOut = transform.prepare(srcIter,options);
303 processOut = transform.prepare(iter, options);
/external/libjpeg-turbo/
H A Dtransupp.h22 /* If you happen not to want the image transform support, disable it here */
24 #define TRANSFORMS_SUPPORTED 1 /* 0 disables transform code */
69 * Rotate/flip transform, resize, and crop can be requested together in a
71 * is specified in terms of the destination image after transform/resize.
118 JXFORM_CODE transform; /* image transform operator */ member in struct:__anon9749
123 boolean slow_hflip; /* For best performance, the JXFORM_FLIP_H transform
176 int MCU_height, JXFORM_CODE transform);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pstipple.c193 * TGSI declaration transform callback.
248 * TGSI instruction transform callback.
410 struct pstip_transform_context transform; local
426 memset(&transform, 0, sizeof(transform));
427 transform.wincoordInput = -1;
428 transform.maxInput = -1;
429 transform.texTemp = -1;
430 transform.firstInstruction = TRUE;
431 transform
[all...]
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_composite.h95 float transform[9]; member in struct:xa_picture
/external/mesa3d/src/mesa/main/
H A Dnvprogram.c748 GLenum matrix, GLenum transform)
784 switch (transform) {
792 _mesa_error(ctx, GL_INVALID_ENUM, "glTrackMatrixNV(transform)");
797 ctx->VertexProgram.TrackMatrixTransform[address / 4] = transform;
747 _mesa_TrackMatrixNV(GLenum target, GLuint address, GLenum matrix, GLenum transform) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DMethodVisitorTee.java16 package org.mockito.cglib.transform;
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
H A Dtransform.hpp376 __device__ static void transform(const SrcVal& srcVal, DstPtrTuple& dst, const OpTuple& op, int y, int x) function in struct:cv::cudev::grid_transform_detail::Unroll
382 Unroll<count - 1>::transform(srcVal, dst, op, y, x);
388 __device__ __forceinline__ static void transform(const SrcVal&, DstPtrTuple&, const OpTuple&, int, int) function in struct:cv::cudev::grid_transform_detail::Unroll
404 Unroll<tuple_size<DstPtrTuple>::value>::transform(srcVal, dst, op, y, x);
/external/opencv3/modules/viz/src/
H A Dprecomp.hpp311 vtkSmartPointer<vtkTransform> transform = vtkSmartPointer<vtkTransform>::New(); local
312 transform->SetMatrix(vtkmatrix(pose.matrix));
315 transform_filter->SetTransform(transform);
323 vtkSmartPointer<vtkTransform> transform = vtkSmartPointer<vtkTransform>::New(); local
324 transform->SetMatrix(vtkmatrix(pose.matrix));
328 transform_filter->SetTransform(transform);
/external/pdfium/third_party/freetype/src/cff/
H A Dcf2ft.c56 cf2_checkTransform( const CF2_Matrix* transform, argument
64 if ( transform->a <= 0 || transform->d <= 0 )
67 FT_ASSERT( transform->b == 0 && transform->c == 0 );
68 FT_ASSERT( transform->tx == 0 && transform->ty == 0 );
75 if ( transform->a > maxScale || transform->d > maxScale )
345 CF2_Matrix transform; local
[all...]
/external/skia/src/core/
H A DSkRRect.cpp344 bool SkRRect::transform(const SkMatrix& matrix, SkRRect* dst) const { function in class:SkRRect
359 // If transform supported 90 degree rotations (which it could), we could
/external/skia/src/gpu/
H A DGrFragmentProcessor.cpp73 void GrFragmentProcessor::addCoordTransform(const GrCoordTransform* transform) { argument
78 fCoordTransforms.push_back(transform);
79 fUsesLocalCoords = fUsesLocalCoords || transform->sourceCoords() == kLocal_GrCoordSet;
80 SkDEBUGCODE(transform->setInProcessor();)
/external/skia/tests/
H A DSkResourceCacheTest.cpp265 static void test_discarded_image(skiatest::Reporter* reporter, const SkMatrix& transform, argument
282 // draw the image (with a transform, to tickle different code paths) to ensure
284 canvas->concat(transform);
/external/v8/test/webkit/fast/js/kde/
H A Dmd5-1.js225 function transform(buf,offset) { function
343        transform(buffer, 0);
/external/vulkan-validation-layers/include/vulkan/
H A Dvk_icd.h120 VkSurfaceTransformFlagBitsKHR transform; member in struct:_VkIcdSurfaceDisplay
/external/guice/lib/build/
H A Dcglib-3.1.jar ... sf/cglib/proxy/ net/sf/cglib/reflect/ net/sf/cglib/transform/ net/sf/cglib/transform/impl/ net/sf/cglib/util/ LICENSE ...
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp94 template <class T> T transform(class Bool, T);
98 friend bool transform<>(Bool, bool);
109 template <class T> T transform(Bool b, T value) { function in namespace:test3
115 template bool transform(Bool, bool);
116 template int transform(Bool, int); // expected-note {{requested here}}
/external/drm_hwcomposer/
H A Ddrmdisplaycomposition.cpp182 std::transform(
186 std::transform(comp_layers.begin(), comp_layers.end(),
440 static void DumpTransform(uint32_t transform, std::ostringstream *out) { argument
443 if (transform == 0)
447 if (transform & DrmHwcTransform::kFlipH) {
451 if (transform & DrmHwcTransform::kFlipV) {
457 if (transform & DrmHwcTransform::kRotate90) {
463 if (transform & DrmHwcTransform::kRotate180) {
469 if (transform & DrmHwcTransform::kRotate270) {
480 if (transform
[all...]

Completed in 707 milliseconds

1234567891011>>