Searched refs:shape (Results 1 - 25 of 161) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DBoxShapeTest.cpp72 /* The BoxShape is based on a 100x50 rectangle at 0,0. The shape-margin value is 10,
83 OwnPtr<Shape> shape = createBoxShape(RoundedRect(0, 0, 100, 50), 10); local
84 EXPECT_FALSE(shape->isEmpty());
86 EXPECT_EQ(LayoutRect(-10, -10, 120, 70), shape->shapeMarginLogicalBoundingBox());
92 EXPECT_TRUE(shape->lineOverlapsShapeMarginBounds(-9, 1));
93 EXPECT_TRUE(shape->lineOverlapsShapeMarginBounds(-10, 0));
94 EXPECT_TRUE(shape->lineOverlapsShapeMarginBounds(-10, 200));
95 EXPECT_TRUE(shape->lineOverlapsShapeMarginBounds(5, 10));
96 EXPECT_TRUE(shape->lineOverlapsShapeMarginBounds(59, 1));
98 EXPECT_FALSE(shape
128 OwnPtr<Shape> shape = createBoxShape(RoundedRect(IntRect(0, 0, 100, 100), cornerRadii), 0); local
[all...]
H A DShape.cpp105 OwnPtr<Shape> shape; local
115 shape = createCircleShape(logicalCenter, radius);
126 shape = createEllipseShape(logicalCenter, FloatSize(radiusX, radiusY));
142 shape = createPolygonShape(vertices.release(), polygon->windRule());
164 shape = createInsetShape(FloatRoundedRect(logicalRect, cornerRadii));
172 shape->m_writingMode = writingMode;
173 shape->m_margin = margin;
175 return shape.release();
234 OwnPtr<Shape> shape = createInsetShape(bounds); local
235 shape
[all...]
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
H A Dworld.js40 var shapeName = body['shape'];
67 function verifyShapeDescription(shape) {
68 if (shape['name'] == undefined) {
73 var type = shape['type'];
84 return verifyCubeDescription(shape);
88 return verifySphereDescription(shape);
92 return verifyCylinderDescription(shape);
96 return verifyConvexDescription(shape);
102 function verifyCubeDescription(shape) {
103 if (shape['w
[all...]
H A Dscene.js34 function loadShape(shape) {
35 if (shapes[shape.name] != undefined) {
36 return shapes[shape.name];
39 if (shape.type == "cube") {
40 shapes[shape.name] = new THREE.CubeGeometry(shape['wx'], shape['wy'], shape['wz']);
41 return shapes[shape.name];
44 if (shape
[all...]
H A Dscenes.js18 body.shape = 'box';
46 body.shape = 'box';
89 body.shape = 'boxX';
108 body.shape = 'boxZ';
165 body.shape = 'stick';
167 body.shape = 'tube';
169 body.shape = 'sphere';
171 body.shape = 'tri';
/external/chromium_org/chrome/browser/ui/views/apps/
H A Dshaped_app_window_targeter.cc20 SkRegion* shape = app_window_->shape(); local
21 if (!shape)
24 shape->getBoundaryPath(mask);
/external/harfbuzz_ng/
H A DAndroid.mk62 src/hb-shape.cc \
63 src/hb-shape-plan.cc \
70 src/hb-ot-shape.cc \
71 src/hb-ot-shape-complex-arabic.cc \
72 src/hb-ot-shape-complex-default.cc \
73 src/hb-ot-shape-complex-hangul.cc \
74 src/hb-ot-shape-complex-hebrew.cc \
75 src/hb-ot-shape-complex-indic.cc \
76 src/hb-ot-shape-complex-indic-table.cc \
77 src/hb-ot-shape
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
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/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:blink::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/WebKit/Source/core/html/
H A DHTMLAreaElement.idl26 [Reflect] attribute DOMString shape;
/external/speex/libspeex/
H A Dcb_search_arm4.h42 //const signed char *shape;
46 //shape = shape_cb;
93 const signed char *shape=shape_cb+k;
94 resj0 = MAC16_16(resj0,*shape,r[j-k]);
95 shape += subvect_size;
96 resj1 = MAC16_16(resj1,*shape,r[j-k]);
97 shape += subvect_size;
98 resj2 = MAC16_16(resj2,*shape,r[j-k]);
99 shape += subvect_size;
100 resj3 = MAC16_16(resj3,*shape,
[all...]
H A Dcb_search_sse.h59 VARDECL(__m128 *shape);
61 ALLOC(shape, subvect_size, __m128);
71 shape[j] = _mm_setr_ps(0.03125*_shape[j], 0.03125*_shape[subvect_size+j], 0.03125*_shape[2*subvect_size+j], 0.03125*_shape[3*subvect_size+j]);
77 resj = _mm_add_ps(resj, _mm_mul_ps(shape[k],r[j-k]));
/external/chromium_org/chrome/test/chromedriver/js/
H A Dget_element_region.js22 if (element.shape.toLowerCase() == 'rect') {
35 } else if (element.shape.toLowerCase() == 'circle') {
47 } else if (element.shape.toLowerCase() == 'poly') {
69 throw new Error('shape=' + element.shape + ' is not supported');
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_median_filter.h59 enum vl_median_filter_shape shape);
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_median_filter.h59 enum vl_median_filter_shape shape);
/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/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/harfbuzz_ng/src/
H A Dgen-arabic-table.py162 shape, items = items[0][1:-1], tuple (int (x, 16) for x in items[1:])
164 if not shape in ['initial', 'medial', 'isolated', 'final']:
177 ligatures[items][shape] = c
180 # Save shape
187 shapes[items[0]][shape] = c
196 s = [shapes[u][shape] if u in shapes and shape in shapes[u] else 0
197 for shape in ['initial', 'medial', 'final', 'isolated']]
209 for shape in ligatures[pair]:
210 c = ligatures[pair][shape]
[all...]
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DMemoryView.pyx43 Py_ssize_t shape[{{max_dims}}]
116 def __cinit__(array self, tuple shape, Py_ssize_t itemsize, format not None,
123 self.ndim = <int> len(shape)
127 raise ValueError("Empty shape tuple for cython.array")
137 # use single malloc() for both shape and strides
142 raise MemoryError("unable to allocate shape and strides.")
145 for idx, dim in enumerate(shape):
147 raise ValueError("Invalid shape in axis %d: %d." % (idx, dim))
190 info.shape = self._shape
234 cdef array array_cwrapper(tuple shape, Py_ssize_
[all...]
/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/chromium_org/ui/views/widget/desktop_aura/
H A Dx11_topmost_window_finder.cc86 ::Region shape = host->GetWindowShape();
87 if (!shape)
94 return XPointInRegion(shape, window_loc.x(), window_loc.y()) == True;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
H A Ddot.stg68 node [fontsize=11, shape = <if(useBox)>box<else>circle, fixedsize=true, width=.4<endif>]; <name>
72 node [fontsize=11, shape = <if(useBox)>polygon,sides=4,peripheries=2<else>doublecircle, fixedsize=true, width=.6<endif>]; <name>
/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));
117 ShapeClipPathOperation(PassRefPtr<BasicShape> shape) argument
119 , m_shape(shape)
/external/chromium_org/remoting/host/
H A Dshaped_desktop_capturer_unittest.cc57 // Verify that captured frame have shape.
65 ASSERT_TRUE(last_frame_->shape());
67 FakeDesktopShapeTracker::CreateShape().Equals(*last_frame_->shape()));

Completed in 1943 milliseconds

1234567