Searched defs:top (Results 76 - 100 of 743) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/gm/
H A Dpatchgrid.cpp17 SkPoint top[4]; local
18 SkPatchUtils::getTopCubic(cubics, top);
26 SkPoint corners[4] = { bottom[0], bottom[3], top[0], top[3] };
29 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, top, paint);
33 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, top+1, paint);
46 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, top+1, paint);
/external/chromium_org/third_party/skia/include/core/
H A DSkTDStack.h61 const T& top() const { function in class:SkTDStack
66 T& top() { function in class:SkTDStack
/external/chromium_org/third_party/skia/include/gpu/
H A DGrRect.h42 void set(int16_t left, int16_t top, int16_t right, int16_t bottom) { argument
44 fTop = top;
/external/chromium_org/third_party/skia/src/core/
H A DSkBlitter_Sprite.cpp20 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top, argument
24 fTop = top;
52 const SkBitmap& source, int left, int top, SkTBlitterAllocator* allocator) {
56 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap,
79 blitter->setup(device, left, top, paint);
51 ChooseSprite(const SkBitmap& device, const SkPaint& paint, const SkBitmap& source, int left, int top, SkTBlitterAllocator* allocator) argument
H A DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
23 if (top < fTop) fTop = top;
102 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, argument
104 if (left < right && top < bottom && !this->isEmpty() && // check for empties
105 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
108 if (fTop < top) fTop = top;
149 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRenderTarget.cpp16 bool GrRenderTarget::readPixels(int left, int top, int width, int height, argument
27 left, top, width, height,
32 void GrRenderTarget::writePixels(int left, int top, int width, int height, argument
43 left, top, width, height,
/external/chromium_org/third_party/skia/src/pipe/utils/
H A DSamplePipeControllers.cpp47 int32_t top = 0; local
52 bottom = i + 1 == NumberOfTiles ? bitmap.height() : top + height;
53 rect.setLTRB(0, top, bitmap.width(), bottom);
54 top = bottom;
65 SkIntToScalar(-rect.top()));
/external/chromium_org/third_party/skia/tests/
H A DPathOpsLineIntersectionTest.cpp127 double top = SkTMin(line1[0].fY, line1[1].fY); local
130 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top);
134 double top = SkTMin(line2[0].fY, line2[1].fY); local
137 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top);
174 double top = SkTMin(line1[0].fY, line1[1].fY); local
177 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top);
183 double top local
[all...]
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_region.h50 Row(int32_t top, int32_t bottom);
53 int32_t top; member in struct:webrtc::DesktopRegion::Row
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_render_manager.cc92 const float top,
119 left, top, right,
88 AddRenderStream(const int32_t render_id, void* window, const uint32_t z_order, const float left, const float top, const float right, const float bottom) argument
/external/chromium_org/tools/perf/page_sets/tough_pepper_cases/extra_data/
H A Dtouch_drawing_plugin.cc37 int top,
41 for (int y = std::max(0, top);
42 y < std::min(image->size().height() - 1, top + height);
35 FillRect(pp::ImageData* image, int left, int top, int width, int height, uint32_t color) argument
/external/chromium_org/ui/gfx/geometry/
H A Dinsets_base.h17 Type top() const { return top_; } function in class:gfx::InsetsBase
27 // top and bottom insets.
33 void Set(Type top, Type left, Type bottom, Type right) { argument
34 top_ = top;
61 InsetsBase(Type top, Type left, Type bottom, Type right) argument
62 : top_(top),
H A Dquad_unittest.cc247 float top = 1.4f; local
250 EXPECT_EQ(RectF(left, top, right - left, bottom - top),
/external/chromium_org/ui/views/controls/
H A Dfocusable_border.cc64 void FocusableBorder::SetInsets(int top, int left, int bottom, int right) { argument
65 insets_.Set(top, left, bottom, right);
/external/chromium_org/ui/views/window/
H A Dframe_background.cc35 const gfx::ImageSkia* top,
39 top_edge_ = top;
67 // Draw the top corners and edge, scaling the corner images down if they
145 // Fill the top area.
34 SetSideImages(const gfx::ImageSkia* left, const gfx::ImageSkia* top, const gfx::ImageSkia* right, const gfx::ImageSkia* bottom) argument
/external/chromium_org/v8/src/
H A Dallocation-site-scopes.h25 Handle<AllocationSite> top() { return top_; } function in class:v8::internal::AllocationSiteContext
72 if (top().is_null()) {
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dbrowser.h18 void *top, *entries; member in struct:ui_browser
/external/mesa3d/src/glsl/
H A Ds_expression.cpp197 s_match(s_expression *top, unsigned n, s_pattern *pattern, bool partial) argument
199 s_list *list = SX_AS_LIST(top);
/external/skia/experimental/PdfViewer/src/
H A DSkTDStackNester.h137 * Return the top element.
139 const T& top() const { function in class:SkTDStackNester
145 * Return the top element.
147 T& top() { function in class:SkTDStackNester
197 // The Rec on top of the stack.
/external/skia/include/core/
H A DSkTDStack.h61 const T& top() const { function in class:SkTDStack
66 T& top() { function in class:SkTDStack
/external/skia/src/core/
H A DSkBlitter_Sprite.cpp20 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top, argument
24 fTop = top;
52 const SkBitmap& source, int left, int top, SkTBlitterAllocator* allocator) {
56 a bit of a hack, since we "could" pass in the fractional left/top for the bitmap,
79 blitter->setup(device, left, top, paint);
51 ChooseSprite(const SkBitmap& device, const SkPaint& paint, const SkBitmap& source, int left, int top, SkTBlitterAllocator* allocator) argument
H A DSkRect.cpp12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
14 if (left >= right || top >= bottom) {
20 this->set(left, top, right, bottom);
23 if (top < fTop) fTop = top;
102 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, argument
104 if (left < right && top < bottom && !this->isEmpty() && // check for empties
105 fLeft < right && left < fRight && fTop < bottom && top < fBottom)
108 if (fTop < top) fTop = top;
152 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/skia/src/gpu/
H A DGrRenderTarget.cpp16 bool GrRenderTarget::readPixels(int left, int top, int width, int height, argument
27 left, top, width, height,
32 void GrRenderTarget::writePixels(int left, int top, int width, int height, argument
43 left, top, width, height,
/external/skia/src/pipe/utils/
H A DSamplePipeControllers.cpp47 int32_t top = 0; local
52 bottom = i + 1 == NumberOfTiles ? bitmap.height() : top + height;
53 rect.setLTRB(0, top, bitmap.width(), bottom);
54 top = bottom;
65 SkIntToScalar(-rect.top()));
/external/skia/tests/
H A DPathOpsLineIntersectionTest.cpp120 double top = SkTMin(line1[0].fY, line1[1].fY); local
123 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top);
127 double top = SkTMin(line2[0].fY, line2[1].fY); local
130 ts.vertical(line1, top, bottom, line2[0].fX, line2[0].fY != top);
167 double top = SkTMin(line1[0].fY, line1[1].fY); local
170 ts.vertical(line2, top, bottom, line1[0].fX, line1[0].fY != top);
176 double top local
[all...]

Completed in 555 milliseconds

1234567891011>>