Searched defs:shape (Results 1 - 25 of 68) sorted by relevance

123

/external/chromium_org/chrome/browser/ui/views/apps/
H A Dshaped_app_window_targeter.cc20 SkRegion* shape = app_window_->shape(); local
21 return shape ? shape->getBoundaryPath(mask) : false;
H A Dchrome_native_app_window_views.h30 SkRegion* shape() { return shape_.get(); } function in class:ChromeNativeAppWindowViews
90 // Custom shape of the window. If this is not set then the window has a
91 // default shape, usually rectangular.
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableShapeValue.cpp45 const BasicShape* fromShape = this->m_shape->shape();
46 const BasicShape* toShape = shapeValue->m_shape->shape();
57 const BasicShape* fromShape = this->m_shape->shape();
58 const BasicShape* toShape = shapeValue->m_shape->shape();
64 const ShapeValue* shape = toAnimatableShapeValue(value)->m_shape.get(); local
65 return m_shape == shape || (m_shape && shape && *m_shape == *shape);
H A DAnimatableShapeValue.h42 static PassRefPtrWillBeRawPtr<AnimatableShapeValue> create(ShapeValue* shape) argument
44 return adoptRefWillBeNoop(new AnimatableShapeValue(shape));
55 AnimatableShapeValue(ShapeValue* shape) argument
56 : m_shape(shape)
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DBoxShapeTest.cpp74 /* The BoxShape is based on a 100x50 rectangle at 0,0. The shape-margin value is 10,
85 OwnPtr<Shape> shape = createBoxShape(RoundedRect(0, 0, 100, 50), 10); local
86 EXPECT_FALSE(shape->isEmpty());
88 EXPECT_EQ(LayoutRect(-10, -10, 120, 70), shape->shapeMarginLogicalBoundingBox());
94 EXPECT_TRUE(shape->lineOverlapsShapeMarginBounds(-9, 1));
95 EXPECT_TRUE(shape->lineOverlapsShapeMarginBounds(-10, 0));
96 EXPECT_TRUE(shape->lineOverlapsShapeMarginBounds(-10, 200));
97 EXPECT_TRUE(shape->lineOverlapsShapeMarginBounds(5, 10));
98 EXPECT_TRUE(shape->lineOverlapsShapeMarginBounds(59, 1));
100 EXPECT_FALSE(shape
130 OwnPtr<Shape> shape = createBoxShape(RoundedRect(IntRect(0, 0, 100, 100), cornerRadii), 0); local
[all...]
H A DShape.h59 // that will fit within or around a shape. The line is defined by a pair of logical Y coordinates and the
66 Path shape; member in struct:WebCore::Shape::DisplayPaths
/external/chromium_org/third_party/WebKit/Source/core/animation/interpolation/
H A DDeferredLegacyStyleInterpolation.cpp139 bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const CSSBasicShape& shape) argument
141 // FIXME: Should determine the specific shape, and inspect the members.
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceSolidColor.cpp84 void RenderSVGResourceSolidColor::postApplyResource(RenderObject*, GraphicsContext*& context, unsigned short resourceMode, const Path* path, const RenderSVGShape* shape) argument
92 else if (shape)
93 shape->fillShape(context);
98 else if (shape)
99 shape->strokeShape(context);
H A DRenderSVGResourceGradient.cpp132 void RenderSVGResourceGradient::postApplyResource(RenderObject*, GraphicsContext*& context, unsigned short resourceMode, const Path* path, const RenderSVGShape* shape) argument
140 else if (shape)
141 shape->fillShape(context);
146 else if (shape)
147 shape->strokeShape(context);
H A DRenderSVGResourcePattern.cpp174 void RenderSVGResourcePattern::postApplyResource(RenderObject*, GraphicsContext*& context, unsigned short resourceMode, const Path* path, const RenderSVGShape* shape) argument
182 else if (shape)
183 shape->fillShape(context);
188 else if (shape)
189 shape->strokeShape(context);
/external/chromium_org/remoting/client/
H A Dframe_consumer_proxy.cc28 const webrtc::DesktopRegion& shape) {
32 view_size, clip_area, buffer, region, shape));
37 frame_consumer_->ApplyBuffer(view_size, clip_area, buffer, region, shape);
24 ApplyBuffer(const webrtc::DesktopSize& view_size, const webrtc::DesktopRect& clip_area, webrtc::DesktopFrame* buffer, const webrtc::DesktopRegion& region, const webrtc::DesktopRegion& shape) argument
/external/chromium_org/remoting/ios/bridge/
H A Dframe_consumer_bridge.cc41 const webrtc::DesktopRegion& shape) {
37 ApplyBuffer(const webrtc::DesktopSize& view_size, const webrtc::DesktopRect& clip_area, webrtc::DesktopFrame* buffer, const webrtc::DesktopRegion& region, const webrtc::DesktopRegion& shape) argument
/external/chromium_org/remoting/client/jni/
H A Djni_frame_consumer.cc49 const webrtc::DesktopRegion& shape) {
45 ApplyBuffer(const webrtc::DesktopSize& view_size, const webrtc::DesktopRect& clip_area, webrtc::DesktopFrame* buffer, const webrtc::DesktopRegion& region, const webrtc::DesktopRegion& shape) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShapeValue.h50 static PassRefPtr<ShapeValue> createShapeValue(PassRefPtr<BasicShape> shape, CSSBoxType cssBox) argument
52 return adoptRef(new ShapeValue(shape, cssBox));
66 BasicShape* shape() const { return m_shape.get(); } function in class:WebCore::ShapeValue
88 ShapeValue(PassRefPtr<BasicShape> shape, CSSBoxType cssBox) argument
90 , m_shape(shape)
125 return shape() == other.shape() && cssBox() == other.cssBox();
/external/chromium_org/third_party/skia/gm/
H A Dnested.cpp47 static void AddShape(SkPath* path, const SkRect& rect, Shapes shape, SkPath::Direction dir) { argument
48 switch (shape) {
H A Dmixedxfermodes.cpp38 int shape = random->nextULessThan(5); local
39 switch (shape) {
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_frame.h57 // Optional shape for the frame. Frames may be shaped e.g. if
59 const DesktopRegion* shape() const { return shape_.get(); } function in class:webrtc::DesktopFrame
60 void set_shape(DesktopRegion* shape) { shape_.reset(shape); } argument
/external/jemalloc/test/unit/
H A Dmath.c309 * shape=[0.5..3.0] increment=0.5).
356 double shape = pt_gamma_shape[i]; local
357 double ln_gamma_shape = ln_gamma(shape);
360 assert_true(double_eq_rel(pt_gamma(p, shape, 1.0,
372 double shape = 1.0; local
373 double ln_gamma_shape = ln_gamma(shape);
376 pt_gamma(0.5, shape, 1.0, ln_gamma_shape) * 10.0,
377 pt_gamma(0.5, shape, 10.0, ln_gamma_shape), MAX_REL_ERR,
/external/skia/gm/
H A Dnested.cpp47 static void AddShape(SkPath* path, const SkRect& rect, Shapes shape, SkPath::Direction dir) { argument
48 switch (shape) {
/external/chromium_org/cc/trees/
H A Dlayer_sorter.h58 LayerShape shape; member in struct:cc::GraphNode
/external/chromium_org/remoting/client/plugin/
H A Dpepper_view.cc173 const webrtc::DesktopRegion& shape) {
190 instance_->SetDesktopShape(shape);
169 ApplyBuffer(const webrtc::DesktopSize& view_size, const webrtc::DesktopRect& clip_area, webrtc::DesktopFrame* buffer, const webrtc::DesktopRegion& region, const webrtc::DesktopRegion& shape) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAreaElement.cpp128 // If element omits the shape attribute, select shape based on number of coordinates.
129 Shape shape = m_shape; local
130 if (shape == Unknown) {
132 shape = Circle;
134 shape = Rect;
136 shape = Poly;
140 switch (shape) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DClipPathOperation.h97 static PassRefPtr<ShapeClipPathOperation> create(PassRefPtr<BasicShape> shape) argument
99 return adoptRef(new ShapeClipPathOperation(shape));
116 ShapeClipPathOperation(PassRefPtr<BasicShape> shape) argument
118 , m_shape(shape)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_median_filter.c158 generate_offsets(enum vl_median_filter_shape shape, unsigned size, argument
170 switch(shape) {
194 switch(shape) {
240 enum vl_median_filter_shape shape)
303 generate_offsets(shape, size, &offsets, &num_offsets);
238 vl_median_filter_init(struct vl_median_filter *filter, struct pipe_context *pipe, unsigned width, unsigned height, unsigned size, enum vl_median_filter_shape shape) argument
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_median_filter.c158 generate_offsets(enum vl_median_filter_shape shape, unsigned size, argument
170 switch(shape) {
194 switch(shape) {
240 enum vl_median_filter_shape shape)
303 generate_offsets(shape, size, &offsets, &num_offsets);
238 vl_median_filter_init(struct vl_median_filter *filter, struct pipe_context *pipe, unsigned width, unsigned height, unsigned size, enum vl_median_filter_shape shape) argument

Completed in 528 milliseconds

123