Searched defs:transform (Results 251 - 275 of 452) sorted by relevance

<<111213141516171819

/external/pixman/test/
H A Dscaling-test.c56 pixman_transform_t transform; local
168 pixman_transform_init_scale (&transform, scale_x, scale_y);
169 pixman_transform_translate (&transform, NULL, translate_x, translate_y);
170 pixman_image_set_transform (src_img, &transform);
179 pixman_transform_init_scale (&transform, mask_scale_x, mask_scale_y);
180 pixman_transform_translate (&transform, NULL, mask_translate_x, mask_translate_y);
181 pixman_image_set_transform (mask_img, &transform);
/external/skia/experimental/Intersection/
H A DConvexHull_Test.cpp106 static void transform(const Cubic& cubic, const Matrix3x2& matrix, Cubic& rotPath) { function
144 transform(cubic, matrix, rotPath);
/external/stlport/stlport/stl/
H A D_algo.h167 // transform
170 transform(_InputIter __first, _InputIter __last, _OutputIter __result, _UnaryOperation __opr) { function
178 transform(_InputIter1 __first1, _InputIter1 __last1, function
/external/chromium_org/ash/wm/overview/
H A Dwindow_selector.cc202 gfx::Transform transform; local
203 transform.Translate(0, -WindowSelector::kTextFilterBottomEdge);
204 widget->GetNativeWindow()->SetTransform(transform);
492 gfx::Transform transform; local
494 transform.Translate(0, 0);
497 transform.Translate(0, -kTextFilterBottomEdge);
501 text_filter_widget_->GetNativeWindow()->SetTransform(transform);
/external/chromium_org/ash/wm/
H A Dsession_state_animator_impl.cc39 // Returns the transform that should be applied to containers for the slow-close
43 gfx::Transform transform; local
44 transform.Translate(
47 transform.Scale(kSlowCloseSizeRatio, kSlowCloseSizeRatio);
48 return transform;
51 // Returns the transform that should be applied to containers for the fast-close
55 gfx::Transform transform; local
57 transform.Translate(floor(0.5 * root_size.width() + 0.5),
59 transform.Scale(kMinimumScale, kMinimumScale);
60 return transform;
[all...]
H A Dwindow_animations.cc99 // Recalculate the transform at restore time since the launcher item may have
149 // Reset the transform to identity when the minimize animation is completed.
365 // Set the new layer's current transform, such that the user sees a scaled
382 // Animate the new layer to the identity transform, so the window goes to
446 gfx::Transform transform; local
447 transform.Translate(-layer->bounds().width() * (scale - 1.0f) / 2,
449 transform.Scale(scale, scale);
450 layer->SetTransform(transform);
H A Dworkspace_controller_unittest.cc1473 // Do two iterations, first without any transform on |second|, and the second
1474 // time after applying some transform on |second| so that it doesn't get
1477 SCOPED_TRACE(times == 0 ? "Without transform" : "With transform");
1492 // Apply a transform on |second|. After the transform is applied, the window
1494 gfx::Transform transform; local
1495 transform.Translate(70, 40);
1496 second->SetTransform(transform);
/external/chromium_org/athena/wm/
H A Dwindow_manager_impl.cc37 const gfx::Transform& transform) {
39 window->SetTransform(transform);
288 gfx::Transform transform; local
289 transform.Translate(desired_bounds.x() - window_bounds.x(),
291 transform.Scale(desired_bounds.width() / window_bounds.width(),
301 window->SetTransform(transform);
373 gfx::Transform transform; local
374 transform.Translate(dx, 0);
375 next_window->SetTransform(transform);
394 gfx::Transform transform; local
35 SetWindowState(aura::Window* window, const gfx::Rect& bounds, const gfx::Transform& transform) argument
[all...]
/external/chromium_org/cc/quads/
H A Ddraw_polygon.cc54 const gfx::Transform& transform,
62 // Doing this mapping here is very important, since we can't just transform
68 transform, send_quad, points, &num_vertices_in_clipped_quad);
72 ApplyTransformToNormal(transform);
196 // to transform the normal with the rest of the polygon.
200 void DrawPolygon::ApplyTransformToNormal(const gfx::Transform& transform) { argument
201 // Now we use the inverse transpose of |transform| to transform the normal.
203 bool inverted = transform.GetInverse(&inverse_transform);
219 void DrawPolygon::ApplyTransform(const gfx::Transform& transform) { argument
52 DrawPolygon(DrawQuad* original_ref, const gfx::RectF& visible_content_rect, const gfx::Transform& transform, int draw_order_index) argument
228 TransformToScreenSpace(const gfx::Transform& transform) argument
[all...]
/external/chromium_org/cc/trees/
H A Docclusion_tracker.cc83 const gfx::Transform& transform) {
88 // surface after applying |transform|. If this is true, then apply |transform|
89 // to each rect within |region| in order to transform the entire Region.
92 if (!transform.Preserves2dAxisAlignment())
98 MathUtil::MapEnclosedRectWith2dAxisAlignedTransform(transform,
183 // Note carefully, not used if screen space transform is uninvertible.
79 TransformSurfaceOpaqueRegion( const SimpleEnclosedRegion& region, bool have_clip_rect, const gfx::Rect& clip_rect_in_new_target, const gfx::Transform& transform) argument
/external/chromium_org/content/browser/android/
H A Dedge_effect.cc98 const gfx::Transform& transform,
105 ui_resource_layer_->SetTransform(transform);
329 const gfx::Transform& transform) {
347 glow_->Update(glow_size, transform, glow_alpha_);
353 edge_->Update(edge_size, transform, edge_alpha_);
97 Update(const gfx::Size& size, const gfx::Transform& transform, float opacity) argument
328 ApplyToLayers(const gfx::SizeF& size, const gfx::Transform& transform) argument
/external/chromium_org/content/browser/android/in_process/
H A Dsynchronous_compositor_impl.cc120 const gfx::Transform& transform,
130 transform,
118 DemandDrawHw( gfx::Size surface_size, const gfx::Transform& transform, gfx::Rect viewport, gfx::Rect clip, gfx::Rect viewport_rect_for_tile_priority, const gfx::Transform& transform_for_tile_priority) argument
/external/chromium_org/gpu/tools/compositor_model_bench/
H A Drender_tree.cc192 !VerifyDictionaryEntry(node, "transform", base::Value::TYPE_LIST)
213 base::ListValue* transform; local
214 node->GetList("transform", &transform);
215 if (transform->GetSize() != 16) {
216 LOG(ERROR) << "4x4 transform matrix did not have 16 elements";
221 if (!VerifyListEntry(transform, i, base::Value::TYPE_DOUBLE, "Transform"))
224 transform->GetDouble(i, &el);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderSupport.cpp138 const AffineTransform& transform = current->localToParentTransform(); local
140 transform.mapRect(current->objectBoundingBox()));
141 strokeBoundingBox.unite(transform.mapRect(current->paintInvalidationRectInLocalCoordinates()));
200 // If the transform changed we need to update the text metrics (note: this also happens for layoutSizeChanged=true).
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsLayer.h146 const TransformationMatrix& transform() const { return m_transform; } function in class:blink::GraphicsLayer
/external/chromium_org/third_party/hwcplus/include/hardware/
H A Dhwcomposer.h153 uint32_t transform; member in struct:hwc_layer_1::__anon11878::__anon11879
/external/chromium_org/third_party/icu/source/tools/gendict/
H A Dgendict.cpp93 { "transform", NULL, NULL, NULL, '\1', UOPT_REQUIRES_ARG, 0}, /* 8 */
122 "\t--transform the kind of transform to use (eg --transform offset-40A3,\n"
123 "\t which specifies an offset transform with constant 0x40A3)\n",
175 char transform(UChar32 c, UErrorCode &status) { function in class:DataDict
181 fprintf(stderr, "Codepoint U+%04lx out of range for --transform offset-%04lx!\n",
186 } else { // no such transform type
188 return (char)c; // it should be noted this transform type will not generally work
192 void transform(cons function in class:DataDict
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_aapoint.c129 * TGSI declaration transform callback.
164 * TGSI instruction transform callback.
499 struct aa_transform_context transform; local
508 memset(&transform, 0, sizeof(transform));
509 transform.colorOutput = -1;
510 transform.maxInput = -1;
511 transform.maxGeneric = -1;
512 transform.colorTemp = -1;
513 transform
[all...]
H A Ddraw_pipe_pstipple.c135 * TGSI declaration transform callback.
169 * TGSI immediate declaration transform callback.
193 * TGSI instruction transform callback.
344 struct pstip_transform_context transform; local
352 memset(&transform, 0, sizeof(transform));
353 transform.wincoordInput = -1;
354 transform.maxInput = -1;
355 transform.texTemp = -1;
356 transform
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkCamera.cpp76 void SkPatch3D::transform(const SkMatrix3D& m, SkPatch3D* dst) const { function in class:SkPatch3D
354 patch.transform(fRec->fMatrix);
361 patch.transform(fRec->fMatrix);
/external/chromium_org/third_party/webrtc/base/
H A Dstringencode.cc536 size_t transform(std::string& value, size_t maxlen, const std::string& source, function in namespace:rtc
/external/chromium_org/ui/gfx/
H A Dinterpolated_transform.cc35 gfx::Transform transform;
36 SkMatrix44& m = transform.matrix();
62 *rotation = transform;
274 const gfx::Transform& transform)
276 transform_(transform) {
292 InterpolatedTransform* transform)
294 Init(pivot, transform);
299 InterpolatedTransform* transform,
303 Init(pivot, transform);
273 InterpolatedConstantTransform( const gfx::Transform& transform) argument
290 InterpolatedTransformAboutPivot( const gfx::Point& pivot, InterpolatedTransform* transform) argument
297 InterpolatedTransformAboutPivot( const gfx::Point& pivot, InterpolatedTransform* transform, float start_time, float end_time) argument
H A Dtransform_util.cc240 const Transform& transform) {
247 transform.TransformPoint(&point_transformed);
263 DCHECK(invertible) << "Non-invertible transform, cannot snap.";
278 Transform transform; local
279 transform.Translate(anchor.x() * (1 - scale),
281 transform.Scale(scale, scale);
282 return transform;
310 const Transform& transform) {
315 SkMatrix44 matrix = transform.matrix();
447 const Transform& transform,
239 CheckViewportPointMapsWithinOnePixel(const Point& point, const Transform& transform) argument
309 DecomposeTransform(DecomposedTransform* decomp, const Transform& transform) argument
446 SnapTransform(Transform* out, const Transform& transform, const Rect& viewport) argument
[all...]
/external/chromium_org/ui/keyboard/
H A Dkeyboard_controller.cc371 gfx::Transform transform; local
372 transform.Translate(0, kAnimationDistance);
373 container_->SetTransform(transform);
523 gfx::Transform transform; local
524 transform.Translate(0, kAnimationDistance);
525 container_->SetTransform(transform);
H A Dkeyboard_controller_unittest.cc552 gfx::Transform transform; local
553 transform.Translate(0, kAnimationDistance);
554 EXPECT_EQ(transform, layer->transform());
562 EXPECT_EQ(gfx::Transform(), layer->transform());
583 EXPECT_EQ(transform, layer->transform());
602 EXPECT_EQ(gfx::Transform(), layer->transform());

Completed in 8288 milliseconds

<<111213141516171819