HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 526 - 550 of 4231) sorted by null

<<21222324252627282930>>

  /external/icu/icu4c/source/i18n/
rulebasedcollator.cpp 695 RuleBasedCollator::compare(const UnicodeString &left, const UnicodeString &right,
699 right.getBuffer(), right.length(), errorCode);
703 RuleBasedCollator::compare(const UnicodeString &left, const UnicodeString &right,
711 int32_t rightLength = right.length();
715 right.getBuffer(), rightLength, errorCode);
720 const UChar *right, int32_t rightLength,
723 if((left == NULL && leftLength != 0) || (right == NULL && rightLength != 0)) {
730 if(rightLength < 0) { rightLength = u_strlen(right); }
734 return doCompare(left, leftLength, right, rightLength, errorCode)
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/decorator/
DividerItemDecoration.java 68 final int right = parent.getWidth() - parent.getPaddingRight(); local
78 mDivider.setBounds(left, top, right, bottom);
94 final int right = left + mDivider.getIntrinsicHeight(); local
95 mDivider.setBounds(left, top, right, bottom);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Operation.java 40 /** The right operand expression.
80 * Set the left and right operand expressions for this operation.
84 * @param r The right expression operand.
110 XObject right = m_right.execute(xctxt, true); local
112 XObject result = operate(left, right);
114 right.detach();
123 * @param right non-null reference to the evaluated right operand.
129 public XObject operate(XObject left, XObject right)
141 /** @return the right operand of binary operation, as an Expression
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/
record_selection_dialog.css 12 padding-right: 10px;
46 float: right;
timeline_view.css 24 padding-right: 8px;
50 padding-right: 10px;
77 padding-right: 2px;
105 text-align: right;
119 margin-right: 0;
131 margin-right: 0;
162 padding-right: 4px;
222 margin-right: 7px;
  /external/chromium_org/chrome/browser/resources/options/
reset_profile_settings_overlay.css 39 padding-right: 5px;
40 text-align: right;
  /external/chromium_org/chrome/browser/resources/print_preview/common/
search_bubble.css 36 right: -1px;
49 border-right-color: transparent;
  /external/chromium_org/chrome/browser/ui/views/app_list/linux/
app_list_linux.cc 21 // broken in the order: top, left, right, bottom.
39 if (display_bounds.right() - work_area.right() > winning_margin) {
40 winning_margin = display_bounds.right() - work_area.right();
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdebug/
ttsdebug.css 12 margin-right: auto;
16 border-right: solid 1px #ccc;
  /external/chromium_org/components/dom_distiller/core/
article_entry.h 26 bool AreEntriesEqual(const ArticleEntry& left, const ArticleEntry& right);
  /external/chromium_org/content/renderer/
disambiguation_popup_helper.cc 74 int right = zoom_rect.right() - touch_point.x(); local
77 TrimEdges(&left, &right, max_size.width());
82 left + right,
  /external/chromium_org/ppapi/generators/
idl_propertynode.py 85 right = BuildNode('Right', ['Right=Right'])
86 top = BuildNode('Top', ['Left=Top', 'Right=Top'], [left, right])
89 errors += ExpectProp(top, 'Right', 'Top')
92 errors += ExpectProp(left, 'Right', 'Top')
94 errors += ExpectProp(right, 'Left', 'Top')
95 errors += ExpectProp(right, 'Right', 'Right'
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMRectReadOnly.h 23 double right() const { return std::max(m_x, m_x + m_width); } function in class:blink::DOMRectReadOnly
  /external/chromium_org/third_party/freetype/include/freetype/
ftpfr.h 112 * right :: Index of the right glyph.
131 FT_UInt right,
  /external/chromium_org/third_party/freetype/include/freetype/internal/services/
svpfr.h 42 FT_UInt right,
  /external/chromium_org/third_party/icu/source/i18n/
taiwncal.h 82 * @param right the object to be copied.
85 TaiwanCalendar& operator=(const TaiwanCalendar& right);
  /external/chromium_org/third_party/webrtc/modules/video_render/ios/
open_gles20.h 37 const float right,
video_render_ios_gles20.mm 102 window_width_ = window_rect_.right - window_rect_.left;
112 float right,
122 if (new_eagl_channel->SetStreamSettings(z_order, left, top, right, bottom) ==
192 if (window_width_ != (window_rect_.right - window_rect_.left) ||
194 window_width_ = window_rect_.right - window_rect_.left;
245 rect.right = bounds.size.width + bounds.origin.x;
286 const float right,
296 agl_channel->SetStreamSettings(0, left, top, right, bottom);
  /external/chromium_org/third_party/webrtc/modules/video_render/linux/
video_x11_render.cc 67 const float right,
89 renderChannel->Init(_window, left, top, right, bottom);
131 float& right,
143 renderChannel->GetStreamProperties(zOrder, left, top, right, bottom);
  /external/chromium_org/tools/gn/
operators.h 32 const ParseNode* right,
  /external/chromium_org/ui/base/cocoa/
appkit_utils.h 20 int right; member in struct:ui::NinePartImageIds
  /external/chromium_org/ui/gfx/
canvas_paint_win.h 52 return ps_.rcPaint.right - ps_.rcPaint.left == 0 ||
  /external/chromium_org/ui/gfx/geometry/
rect_conversions.cc 18 float max_x = rect.right();
28 float max_x = rect.right();
38 float float_max_x = rect.right();
59 float float_max_x = rect.right();
  /external/chromium_org/ui/views/controls/
focusable_border.h 27 void SetInsets(int top, int left, int bottom, int right);
  /external/chromium_org/ui/webui/resources/css/
trash.css 26 right: 8px;
57 /* The right margin is one greater due to a shadow on the trash image. */
58 margin-right: 2px;

Completed in 1572 milliseconds

<<21222324252627282930>>