Searched defs:bottom (Results 201 - 225 of 413) sorted by path

1234567891011>>

/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGCircle.cpp30 SkScalar left, top, right, bottom; local
34 bottom = cy + r;
42 sprintf(scratch, "%g", SkScalarToDouble(bottom));
43 parser._addAttribute("bottom", scratch);
H A DSkSVGEllipse.cpp32 SkScalar left, top, right, bottom; local
36 bottom = cy + ry;
44 sprintf(scratch, "%g", SkScalarToDouble(bottom));
45 parser._addAttribute("bottom", scratch);
/external/chromium_org/third_party/skia/src/utils/
H A DSkCanvasStateUtils.cpp45 int32_t left, top, right, bottom; member in struct:ClipRect
286 state.clipRects[i].bottom),
H A DSkPatchUtils.cpp167 // Level of detail per axis, based on the larger side between top and bottom or left and right
265 SkPoint bottom = fBottom.next(), top = fTop.next(); local
274 SkPoint s0 = SkPoint::Make((1.0f - v) * top.x() + v * bottom.x(),
275 (1.0f - v) * top.y() + v * bottom.y());
H A DSkTextureCompressor_ASTC.cpp148 // Output the 16 bytes stored in top and bottom and advance the pointer. The bytes
151 static inline void send_packing(uint8_t** dst, const uint64_t top, const uint64_t bottom) { argument
154 dst64[1] = bottom;
231 uint64_t bottom = 0; local
235 bottom |= static_cast<uint64_t>(index) << (61-(idx*3));
238 // index 21 straddles top and bottom
241 bottom |= index & 1;
251 uint64_t t = (bottom ^ (bottom >> 2)) & 0x2492492492492492ULL;
252 bottom
[all...]
/external/chromium_org/third_party/skia/src/views/
H A DSkTextBox.cpp147 void SkTextBox::setBox(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
149 fBox.set(left, top, right, bottom);
/external/chromium_org/third_party/skia/tests/
H A DCanvasStateHelpers.cpp17 float right, float bottom, int32_t spacer) {
22 SkRect rect = SkRect::MakeLTRB(left, top, right, bottom);
29 float left, float top, float right, float bottom, int32_t spacer) {
34 complex_layers_draw(canvas, left, top, right, bottom, spacer);
40 int32_t right, int32_t bottom, int32_t clipOp, const SkRegion& localRegion) {
43 SkIntToScalar(right), SkIntToScalar(bottom));
53 int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp,
67 complex_clips_draw(canvas, left, top, right, bottom, clipOp, localRegion);
16 complex_layers_draw(SkCanvas* canvas, float left, float top, float right, float bottom, int32_t spacer) argument
28 complex_layers_draw_from_canvas_state(SkCanvasState* state, float left, float top, float right, float bottom, int32_t spacer) argument
39 complex_clips_draw(SkCanvas* canvas, int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp, const SkRegion& localRegion) argument
52 complex_clips_draw_from_canvas_state(SkCanvasState* state, int32_t left, int32_t top, int32_t right, int32_t bottom, int32_t clipOp, int32_t regionRects, int32_t* rectCoords) argument
H A DPathOpsCubicLineIntersectionTest.cpp98 double bottom = line[1].fY; local
99 flipped = top > bottom;
101 SkTSwap<double>(top, bottom);
103 result = intersections.vertical(cubic, top, bottom, line[0].fX, flipped);
H A DPathOpsLineIntersectionTest.cpp128 double bottom = SkTMax(line1[0].fY, line1[1].fY); local
130 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top);
135 double bottom = SkTMax(line2[0].fY, line2[1].fY); local
137 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top);
175 double bottom = SkTMax(line1[0].fY, line1[1].fY); local
177 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top);
184 double bottom = SkTMax(line2[0].fY, line2[1].fY); local
186 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top);
H A DPathOpsQuadLineIntersectionTest.cpp37 double bottom = line[1].fY; local
38 flipped = top > bottom;
40 SkTSwap<double>(top, bottom);
42 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped);
H A DPathOpsQuadLineIntersectionThreadedTest.cpp20 double bottom = line[1].fY; local
21 flipped = top > bottom;
23 SkTSwap<double>(top, bottom);
25 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped);
/external/chromium_org/third_party/skia/tools/
H A Dskimage_main.cpp195 int32_t bottom = rand->nextULessThan(maxY); local
196 SkIRect rect = SkIRect::MakeLTRB(left, top, right, bottom);
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
H A DVideoEngine.java77 float right, float bottom);
75 addRenderer(int channel, Object glSurface, int zOrder, float left, float top, float right, float bottom) argument
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.h91 int32_t right, int32_t bottom) {
92 return DesktopRect(left, top, right, bottom);
104 int32_t bottom() const { return bottom_; } function in class:webrtc::DesktopRect
132 DesktopRect(int32_t left, int32_t top, int32_t right, int32_t bottom) argument
133 : left_(left), top_(top), right_(right), bottom_(bottom) {
90 MakeLTRB(int32_t left, int32_t top, int32_t right, int32_t bottom) argument
H A Ddesktop_region.cc23 DesktopRegion::Row::Row(int32_t top, int32_t bottom) argument
24 : top(top), bottom(bottom) {
66 it1->second->bottom != it2->second->bottom ||
93 // we iterate over the rows until it reaches |rect.bottom()|.
99 while (top < rect.bottom()) {
103 int32_t bottom = rect.bottom(); local
104 if (row != rows_.end() && row->second->top < bottom)
203 int32_t bottom = std::min(it1->second->bottom, it2->second->bottom); local
326 int bottom = row_b->second->bottom; local
553 int bottom; local
[all...]
H A Ddesktop_region.h50 Row(int32_t top, int32_t bottom);
54 int32_t bottom; member in struct:webrtc::DesktopRegion::Row
59 // Type used to store list of rows in the region. The bottom position of row
H A Ddiffer.cc28 // One additional row/column is added as a boundary on the right & bottom.
54 // Calc size of partial blocks which may be present on right and bottom edge.
165 uint8_t* bottom = diff_info; local
169 bottom += diff_info_stride;
170 right = bottom;
182 right = bottom;
H A Dscreen_capturer_helper.cc99 int bottom = UpToMultiple(it.rect().bottom(), grid_size, grid_size_mask); local
100 result->AddRect(DesktopRect::MakeLTRB(left, top, right, bottom));
/external/chromium_org/third_party/webrtc/modules/media_file/source/
H A Davi_file.cc99 rcFrame.bottom = 0;
886 _videoStreamHeader.rcFrame.bottom-_videoStreamHeader.rcFrame.top);
960 _bytesWritten += PutLE16(_videoStreamHeader.rcFrame.bottom);
1083 _bytesWritten += PutLE16(_audioStreamHeader.rcFrame.bottom);
1479 uint16_t bottom; local
1480 _bytesRead += GetLE16(bottom);
1481 tmpStreamHeader.rcFrame.bottom = bottom;
H A Davi_file.h47 int16_t bottom; member in struct:webrtc::AVISTREAMHEADER::__anon15951
/external/chromium_org/third_party/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
H A DViESurfaceRenderer.java56 dstRect.bottom = (int)(dstRect.top + dstBottomScale * dstHeight);
70 " srcRect.bottom:" + srcRect.bottom +
74 " dstRect.bottom:" + dstRect.bottom);
82 changeDestRect(dst.right - dst.left, dst.bottom - dst.top);
87 " dst.bottom:" + dst.bottom +
91 " srcRect.bottom:" + srcRect.bottom
134 SetCoordinates(float left, float top, float right, float bottom) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/video_render/android/
H A Dvideo_render_android_impl.cc89 const float bottom) {
104 right, bottom, *this);
137 float& bottom) const {
296 const float /*bottom*/) {
314 const float bottom) {
327 const float rigth, const float bottom) {
338 const float bottom) {
85 AddIncomingRenderStream(const uint32_t streamId, const uint32_t zOrder, const float left, const float top, const float right, const float bottom) argument
308 ConfigureRenderer( const uint32_t streamId, const unsigned int zOrder, const float left, const float top, const float right, const float bottom) argument
320 SetText( const uint8_t textId, const uint8_t* text, const int32_t textLength, const uint32_t textColorRef, const uint32_t backgroundColorRef, const float left, const float top, const float rigth, const float bottom) argument
333 SetBitmap(const void* bitMap, const uint8_t pictureId, const void* colorKey, const float left, const float top, const float right, const float bottom) argument
H A Dvideo_render_android_native_opengl2.cc219 const float bottom,
226 if (stream && stream->Init(zOrder, left, top, right, bottom) == 0)
287 const float bottom)
376 if (_openGLRenderer.SetCoordinates(zOrder, left, top, right, bottom) != 0) {
213 CreateAndroidRenderChannel( int32_t streamId, int32_t zOrder, const float left, const float top, const float right, const float bottom, VideoRenderAndroid& renderer) argument
283 Init(int32_t zOrder, const float left, const float top, const float right, const float bottom) argument
H A Dvideo_render_android_surface_view.cc208 const float bottom,
218 if(stream && stream->Init(zOrder, left, top, right, bottom) == 0)
292 const float bottom) {
310 (bottom > 1 || bottom < 0) ||
391 left, top, right, bottom);
202 CreateAndroidRenderChannel( int32_t streamId, int32_t zOrder, const float left, const float top, const float right, const float bottom, VideoRenderAndroid& renderer) argument
287 Init( int32_t , const float left, const float top, const float right, const float bottom) argument
H A Dvideo_render_opengles20.cc180 const float bottom) {
182 (bottom > 1 || bottom < 0) || (left > 1 || left < 0)) {
196 _vertices[1] = -1 * (2 * bottom) + 1;
201 _vertices[6] = -1 * (2 * bottom) + 1;
176 SetCoordinates(int32_t zOrder, const float left, const float top, const float right, const float bottom) argument

Completed in 8019 milliseconds

1234567891011>>