Searched defs:right (Results 401 - 425 of 879) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DInfoBarLayout.java29 * - A close button on the right side.
299 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
301 int width = right - left;
457 * Advances the current position to the next row and adds margins on the left, right, and top
/external/chromium_org/chrome/browser/chromeos/display/
H A Ddisplay_preferences.cc45 int right = 0; local
49 value.GetInteger(kInsetsRightKey, &right)) {
50 insets->Set(top, left, bottom, right);
61 value->SetInteger(kInsetsRightKey, insets.right());
/external/chromium_org/chrome/browser/chromeos/system/
H A Dinput_device_settings.cc156 virtual void SetPrimaryButtonRight(bool right) OVERRIDE;
231 void InputDeviceSettingsImpl::SetPrimaryButtonRight(bool right) { argument
233 settings.SetPrimaryButtonRight(right);
386 void MouseSettings::SetPrimaryButtonRight(bool right) { argument
387 primary_button_right_.Set(right);
/external/chromium_org/chrome/browser/download/
H A Ddownload_query.cc225 // greater than or equal to the same field in |right|.
229 const DownloadItem& left, const DownloadItem& right) {
231 ValueType right_value = accessor.Run(right);
334 // left item is after or before the right item. If all sorters return EQ, then
366 // Returns true if |left| sorts before |right|.
367 bool operator() (const DownloadItem* left, const DownloadItem* right);
376 const DownloadItem* left, const DownloadItem* right) {
379 switch (term->sorter.Run(*left, *right)) {
385 CHECK_NE(left->GetId(), right->GetId());
386 return left->GetId() < right
227 Compare( const base::Callback<ValueType(const DownloadItem&)>& accessor, const DownloadItem& left, const DownloadItem& right) argument
375 operator ()( const DownloadItem* left, const DownloadItem* right) argument
[all...]
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dtyped_urls_helper.cc323 const history::URLRows& right) {
324 if (left.size() != right.size())
330 for (size_t j = 0; j < right.size(); ++j) {
331 if (left[i].url() == right[j].url()) {
332 if (CheckURLRowsAreEqual(left[i], right[j])) {
368 const history::URLRow& left, const history::URLRow& right) {
369 return (left.url() == right.url()) &&
370 (left.title() == right.title()) &&
371 (left.visit_count() == right.visit_count()) &&
372 (left.typed_count() == right
322 CheckURLRowVectorsAreEqual(const history::URLRows& left, const history::URLRows& right) argument
367 CheckURLRowsAreEqual( const history::URLRow& left, const history::URLRow& right) argument
[all...]
/external/chromium_org/chrome/browser/ui/views/download/
H A Ddownload_item_view.h140 gfx::ImageSkia* right; member in struct:DownloadItemView::BodyImageSet
144 // The image set associated with the drop-down button on the right.
271 // The left and right x coordinates of the drop-down button.
/external/chromium_org/chrome/browser/web_applications/
H A Dweb_app.cc69 const WebApplicationInfo::IconInfo& right) {
70 return left.width < right.width;
68 IconPrecedes(const WebApplicationInfo::IconInfo& left, const WebApplicationInfo::IconInfo& right) argument
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_web_theme_engine.cc243 int right = irect.fRight; local
262 line(canvas, left + 1, i, right - 1, i, readOnlyColor);
275 // Draw a triangle in the bottom right corner of the control.
277 right, bottom,
278 right - triangleSize, bottom,
279 right, bottom - triangleSize,
331 int right = irect.fRight; local
340 right - quarterWidth, top + quarterHeight,
349 right - quarterWidth, top + quarterHeight,
350 right
[all...]
/external/chromium_org/remoting/codec/
H A Dvideo_encoder_vpx.cc370 rect.left(), rect.top(), rect.right(), rect.bottom())));
438 int right = (rect.right() - 1) / kMacroBlockSize; local
441 DCHECK_LT(right, active_map_width_);
446 for (int x = left; x <= right; ++x)
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBasicShapes.cpp322 static String buildInsetString(const String& top, const String& right, const String& bottom, const String& left, argument
334 bool showLeftArg = !left.isNull() && left != right;
336 bool showRightArg = !right.isNull() && (right != top || showBottomArg);
339 result.append(right);
H A DCSSBasicShapes.h158 CSSPrimitiveValue* right() const { return m_right.get(); } function in class:blink::CSSBasicShapeInset
168 void setRight(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> right) { m_right = right; } argument
172 void updateShapeSize4Values(CSSPrimitiveValue* top, CSSPrimitiveValue* right, CSSPrimitiveValue* bottom, CSSPrimitiveValue* left) argument
175 setRight(right);
H A DStylePropertySerializer.cpp114 // FIXME: Deal with cases where only some of border-(top|right|bottom|left) are specified.
427 // Assume the properties are in the usual order top, right, bottom, left.
437 StylePropertySet::PropertyReference right = m_propertySet.propertyAt(rightValueIndex); local
442 if (!top.value() || !right.value() || !bottom.value() || !left.value())
445 if (top.isInherited() && right.isInherited() && bottom.isInherited() && left.isInherited())
448 if (top.value()->isInitialValue() || right.value()->isInitialValue() || bottom.value()->isInitialValue() || left.value()->isInitialValue()) {
449 if (top.value()->isInitialValue() && right.value()->isInitialValue() && bottom.value()->isInitialValue() && left.value()->isInitialValue() && !top.isImplicit()) {
455 if (top.isImportant() != right.isImportant() || right.isImportant() != bottom.isImportant() || bottom.isImportant() != left.isImportant())
458 bool showLeft = !right
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DVisiblePosition.cpp327 // Overshot to the right.
438 VisiblePosition VisiblePosition::right(bool stayInEditableContent) const function in class:blink::VisiblePosition
445 VisiblePosition right = VisiblePosition(pos, DOWNSTREAM);
446 ASSERT(right != *this);
449 return right;
452 return honorEditingBoundaryAtOrAfter(right);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DRangeInputType.cpp365 size_t right = m_tickMarkValues.size(); local
368 ASSERT(left <= right);
369 middle = left + (right - left) / 2;
382 right = middle;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumDefault.cpp344 const int right = rect.x() + rect.width(); local
372 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight;
375 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13;
389 const int right = rect.x() + rect.width(); local
406 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight;
409 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13;
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShape.cpp150 float right = floatValueForLength(inset.right(), boxWidth); local
152 FloatRect rect(left, top, std::max<float>(boxWidth - left - right, 0), std::max<float>(boxHeight - top - bottom, 0));
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRect.h179 void setLocationAndSizeFromEdges(float left, float top, float right, float bottom) argument
182 m_size.setWidth(right - left);
H A DLayoutRect.h98 m_size.expand(box.left() + box.right(), box.top() + box.bottom());
105 m_size.shrink(box.left() + box.right(), box.top() + box.bottom());
141 // Equivalent to checking if the rect contains a 1x1 rect below and to the right of (px,py).
223 inline IntRect pixelSnappedIntRectFromEdges(LayoutUnit left, LayoutUnit top, LayoutUnit right, LayoutUnit bottom) argument
225 return IntRect(left.round(), top.round(), snapSizeToPixel(right - left, left), snapSizeToPixel(bottom - top, top));
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DRegionTracker.cpp58 // and the ceil of right/bottom?
61 int right = SkScalarFloorToInt(m_opaqueRect.fRight); local
63 return IntRect(left, top, right-left, bottom-top);
439 // horizontal is the larger of the two rectangles to the left or to the right of |rect| and inside opaqueRect.
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DClear11.cpp37 float right = 1.0f; local
45 right = std::min(right, ((scissor->x + scissor->width) / float(framebufferSize.width)) * 2.0f - 1.0f);
52 d3d11::SetPositionDepthColorVertex<T>(vertices + 2, right, bottom, depthClear, color);
53 d3d11::SetPositionDepthColorVertex<T>(vertices + 3, right, top, depthClear, color);
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dentropy_encode.cc33 HuffmanTree(int count, int16_t left, int16_t right) argument
36 index_right_or_value_(right) {
124 int left, right; local
133 right = i;
136 right = j;
143 tree[left].total_count_ + tree[right].total_count_;
145 tree[j_end].index_right_or_value_ = right;
/external/chromium_org/third_party/hwcplus/include/hardware/
H A Dhwcomposer.h53 int right; member in struct:hwc_rect
60 float right; member in struct:hwc_frect
/external/chromium_org/third_party/icu/source/common/
H A Dstringtriebuilder.cpp380 StringTrieBuilder::equalNodes(const void *left, const void *right) { argument
381 return *(const Node *)left==*(const Node *)right;
H A Ducharstriebuilder.cpp134 compareElementStrings(const void *context, const void *left, const void *right) { argument
137 const UCharsTrieElement *rightElement=static_cast<const UCharsTrieElement *>(right);
H A Duvector.cpp496 sortComparator(const void *context, const void *left, const void *right) { argument
499 UElement e2 = *static_cast<const UElement *>(right);
510 sortiComparator(const void * /*context */, const void *left, const void *right) { argument
512 const UElement *e2 = static_cast<const UElement *>(right);

Completed in 571 milliseconds

<<11121314151617181920>>