Searched defs:left (Results 126 - 150 of 1217) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRect.h37 CSSPrimitiveValue* left() const { return m_left.get(); } function in class:blink::RectBase
42 void setLeft(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> left) { m_left = left; } argument
79 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
85 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) argument
87 return "rect(" + top + ' ' + right + ' ' + bottom + ' ' + left + ')';
103 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
109 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) argument
113 result.reserveCapacity(top.length() + right.length() + bottom.length() + left.length() + 3);
115 if (right != top || bottom != top || left !
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGapRects.h31 const LayoutRect& left() const { return m_left; } function in struct:blink::GapRects
38 void unite(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); }
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBoxExtent.h47 FloatBoxExtent(float top, float right, float bottom, float left) argument
51 , m_left(left)
64 float left() const { return m_left; } function in class:blink::FloatBoxExtent
65 void setLeft(float left) { m_left = left; } argument
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
74 rect.move(-left(), -top());
75 rect.expand(left() + right(), top() + bottom());
83 m_left = std::min(m_left, other.left());
106 && a.left()
[all...]
H A DIntRectExtent.h47 IntRectExtent(int top, int right, int bottom, int left) argument
51 , m_left(left)
64 int left() const { return m_left; } function in class:blink::IntRectExtent
65 void setLeft(int left) { m_left = left; } argument
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
74 rect.move(-left(), -top());
75 rect.expand(left() + right(), top() + bottom());
90 && a.left() == b.left();
[all...]
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dhuffman.c57 int left = 1 << (len - root_bits); local
59 left -= count[len];
60 if (left <= 0) break;
62 left <<= 1;
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dlog_writer.cc29 size_t left = slice.size(); local
53 const size_t fragment_length = (left < avail) ? left : avail;
56 const bool end = (left == fragment_length);
69 left -= fragment_length;
71 } while (s.ok() && left > 0);
/external/chromium_org/third_party/libwebp/dec/
H A Dtree.c285 uint8_t* const left = dec->intra_l_; local
308 memset(left, ymode, 4 * sizeof(*left));
313 int ymode = left[y];
340 left[y] = ymode;
/external/chromium_org/third_party/skia/gm/
H A Dpatchgrid.cpp19 SkPoint left[4]; local
20 SkPatchUtils::getLeftCubic(cubics, left);
30 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, left, paint);
34 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, left+1, paint);
49 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, left+1, paint);
/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
43 fLeft = left;
/external/chromium_org/third_party/skia/src/core/
H A DSkBlitter_Sprite.cpp20 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top, argument
23 fLeft = left;
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);
22 if (left < fLeft) fLeft = left;
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)
107 if (fLeft < left) fLeft = left;
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/tests/
H A DPathOpsLineIntersectionTest.cpp113 double left = SkTMin(line1[0].fX, line1[1].fX); local
116 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
120 double left = SkTMin(line2[0].fX, line2[1].fX); local
123 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
156 double left = SkTMin(line1[0].fX, line1[1].fX); local
159 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
165 double left local
[all...]
/external/chromium_org/third_party/webrtc/common_audio/
H A Daudio_util_unittest.cc66 int16_t left[kSamplesPerChannel], right[kSamplesPerChannel]; local
67 int16_t* deinterleaved[] = {left, right};
71 ExpectArraysEq(kRefLeft, left, kSamplesPerChannel);
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_region.h34 RowSpan(int32_t left, int32_t right);
38 return left == that.left && right == that.right;
41 int32_t left; member in struct:webrtc::DesktopRegion::RowSpan
134 // Comparison functions used for std::lower_bound(). Compare left or right
140 static void AddSpanToRow(Row* row, int32_t left, int32_t right);
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_render_manager.cc91 const float left,
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/third_party/webrtc/voice_engine/test/auto_test/standard/
H A Dvolume_test.cc273 float left = -1.0; local
276 EXPECT_EQ(0, voe_volume_control_->GetOutputVolumePan(channel_, left, right));
277 EXPECT_FLOAT_EQ(1.0, left);
282 TEST_LOG("Panning left.\n");
295 float left = 0.0f; local
298 EXPECT_EQ(0, voe_volume_control_->GetOutputVolumePan(channel_, left, right));
299 EXPECT_FLOAT_EQ(0.1f, left);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dinttree.h15 struct IntervalTreeNode *left, *right, *parent; member in struct:IntervalTreeNode
26 * and check the left branch as well.
35 * created when ITTreeCreate is called. root->left should always
/external/chromium_org/third_party/zlib/
H A Dinftrees.c46 int left; /* number of prefix codes available */ local
131 left = 1;
133 left <<= 1;
134 left -= count[len];
135 if (left < 0) return -1; /* over-subscribed */
137 if (left > 0 && (type == CODES || max != 1))
270 left = (int)(1 << curr);
272 left -= count[curr + drop];
273 if (left <= 0) break;
275 left <<
[all...]
/external/chromium_org/tools/perf/page_sets/tough_pepper_cases/extra_data/
H A Dtouch_drawing_plugin.cc36 int left,
44 for (int x = std::max(0, left);
45 x < std::min(image->size().width() - 1, left + width);
35 FillRect(pp::ImageData* image, int left, int top, int width, int height, uint32_t color) argument
/external/chromium_org/ui/base/ime/
H A Dcandidate_window.cc38 const Entry& left = candidates_[i]; local
40 if (left.value != right.value ||
41 left.label != right.label ||
42 left.annotation != right.annotation ||
43 left.description_title != right.description_title ||
44 left.description_body != right.description_body)
/external/chromium_org/ui/gfx/geometry/
H A Dinsets_base.h18 Type left() const { return left_; } function in class:gfx::InsetsBase
23 // left and right insets.
33 void Set(Type top, Type left, Type bottom, Type right) { argument
35 left_ = left;
61 InsetsBase(Type top, Type left, Type bottom, Type right) argument
63 left_(left),
H A Dquad_unittest.cc246 float left = -0.7f; 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.cc34 void FrameBackground::SetSideImages(const gfx::ImageSkia* left, argument
38 left_edge_ = left;

Completed in 1378 milliseconds

1234567891011>>