Searched defs:left (Results 326 - 350 of 1217) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/cc/resources/
H A Dpicture_layer_tiling_set.cc15 bool operator() (PictureLayerTiling* left, PictureLayerTiling* right) { argument
16 return left->contents_scale() > right->contents_scale();
/external/chromium_org/cc/trees/
H A Ddamage_tracker.cc31 int top, right, bottom, left; local
32 filters.GetOutsets(&top, &right, &bottom, &left);
33 rect->Inset(-left, -top, -right, -bottom);
/external/chromium_org/chrome/browser/accessibility/
H A Daccessibility_extension_api.cc325 int left, top, width, height; local
326 EXTENSION_FUNCTION_VALIDATE(rect_value->GetInteger(keys::kLeft, &left));
330 rects.push_back(gfx::Rect(left, top, width, height));
/external/chromium_org/chrome/browser/first_run/
H A Dtry_chrome_dialog_view.cc309 int left = is_RTL ? info.rcWork.left : info.rcWork.right - width; local
311 return gfx::Rect(left, top, width, height);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dactive_indicator.js141 ' left: 0 !important;' +
352 last.left != last.left) {
431 offsetX = -document.body.getBoundingClientRect().left;
435 offsetX = -document.documentElement.getBoundingClientRect().left;
546 return r1.left - r2.left;
609 * These should already be sorted (top to bottom and left to right).
659 this.setElementCoords_(regionTop, r.left, r.top, r.right, q1,
661 this.setElementCoords_(regionMiddleNW, r.left, q
[all...]
/external/chromium_org/chrome/browser/resources/pdf/
H A Dviewport.js64 * The increment to scroll a page by in pixels when up/down/left/right arrow
90 Viewport.PAGE_SHADOW = {top: 3, bottom: 7, left: 5, right: 5};
419 // space to the left of the document.
523 x: pageDimensions.x + Viewport.PAGE_SHADOW.left,
525 width: pageDimensions.width - Viewport.PAGE_SHADOW.left -
535 Viewport.PAGE_SHADOW.left;
536 // Compute the space on the left of the document if the document fits
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dsync_task_manager.cc48 const PendingTask& left,
50 if (left.priority != right.priority)
51 return left.priority < right.priority;
52 return left.seq > right.seq;
47 operator ()( const PendingTask& left, const PendingTask& right) const argument
/external/chromium_org/chrome/browser/ui/views/
H A Dchrome_views_delegate.cc150 window_preferences->SetInteger("left", bounds.x());
176 int left = 0; local
180 if (!dictionary || !dictionary->GetInteger("left", &left) ||
186 bounds->SetRect(left, top, right - left, bottom - top);
/external/chromium_org/chrome/browser/ui/window_sizer/
H A Dwindow_sizer.cc58 int top = 0, left = 0, bottom = 0, right = 0; variable
62 wp_pref->GetInteger("left", &left) &&
66 bounds->SetRect(left, top, std::max(0, right - left),
397 // move it to be flush with the left edge of the work area.
/external/chromium_org/components/dom_distiller/core/
H A Ddom_distiller_store_unittest.cc210 AssertionResult AreEntryMapsEqual(const EntryMap& left, const EntryMap& right) { argument
212 for (EntryMap::const_iterator it = left.begin(); it != left.end(); ++it) {
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_tree_formatter_win.cc136 LONG left, top, width, height; local
138 if (acc_obj->accLocation(&left, &top, &width, &height, variant_self)
144 location->SetInteger("x", left - root_left);
/external/chromium_org/content/browser/web_contents/aura/
H A Dgesture_nav_simple.cc83 bool left() const { return left_arrow_; } function in class:content::ArrowLayerDelegate
139 transform.Translate(arrow_delegate_->left() ? -kArrowWidth : kArrowWidth, 0);
159 transform.Translate(arrow_delegate_->left() ? translate_x : -translate_x,
212 // Align on the left or right edge.
/external/chromium_org/gpu/command_buffer/client/
H A Dfenced_allocator.h112 bool operator() (const Block &left, const Block &right) { argument
113 return left.offset < right.offset;
/external/chromium_org/native_client_sdk/src/examples/api/gamepad/
H A Dgamepad.cc113 int left,
121 for (int x = std::max(0, left);
122 x < std::min(image->size().width() - 1, left + width);
112 FillRect(pp::ImageData* image, int left, int top, int width, int height, uint32_t color) argument
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
H A Dmatrix.cc16 GLfloat left,
24 temp2 = right - left;
35 mat[8] = (right + left) / temp2;
15 glhFrustumf2(Matrix_t mat, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat znear, GLfloat zfar) argument
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/
H A Dmatrix.cc16 GLfloat left,
24 temp2 = right - left;
35 mat[8] = (right + left) / temp2;
15 glhFrustumf2(Matrix_t mat, GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat znear, GLfloat zfar) argument
/external/chromium_org/ppapi/examples/gamepad/
H A Dgamepad.cc24 void FillRect(pp::ImageData* image, int left, int top, int width, int height, argument
29 for (int x = std::max(0, left);
30 x < std::min(image->size().width() - 1, left + width);
/external/chromium_org/ppapi/tests/
H A Dtest_media_stream_audio_track.cc51 // Create oscillators for the left and right channels. Use a sine wave,
61 // Combine the left and right channels.
453 int16_t left = data_buffer[sample]; local
459 ASSERT_GE(left, std::max<int16_t>(expected, INT16_MIN + 1) - 1);
460 ASSERT_LE(left, std::min<int16_t>(expected, INT16_MAX - 1) + 1);
/external/chromium_org/remoting/base/
H A Dutil.cc73 int y_offset = - CalculateYOffset(source_buffer_rect.left(),
76 int uv_offset = - CalculateUVOffset(source_buffer_rect.left(),
79 int rgb_offset = - CalculateRGBOffset(dest_buffer_rect.left(),
88 webrtc::DesktopRect::MakeLTRB(RoundToTwosMultiple(dest_rect.left() + 1),
92 // Offset pointers to point to the top left corner of the inner rectangle.
93 y_offset += CalculateYOffset(inner_rect.left(), inner_rect.top(),
95 uv_offset += CalculateUVOffset(inner_rect.left(), inner_rect.top(),
97 rgb_offset += CalculateRGBOffset(inner_rect.left(), inner_rect.top(),
109 webrtc::DesktopRect::MakeLTRB(RoundToTwosMultiple(dest_rect.left()),
113 webrtc::DesktopVector offset(outer_rect.left()
180 int left = (rect.left() * out_size.width()) / in_size.width(); local
[all...]
/external/chromium_org/remoting/host/
H A Ddisconnect_window_win.cc217 RoundRect(hdc, rect.left, rect.top, rect.right - 1, rect.bottom - 1,
292 int window_width = window_rect.right - window_rect.left;
295 int left = (monitor_info.rcWork.right + monitor_info.rcWork.left - local
297 SetWindowPos(hwnd_, NULL, left, top, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
343 message_rect.right = message_rect.left + control_width + margin;
346 message_rect.left, message_rect.top,
347 message_rect.right - message_rect.left,
361 button_rect.left = message_rect.right;
362 button_rect.right = button_rect.left
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationTimeline.cpp46 bool compareAnimationPlayers(const RefPtrWillBeMember<blink::AnimationPlayer>& left, const RefPtrWillBeMember<blink::AnimationPlayer>& right) argument
48 return AnimationPlayer::hasLowerPriority(left.get(), right.get());
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableValue.h119 static PassRefPtrWillBeRawPtr<AnimatableValue> defaultInterpolateTo(const AnimatableValue* left, const AnimatableValue* right, double fraction) { return takeConstRef((fraction < 0.5) ? left : right); } argument
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFont.h65 : left(0)
75 return !left && !right && !top && !bottom;
78 int left; member in struct:blink::GlyphOverflow
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatQuad.cpp84 float left = min4(m_p1.x(), m_p2.x(), m_p3.x(), m_p4.x()); local
90 return FloatRect(left, top, right - left, bottom - top);
117 // Return the corner of the rectangle that if it is to the left of the vector
118 // would mean all of the rectangle is to the left of the vector.
122 // QQQ XXX If the lower left corner of X is left of the vector that goes from the top corner of Q to
123 // QQQ the right corner of Q, then all of X is left of the vector, and intersection impossible.
140 // For each side of the quad clockwise we check if the rectangle is to the left of it
H A DFloatRect.cpp88 float left = std::max(x(), other.x()); local
94 if (left >= right || top >= bottom) {
95 left = 0;
101 setLocationAndSizeFromEdges(left, top, right, bottom);
171 float left = std::min(p0.x(), p1.x()); local
176 setLocationAndSizeFromEdges(left, top, right, bottom);
210 float left = min3(p0.x(), p1.x(), p2.x()); local
215 setLocationAndSizeFromEdges(left, top, right, bottom);
220 float left = min4(p0.x(), p1.x(), p2.x(), p3.x()); local
225 setLocationAndSizeFromEdges(left, to
[all...]

Completed in 1019 milliseconds

<<11121314151617181920>>