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

<<21222324252627282930>>

  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_path.cpp 44 rect.right += 0.5f;
49 m_Right = rect.right;
  /external/pdfium/core/src/reflow/
reflowedtextpage.h 53 virtual void GetRect(int rectIndex, FX_FLOAT& left, FX_FLOAT& top, FX_FLOAT& right, FX_FLOAT &bottom) const;
57 virtual int CountBoundedSegments(FX_FLOAT left, FX_FLOAT top, FX_FLOAT right, FX_FLOAT bottom, FX_BOOL bContains = FALSE);
  /external/skia/bench/
TableBench.cpp 58 SkRect right = SkRect::MakeLTRB(col * kCellWidth + (kCellWidth-SK_Scalar1), local
62 canvas->drawRect(right, borderPaint);
  /external/skia/include/core/
SkRegion.h 118 * If left < right and top < bottom, set this region to that rectangle and
121 bool setRect(int32_t left, int32_t top, int32_t right, int32_t bottom);
195 bool quickContains(int32_t left, int32_t top, int32_t right,
199 return left < right && top < bottom &&
201 /* fBounds.contains(left, top, right, bottom); */
203 fBounds.fRight >= right && fBounds.fBottom >= bottom;
266 bool op(int left, int top, int right, int bottom, Op op) {
268 rect.set(left, top, right, bottom);
351 * Y scanline, clipped to the specified left and right X values.
355 Spanerator(const SkRegion&, int y, int left, int right);
    [all...]
  /external/skia/src/pathops/
SkPathOpsLine.cpp 31 // isLeft(): tests if a point is Left|On|Right of an infinite line.
35 // <0 for P2 right of the line
126 double SkDLine::ExactPointH(const SkDPoint& xy, double left, double right, double y) {
131 if (xy.fX == right) {
138 double SkDLine::NearPointH(const SkDPoint& xy, double left, double right, double y) {
142 if (!AlmostBetweenUlps(left, xy.fX, right)) {
145 double t = (xy.fX - left) / (right - left);
148 double realPtX = (1 - t) * left + t * right;
152 double tiniest = SkTMin(SkTMin(y, left), right);
153 double largest = SkTMax(SkTMax(y, left), right);
    [all...]
SkPathOpsLine.h 30 static double ExactPointH(const SkDPoint& xy, double left, double right, double y);
35 static double NearPointH(const SkDPoint& xy, double left, double right, double y);
  /external/skia/tests/
StrokeTest.cpp 17 SkScalarNearlyEqual(a.right(), b.right()) &&
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableRect.java 55 int right = left + width; local
58 return new Rect(left, top, right, bottom);
  /frameworks/base/graphics/java/android/graphics/
LargeBitmap.java 54 if (rect.left < 0 || rect.top < 0 || rect.right > getWidth() || rect.bottom > getHeight())
57 rect.right - rect.left, rect.bottom - rect.top, options);
  /frameworks/base/libs/hwui/
LayerRenderer.h 53 virtual status_t prepareDirty(float left, float top, float right, float bottom, bool opaque);
54 virtual status_t clear(float left, float top, float right, float bottom, bool opaque);
  /frameworks/base/media/java/android/media/tv/
ITvInputSessionCallback.aidl 39 void onLayoutSurface(int left, int top, int right, int bottom);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
SortingCursorWrapper.java 178 int right = start; local
180 while (left < right) {
181 int mid = (left + right) >>> 1;
188 right = mid;
224 int right = start; local
226 while (left < right) {
227 int mid = (left + right) >>> 1;
233 right = mid;
  /frameworks/support/v4/api21/android/support/v4/view/
WindowInsetsCompatApi21.java 76 public WindowInsetsCompat replaceSystemWindowInsets(int left, int top, int right, int bottom) {
77 return new WindowInsetsCompatApi21(mSource.replaceSystemWindowInsets(left, top, right, bottom));
  /frameworks/support/v4/java/android/support/v4/view/
PagerTabStrip.java 153 public void setPadding(int left, int top, int right, int bottom) {
157 super.setPadding(left, top, right, bottom);
264 final int right = mCurrText.getRight() + mTabPadding; local
268 canvas.drawRect(left, top, right, bottom, mTabPaint);
282 int right = mCurrText.getRight() + mTabPadding; local
285 r.set(left, top, right, bottom);
291 right = mCurrText.getRight() + mTabPadding;
292 r.union(left, top, right, bottom);
  /frameworks/support/v4/jellybean/android/support/v4/view/
ViewCompatJB.java 41 int right, int bottom) {
42 view.postInvalidate(left, top, right, bottom);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
intersect-diffs.py 43 rhs_file = rhs_hunk.right.filename.split("/")[1:]
57 # Join the right hand side of the older diff with the left hand side of the
62 old_lines = old_hunk.right
  /hardware/qcom/display/msm8974/libqdutils/
mdp_version.h 84 int right() { return mRight; } function in struct:qdutils::Split
105 int getRightSplit() { return mSplit.right(); }
  /packages/apps/Camera/src/com/android/camera/ui/
OverlayRenderer.java 66 public void layout(int left, int top, int right, int bottom) {
68 mRight = right;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropMath.java 45 r.right, r.top,
46 r.right, r.bottom,
54 * RectF's "contains" function treats points on the bottom and right bound
63 return !(x > r.right || x < r.left || y > r.bottom || y < r.top);
81 r.right = (x > r.right) ? x : r.right;
100 array[x] = GeometryMathUtils.clamp(array[x], imageBound.left, imageBound.right);
204 r.right = r.left + finalW;
BoundedRect.java 215 ret.right = (p[0] < ret.right) ? p[0] : ret.right;
220 ret.right = (p[0] < ret.right) ? p[0] : ret.right;
263 else if (inner.right == newInner.right)
264 fixed = 2; // top right
266 if (inner.right == newInner.right
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
EmojiCategoryPageIndicatorView.java 66 final float right = left + unitWidth; local
68 canvas.drawRect(left, top, right, bottom, mPaint);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
MainFrame.java 50 bottom.right = new FormAttachment(100, 0);
61 top.right = new FormAttachment(100);
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_android.cc 428 size_t right = 0; local
429 while (right < old_len &&
430 right < new_len &&
431 old_value_[old_len - right - 1] == new_value_[new_len - right - 1]) {
432 right++;
434 return (new_len - left - right);
446 size_t right = 0; local
447 while (right < old_len &&
448 right < new_len &
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
canvasProfiler.css 37 right: 0;
53 right: 5px;
70 right: 0;
78 right: 4px;
86 right: 0;
94 .canvas-profile-view button.right-sidebar-show-hide-button.canvas-sidebar-show-hide-button.toggled-hide {
95 margin-right: 15px;
sourcesPanel.css 123 margin-right: 36px;
126 .panel.sources .split-view button.scripts-debugger-show-hide-button.right-sidebar-show-hide-button.toggled-hide {
127 margin-right: 15px;
132 right: 17px;
158 float: right;
180 margin-right: 0px;
181 padding-right: 6px;

Completed in 802 milliseconds

<<21222324252627282930>>