Searched defs:right (Results 126 - 150 of 742) sorted by relevance

1234567891011>>

/external/skia/tests/
H A DPathOpsLineIntersectionTest.cpp82 double right = SkTMax(line1[0].fX, line1[1].fX); local
84 ts.horizontal(line2, left, right, line1[0].fY, line1[0].fX != left);
89 double right = SkTMax(line2[0].fX, line2[1].fX); local
91 ts.horizontal(line1, left, right, line2[0].fY, line2[0].fX != left);
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DOperation.java40 /** 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);
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) argument
141 /** @return the right operan
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dchrome_views_delegate.cc68 window_preferences->SetInteger("right", bounds.right());
78 window_preferences->SetInteger("work_area_right", work_area.right());
92 int left, top, right, bottom; local
95 !dictionary->GetInteger("right", &right) ||
99 bounds->SetRect(left, top, right - left, bottom - top);
/external/chromium/webkit/glue/
H A Dcpp_bound_class_unittest.cc129 // right expressions, printing "SUCCESS" to the page if they are equal and
135 std::string BuildJSCondition(std::string left, std::string right) { argument
137 "var rightval = " + right + ";" +
143 right + " [\" + rightval + \"]\");" +
191 // The property on the left will be set to the value on the right, then
203 std::string right = tests[i + 1]; local
204 // left = right;
207 js.append(right);
209 js.append(BuildJSCondition(left, right));
234 // The expression on the left is expected to return the value on the right
263 std::string right = tests[i + 1]; local
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwPicture.java77 mClipBoundsTemporary.right, mClipBoundsTemporary.bottom);
93 int left, int top, int right, int bottom);
92 nativeDraw(int nativeAwPicture, Canvas canvas, int left, int top, int right, int bottom) argument
/external/chromium_org/cc/resources/
H A Dlayer_tiling_data.cc72 int* right,
82 *right = tiling_data_.TileXIndexFromSrcCoord(content_rect.right() - 1);
98 int left, top, right, bottom; local
99 ContentRectToTileIndices(content_rect, &left, &top, &right, &bottom);
101 for (int i = left; i <= right; ++i) {
123 int left, top, right, bottom; local
125 gfx::Rect(size), &left, &top, &right, &bottom); local
128 if (it->first.first > right || it->first.second > bottom)
69 ContentRectToTileIndices(gfx::Rect content_rect, int* left, int* top, int* right, int* bottom) const argument
/external/chromium_org/chrome/browser/chromeos/system/
H A Dinput_device_settings.cc183 void SetPrimaryButtonRight(bool right) { argument
185 ExecuteScript(3, kMouseControl, "swap_left_right", right ? "1" : "0");
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dremote_change_handler.cc22 const ChangeQueueItem& right) {
23 if (left.changestamp != right.changestamp)
24 return left.changestamp < right.changestamp;
25 return fileapi::FileSystemURL::Comparator()(left.url, right.url);
50 const RemoteChange& right) {
51 // This should return true if |right| has higher priority than |left|.
54 if (left.changestamp != right.changestamp)
55 return left.changestamp > right.changestamp;
20 operator ()( const ChangeQueueItem& left, const ChangeQueueItem& right) argument
48 operator ()( const RemoteChange& left, const RemoteChange& right) argument
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Ddecorated_textfield.cc67 int right = base::i18n::IsRTL() ? kTextIndent : icon_space; local
68 SetHorizontalMargins(left, right);
94 bounds.right() - icon_.Width() - kTextfieldIconPadding;
/external/chromium_org/chrome/browser/ui/views/
H A Dchrome_views_delegate.cc82 window_preferences->SetInteger("right", bounds.right());
90 window_preferences->SetInteger("work_area_right", work_area.right());
104 int left, top, right, bottom; local
107 !dictionary->GetInteger("right", &right) ||
111 bounds->SetRect(left, top, right - left, bottom - top);
/external/chromium_org/chrome/browser/web_applications/
H A Dweb_app.cc31 const WebApplicationInfo::IconInfo& right) {
32 return left.width < right.width;
30 IconPrecedes(const WebApplicationInfo::IconInfo& left, const WebApplicationInfo::IconInfo& right) argument
/external/chromium_org/chrome/installer/util/
H A Dlanguage_selector.cc126 bool operator<(const LangToOffset& left, const std::wstring& right) { argument
127 return left.language < right;
132 bool operator<(const std::wstring& left, const LangToOffset& right) { argument
133 return left < right.language;
137 bool operator<(const LangToOffset& left, const LangToOffset& right) { argument
138 return std::wstring(left.language) < right.language;
142 bool IsOffsetLessThan(const LangToOffset& left, const LangToOffset& right) { argument
143 return left.offset < right.offset;
/external/chromium_org/chromeos/dbus/ibus/
H A Dibus_lookup_table.cc207 const Entry& right = table.candidates_[i]; local
208 if (left.value != right.value ||
209 left.label != right.label ||
210 left.annotation != right.annotation ||
211 left.description_title != right.description_title ||
212 left.description_body != right.description_body)
/external/chromium_org/content/renderer/
H A Dcpp_bound_class_unittest.cc150 // The property on the left will be set to the value on the right, then
162 std::string right = tests[i + 1]; local
163 // left = right;
166 js.append(right);
171 expression += right;
192 // The expression on the left is expected to return the value on the right.
H A Ddisambiguation_popup_helper.cc74 int right = zoom_rect.right() - touch_point.x(); local
77 TrimEdges(&left, &right, max_size.width());
82 left + right,
/external/chromium_org/ppapi/cpp/
H A Drect.cc26 void Rect::Inset(int32_t left, int32_t top, int32_t right, int32_t bottom) { argument
28 set_width(std::max<int32_t>(width() - left - right, 0));
38 return (point_x >= x()) && (point_x < right()) &&
43 return (rect.x() >= x() && rect.right() <= right() &&
48 return !(rect.x() >= right() || rect.right() <= x() ||
55 int32_t rr = std::min(right(), rect.right());
73 int32_t rr = std::max(right(), rec
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-splay.js53 right: GeneratePayloadTree(depth - 1, key)
91 // Verify that the splay tree has the right size.
168 node.right = this.root_.right;
169 this.root_.right = null;
171 node.right = this.root_;
197 this.root_ = this.root_.right;
199 var right = this.root_.right;
201 // Splay to make sure that the new root has an empty right chil
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-splay.js53 right: GeneratePayloadTree(depth - 1, key)
91 // Verify that the splay tree has the right size.
168 node.right = this.root_.right;
169 this.root_.right = null;
171 node.right = this.root_;
197 this.root_ = this.root_.right;
199 var right = this.root_.right;
201 // Splay to make sure that the new root has an empty right chil
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-splay.js53 right: GeneratePayloadTree(depth - 1, tag)
92 // Verify that the splay tree has the right size.
169 node.right = this.root_.right;
170 this.root_.right = null;
172 node.right = this.root_;
198 this.root_ = this.root_.right;
200 var right = this.root_.right;
202 // Splay to make sure that the new root has an empty right chil
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBasicShapes.cpp261 static String buildInsetRectangleString(const String& top, const String& right, const String& bottom, const String& left, const String& radiusX, const String& radiusY) argument
267 result.reserveCapacity((sizeof(opening) - 1) + (5 * (sizeof(separator) - 1)) + 1 + top.length() + right.length() + bottom.length() + left.length() + radiusX.length() + radiusY.length());
271 result.append(right);
H A DRect.h33 CSSPrimitiveValue* right() const { return m_right.get(); } function in class:WebCore::RectBase
38 void setRight(PassRefPtr<CSSPrimitiveValue> right) { m_right = right; } argument
85 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
91 right()->customSerializeResolvingVariables(variables),
99 static String generateCSSString(const String& top, const String& right, const String& bottom, const String& left) argument
101 return "rect(" + top + ' ' + right + ' ' + bottom + ' ' + left + ')';
113 return generateCSSString(top()->cssText(), right()->cssText(), bottom()->cssText(), left()->cssText());
119 right()->customSerializeResolvingVariables(variables),
127 static String generateCSSString(const String& top, const String& right, cons argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DPODIntervalTree.h177 // See whether we need to traverse the right subtree.
181 searchForOverlapsFrom<AdapterType>(node->right(), adapter);
194 IntervalNode* right = node->right(); local
195 if (right) {
196 if (*curMax < right->data().maxHigh())
197 curMax = &right->data().maxHigh();
214 IntervalNode* right = node->right(); local
219 if (right) {
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DIntRect.cpp120 int right = max(maxX(), other.maxX()); local
125 m_size.setWidth(right - left);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTextTrackCue.cpp129 // Vertical: ... right by the distance given by position
162 LayoutUnit right = left + firstLineBox->width(); local
175 // rendering area, or if step is positive and the right edge of the
176 // first line box in boxes is now to the right of the right edge of
179 if (m_cue->getWritingDirection() != TextTrackCue::Horizontal && ((step < 0 && left < 0) || (step > 0 && right > parentWidth)))
193 // 13. Vertical: Move all the boxes in boxes right by the distance
283 LayoutUnit right = (parentWidth / 2) - (width / 2); local
284 setX(right);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBorderData.h103 const BorderValue& right() const { return m_right; } function in class:WebCore::BorderData

Completed in 622 milliseconds

1234567891011>>