Searched defs:right (Results 101 - 125 of 879) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DUnaryOperation.java104 * @param right non-null reference to the evaluated right operand.
110 public abstract XObject operate(XObject right) argument
/external/blktrace/
H A Drbtree.c27 struct rb_node *right = node->rb_right; local
30 if ((node->rb_right = right->rb_left))
31 rb_set_parent(right->rb_left, node);
32 right->rb_left = node;
34 rb_set_parent(right, parent);
39 parent->rb_left = right;
41 parent->rb_right = right;
44 root->rb_node = right;
45 rb_set_parent(node, right);
323 /* If we have a right
[all...]
/external/chromium_org/cc/layers/
H A Dsolid_color_layer_impl.cc41 int right = visible_content_rect.right(); local
43 for (int x = visible_content_rect.x(); x < visible_content_rect.right();
49 std::min(right - x, kSolidQuadTileSize),
/external/chromium_org/cc/output/
H A Dfilter_operations_unittest.cc17 int top, right, bottom, left; local
18 top = right = bottom = left = 0;
19 ops.GetOutsets(&top, &right, &bottom, &left);
21 EXPECT_EQ(57, right);
29 int top, right, bottom, left; local
30 top = right = bottom = left = 0;
31 ops.GetOutsets(&top, &right, &bottom, &left);
33 EXPECT_EQ(60, right);
/external/chromium_org/chrome/browser/chromeos/system/
H A Dfake_input_device_settings.cc71 void FakeInputDeviceSettings::SetPrimaryButtonRight(bool right) { argument
73 settings.SetPrimaryButtonRight(right);
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_backend_test_util.cc23 const FileDetails& right) {
28 for (int i = 0; i < right.parent_folder_ids_size(); ++i)
32 EXPECT_EQ(left.title(), right.title());
33 EXPECT_EQ(left.file_kind(), right.file_kind());
34 EXPECT_EQ(left.md5(), right.md5());
35 EXPECT_EQ(left.etag(), right.etag());
36 EXPECT_EQ(left.creation_time(), right.creation_time());
37 EXPECT_EQ(left.modification_time(), right.modification_time());
38 EXPECT_EQ(left.missing(), right.missing());
39 EXPECT_EQ(left.change_id(), right
22 ExpectEquivalentDetails(const FileDetails& left, const FileDetails& right) argument
42 ExpectEquivalentMetadata(const FileMetadata& left, const FileMetadata& right) argument
48 ExpectEquivalentTrackers(const FileTracker& left, const FileTracker& right) argument
[all...]
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_positioner.cc28 int right,
31 work_area.Inset(left, top, right, bottom);
73 anchor = gfx::Point(work_area.right(), screen_rect.y());
99 gfx::Point(work_area.right(), work_area.y() + work_area.height() / 2);
125 anchor = gfx::Point(work_area.right(), cursor.y());
152 // right, and neither will |shelf_rect|.
165 else if (shelf_rect.right() == screen_rect.right())
182 return std::max(0, work_area.right() - cursor.x());
26 WorkAreaInset(int left, int top, int right, int bottom) argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DInputMethodManagerWrapper.java79 public void updateCursor(View view, int left, int top, int right, int bottom) { argument
82 getInputMethodManager().updateCursor(view, left, top, right, bottom);
/external/chromium_org/mojo/public/cpp/bindings/tests/
H A Dtype_conversion_unittest.cc15 int32_t right; member in struct:mojo::__anon8784::RedmondRect
49 rect->width = input.right - input.left;
61 rect.right = input->x + input->width;
141 EXPECT_EQ(60, rr.right);
201 EXPECT_EQ(redmond_region.rects[i].right, redmond_region2.rects[i].right);
/external/chromium_org/pdf/pdfium/
H A Dpdfium_range.cc50 double left, top, right, bottom; local
51 FPDFText_GetRect(page_->GetTextPage(), i, &left, &top, &right, &bottom);
53 page_->PageToScreen(offset, zoom, left, top, right, bottom, rotation));
/external/chromium_org/printing/
H A Dpage_setup.h29 int right; member in class:printing::PageMargins
/external/chromium_org/remoting/host/
H A Dchromoting_param_traits.cc67 m->WriteInt(p.right());
75 int left, right, top, bottom; local
77 !m->ReadInt(iter, &right) || !m->ReadInt(iter, &bottom)) {
80 *r = webrtc::DesktopRect::MakeLTRB(left, top, right, bottom);
88 p.left(), p.top(), p.right(), p.bottom()));
/external/chromium_org/sync/internal_api/
H A Dsyncapi_internal.cc80 const sync_pb::EntitySpecifics& right) {
93 if (right.has_encrypted()) {
94 if (!cryptographer->CanDecrypt(right.encrypted())) {
98 right_plaintext = cryptographer->DecryptToString(right.encrypted());
100 right_plaintext = right.SerializeAsString();
109 const sync_pb::AttachmentMetadata& right) {
110 if (left.SerializeAsString() == right.SerializeAsString()) {
78 AreSpecificsEqual(const Cryptographer* cryptographer, const sync_pb::EntitySpecifics& left, const sync_pb::EntitySpecifics& right) argument
108 AreAttachmentMetadataEqual(const sync_pb::AttachmentMetadata& left, const sync_pb::AttachmentMetadata& right) argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRect.h35 CSSPrimitiveValue* right() const { return m_right.get(); } function in class:blink::RectBase
40 void setRight(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> right) { m_right = right; } 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 !
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGapRects.h33 const LayoutRect& right() const { return m_right; } 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
49 , m_right(right)
58 float right() const { return m_right; } function in class:blink::FloatBoxExtent
59 void setRight(float right) { m_right = right; } argument
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
75 rect.expand(left() + right(), top() + bottom());
81 m_right = std::max(m_right, other.right());
104 && a.right() == b.right()
[all...]
H A DIntRectExtent.h47 IntRectExtent(int top, int right, int bottom, int left) argument
49 , m_right(right)
58 int right() const { return m_right; } function in class:blink::IntRectExtent
59 void setRight(int right) { m_right = right; } argument
67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
75 rect.expand(left() + right(), top() + bottom());
88 && a.right() == b.right()
101 a.setRight(a.right()
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dcecal.cpp65 CECalendar::operator=(const CECalendar& right) argument
67 Calendar::operator=(right);
H A Ddtrule.cpp69 DateTimeRule::operator=(const DateTimeRule& right) { argument
70 if (this != &right) {
71 fMonth = right.fMonth;
72 fDayOfMonth = right.fDayOfMonth;
73 fDayOfWeek = right.fDayOfWeek;
74 fWeekInMonth = right.fWeekInMonth;
75 fMillisInDay = right.fMillisInDay;
76 fDateRuleType = right.fDateRuleType;
77 fTimeRuleType = right.fTimeRuleType;
H A Dtztrans.cpp55 TimeZoneTransition::operator=(const TimeZoneTransition& right) { argument
56 if (this != &right) {
57 fTime = right.fTime;
58 setFrom(*right.fFrom);
59 setTo(*right.fTo);
/external/chromium_org/third_party/skia/gm/
H A Dpatchgrid.cpp21 SkPoint right[4]; local
22 SkPatchUtils::getRightCubic(cubics, right);
31 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, right, paint);
35 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, right+1, paint);
52 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, right+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
45 fRight = right;
/external/chromium_org/third_party/skia/src/core/
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);
24 if (right > fRight) fRight = right;
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)
109 if (fRight > right) fRight = right;
149 join(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) argument
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsLineIntersectionTest.cpp114 double right = SkTMax(line1[0].fX, line1[1].fX); local
116 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
121 double right = SkTMax(line2[0].fX, line2[1].fX); local
123 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
157 double right = SkTMax(line1[0].fX, line1[1].fX); local
159 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
166 double right = SkTMax(line2[0].fX, line2[1].fX); local
168 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
/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};
72 ExpectArraysEq(kRefRight, right, kSamplesPerChannel);

Completed in 4189 milliseconds

1234567891011>>