Searched defs:transform (Results 76 - 100 of 452) sorted by relevance

1234567891011>>

/external/chromium_org/athena/wm/
H A Dtitle_drag_controller.cc54 gfx::Transform transform; local
55 transform.Translate(0, complete ? window->bounds().height() : 0);
56 window->SetTransform(transform);
118 gfx::Transform transform; local
119 transform.Translate(0, std::max(0.f, distance.y()));
120 window->SetTransform(transform);
/external/chromium_org/cc/animation/
H A Danimation_events.h13 #include "ui/gfx/transform.h"
33 gfx::Transform transform; member in struct:cc::AnimationEvent
H A Dkeyframed_animation_curve_unittest.cc17 void ExpectTranslateX(SkMScalar translate_x, const gfx::Transform& transform) { argument
18 EXPECT_FLOAT_EQ(translate_x, transform.matrix().get(0, 3));
192 // Tests that a transform animation with one keyframe works as expected.
208 // Tests that a transform animation with two keyframes works as expected.
228 // Tests that a transform animation with three keyframes works as expected.
253 // Tests that a transform animation with multiple keys at a given time works
/external/chromium_org/cc/quads/
H A Ddraw_polygon_unittest.cc11 #include "ui/gfx/transform.h"
173 gfx::Transform transform; local
174 transform.RotateAboutYAxis(45.0);
175 // This would transform the vertices as well, but we are transforming a
178 polygon_a.TransformToScreenSpace(transform);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerReflectionInfo.cpp94 // Map in our transform.
95 TransformOperations transform; local
98 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
100 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
102 transform.operations().append(ScaleTransformOperation::create(1.0, -1.0, ScaleTransformOperation::Scale));
106 transform.operations().append(ScaleTransformOperation::create(1.0, -1.0, ScaleTransformOperation::Scale));
107 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
109 transform.operations().append(TranslateTransformOperation::create(Length(0, Fixed),
114 transform.operations().append(TranslateTransformOperation::create(Length(100., Percent),
116 transform
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dwork_unit.py111 def transform(self, verbose=False, test_parse=False, test_types=False): member in class:WorkUnit
114 self.node.transform(verbose, test_parse, test_types)
/external/chromium_org/ui/app_list/views/
H A Dtop_icon_animation_view.cc54 gfx::Transform transform; local
55 transform.Translate(scaled_rect_.x() - layer()->bounds().x(),
57 transform.Scale(kIconTransformScale, kIconTransformScale);
61 layer()->SetTransform(transform);
71 layer()->SetTransform(open_folder_ ? gfx::Transform() : transform);
/external/chromium_org/ui/compositor/
H A Dlayer_animation_element_unittest.cc17 #include "ui/gfx/transform.h"
66 CheckApproximatelyEqual(target_transform, target_value.transform);
71 gfx::Transform transform; local
75 LayerAnimationElement::CreateTransformElement(transform, delta));
78 LayerAnimationElement::CreateInverseTransformElement(transform,
85 gfx::Transform transform; local
91 LayerAnimationElement::CreateTransformElement(transform, delta));
94 LayerAnimationElement::CreateInverseTransformElement(transform,
105 gfx::Transform identity, transform; local
107 transform
[all...]
/external/chromium_org/ui/gl/
H A Dgl_image_surface_texture.cc86 OverlayTransform transform,
84 ScheduleOverlayPlane(gfx::AcceleratedWidget widget, int z_order, OverlayTransform transform, const Rect& bounds_rect, const RectF& crop_rect) argument
/external/chromium_org/ui/views/controls/
H A Dslide_out_view.cc9 #include "ui/gfx/transform.h"
48 gfx::Transform transform; local
49 transform.Translate(gesture_scroll_amount_, 0.0);
50 layer()->SetTransform(transform);
86 gfx::Transform transform; local
87 transform.Translate(direction == SLIDE_LEFT ? -width() : width(), 0.0);
88 layer()->SetTransform(transform);
/external/javassist/src/main/javassist/convert/
H A DTransformFieldAccess.java56 public int transform(CtClass clazz, int pos, method in class:TransformFieldAccess
H A DTransformNew.java50 public int transform(CtClass clazz, int pos, CodeIterator iterator, method in class:TransformNew
H A DTransformNewClass.java46 public int transform(CtClass clazz, int pos, CodeIterator iterator, method in class:TransformNewClass
H A DTransformer.java50 public abstract int transform(CtClass clazz, int pos, CodeIterator it, method in class:Transformer
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DAbstractClassLoader.java16 package org.mockito.cglib.transform;
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dimage_view.js557 * @param {HTMLCanvasElement} element The element to transform.
572 element.style.webkitTransform = opt_effect.transform(element, viewport);
702 ImageView.Effect.prototype.transform = function(element, viewport) {
727 ImageView.Effect.None.prototype.transform = function(element, viewport) {
761 ImageView.Effect.Slide.prototype.transform = function(element, viewport) {
791 ImageView.Effect.Zoom.prototype.transform = function(element, viewport) {
816 ImageView.Effect.ZoomToScreen.prototype.transform = function(
839 ImageView.Effect.Rotate.prototype.transform = function(element, viewport) {
/external/chromium_org/ash/host/
H A Dash_window_tree_host_ozone.cc13 #include "ui/gfx/transform.h"
33 virtual void SetRootTransform(const gfx::Transform& transform) OVERRIDE;
74 void AshWindowTreeHostOzone::SetRootTransform(const gfx::Transform& transform) { argument
75 transformer_helper_.SetTransform(transform);
H A Dtransformer_helper.cc17 #include "ui/gfx/transform.h"
26 const gfx::Transform& transform)
27 : root_window_(root_window), transform_(transform) {}
71 void TransformerHelper::SetTransform(const gfx::Transform& transform) { argument
73 ash_host_->AsWindowTreeHost()->window(), transform));
92 gfx::Transform transform; local
93 transform.Scale(scale, scale);
94 transform *= transformer_->GetTransform();
95 return transform;
101 gfx::Transform transform; local
25 SimpleRootWindowTransformer(const aura::Window* root_window, const gfx::Transform& transform) argument
[all...]
/external/chromium_org/ash/system/tray/
H A Dtray_item_view.cc115 gfx::Transform transform; local
118 transform.Translate(0, animation->CurrentValueBetween(
121 transform.Translate(animation->CurrentValueBetween(
124 transform.Scale(animation->GetCurrentValue(),
126 layer()->SetTransform(transform);
/external/chromium_org/cc/blink/
H A Dweb_layer_impl_fixed_bounds.cc52 gfx::Transform transform; local
53 transform.matrix() = matrix;
54 SetTransformInternal(transform);
57 SkMatrix44 WebLayerImplFixedBounds::transform() const { function in class:cc_blink::WebLayerImplFixedBounds
69 const gfx::Transform& transform) {
70 if (original_transform_ != transform) {
71 original_transform_ = transform;
79 // For now fall back to non-fixed bounds for non-zero transform origin.
90 // Apply bounds scale (bounds/fixed_bounds) over original transform.
68 SetTransformInternal( const gfx::Transform& transform) argument
H A Dweb_layer_impl_fixed_bounds_unittest.cc29 EXPECT_EQ(gfx::Transform(), layer->layer()->transform());
32 gfx::Point3F TransformPoint(const gfx::Transform& transform, argument
35 transform.TransformPoint(&result);
47 EXPECT_TRUE(layer->transform().isIdentity());
55 // Test if the bounds scale is correctly applied in transform.
58 TransformPoint(layer->layer()->transform(), original_point));
81 const gfx::Transform& transform) {
96 fixed_bounds_layer->setTransform(transform.matrix());
103 normal_layer->setTransform(transform.matrix());
165 gfx::Transform transform; local
80 CompareFixedBoundsLayerAndNormalLayer(const WebFloatPoint& anchor_point, const gfx::Transform& transform) argument
[all...]
/external/chromium_org/cc/test/
H A Danimation_test_common.h81 virtual void OnTransformAnimated(const gfx::Transform& transform) OVERRIDE;
89 const gfx::Transform& transform() const { return transform_; } function in class:cc::FakeLayerAnimationValueObserver
H A Dlayer_tree_host_common_test.cc24 const gfx::Transform& transform,
31 transform,
41 const gfx::Transform& transform,
48 transform,
22 SetLayerPropertiesForTesting( Layer* layer, const gfx::Transform& transform, const gfx::Point3F& transform_origin, const gfx::PointF& position, const gfx::Size& bounds, bool flatten_transform, bool is_3d_sorted) argument
39 SetLayerPropertiesForTesting( LayerImpl* layer, const gfx::Transform& transform, const gfx::Point3F& transform_origin, const gfx::PointF& position, const gfx::Size& bounds, bool flatten_transform, bool is_3d_sorted) argument
H A Dlayer_tree_host_common_test.h37 const gfx::Transform& transform,
43 layer->SetTransform(transform);
52 const gfx::Transform& transform,
60 const gfx::Transform& transform,
35 SetLayerPropertiesForTestingInternal( LayerType* layer, const gfx::Transform& transform, const gfx::Point3F& transform_origin, const gfx::PointF& position, const gfx::Size& bounds, bool flatten_transform, bool is_3d_sorted) argument
H A Drender_pass_test_utils.cc68 const gfx::Transform& transform) {
70 shared_state->SetAll(transform,
113 gfx::Transform transform) {
116 shared_state->SetAll(transform,
65 AddTransformedQuad(TestRenderPass* pass, const gfx::Rect& rect, SkColor color, const gfx::Transform& transform) argument
109 AddRenderPassQuad(TestRenderPass* to_pass, TestRenderPass* contributing_pass, ResourceProvider::ResourceId mask_resource_id, const FilterOperations& filters, gfx::Transform transform) argument

Completed in 832 milliseconds

1234567891011>>