/frameworks/base/core/java/android/view/ |
DisplayList.java | 585 * Sets the left position for the display list. 587 * @param left The left position, in pixels, of the display list 592 public abstract void setLeft(int left); 595 * Returns the left position for the display list in pixels. 653 * Sets the left and top positions for the display list 655 * @param left The left position of the display list, in pixels 665 public abstract void setLeftTopRightBottom(int left, int top, int right, int bottom); 668 * Offsets the left and right positions for the display lis [all...] |
/frameworks/base/libs/hwui/ |
LayerRenderer.h | 51 virtual status_t prepareDirty(float left, float top, float right, float bottom, bool opaque); 52 virtual status_t clear(float left, float top, float right, float bottom, bool opaque);
|
DisplayListOp.h | 218 DrawBoundedOp(float left, float top, float right, float bottom, SkPaint* paint) 219 : DrawOp(paint), mLocalBounds(left, top, right, bottom) {} 230 mLocalBounds.left = fminf(mLocalBounds.left, points[i]); 330 SaveLayerOp(float left, float top, float right, float bottom, 332 : mArea(left, top, right, bottom), mAlpha(alpha), mMode(mode), mFlags(flags) {} 342 deferStruct.mRenderer.saveLayerDeferred(mArea.left, mArea.top, mArea.right, mArea.bottom, 347 renderer.saveLayer(mArea.left, mArea.top, mArea.right, mArea.bottom, mAlpha, mMode, mFlags); 362 DisplayListOp* reinit(float left, float top, float right, float bottom, 364 mArea.set(left, top, right, bottom) 1283 float left, top, offset; local [all...] |
/frameworks/support/v4/java/android/support/v4/view/ |
PagerTabStrip.java | 151 public void setPadding(int left, int top, int right, int bottom) { 155 super.setPadding(left, top, right, bottom); 261 final int left = mCurrText.getLeft() - mTabPadding; local 266 canvas.drawRect(left, top, right, bottom, mTabPaint); 279 int left = mCurrText.getLeft() - mTabPadding; local 283 r.set(left, top, right, bottom); 288 left = mCurrText.getLeft() - mTabPadding; 290 r.union(left, top, right, bottom);
|
/frameworks/support/v4/jellybean/android/support/v4/view/ |
ViewCompatJB.java | 40 public static void postInvalidateOnAnimation(View view, int left, int top, 42 view.postInvalidate(left, top, right, bottom);
|
/hardware/qcom/display/msm8974/libqdutils/ |
mdp_version.h | 83 int left() { return mLeft; } function in struct:qdutils::Split 104 int getLeftSplit() { return mSplit.left(); }
|
/packages/apps/Camera/src/com/android/camera/ui/ |
OverlayRenderer.java | 66 public void layout(int left, int top, int right, int bottom) { 67 mLeft = left;
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
OverlayRenderer.java | 66 public void layout(int left, int top, int right, int bottom) { 67 mLeft = left;
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
TrimTimeBar.java | 75 return mProgressBar.left + 94 mPlayedBar.left = getBarPosFromTime(mTrimStartTime); 98 mTrimStartScrubberLeft = mPlayedBar.left - trimStartScrubberTipOffset(); 105 mPlayedBar.right = mProgressBar.left; 106 mScrubberLeft = mProgressBar.left - mScrubber.getWidth() / 2; 107 mTrimStartScrubberLeft = mProgressBar.left - trimStartScrubberTipOffset(); 162 return (int) ((long) (scrubberLeft + offset - mProgressBar.left) 275 lowerBound = mProgressBar.left;
|
/packages/apps/Settings/src/com/android/settings/widget/ |
ChartView.java | 119 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom); 123 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom); 133 sweep.layout(childRect.left, childRect.top, childRect.right, childRect.bottom); 143 parentRect.left += sweepMargins.left; 149 parentRect.left += sweepMargins.left + (int) sweep.getPoint(); 150 parentRect.right = parentRect.left;
|
/packages/apps/UnifiedEmail/src/com/android/bitmap/ |
BitmapUtils.java | 76 outRect.left = (srcW - srcCroppedW) / 2; 77 outRect.right = outRect.left + srcCroppedW;
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/ |
proximity_info_utils.h | 154 const int left = keyXCoordinates[keyId]; local 156 const int right = left + keyWidths[keyId] + 1; 158 return left < right && top < bottom && x >= left && x < right && y >= top && y < bottom; 237 const int left = keyXCoordinates[keyId]; local 239 const int right = left + keyWidths[keyId]; 241 const int edgeX = x < left ? left : (x > right ? right : x);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/ |
MainFrame.java | 49 bottom.left = new FormAttachment(0, 0); 60 top.left = new FormAttachment(0);
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
oobe_screen_user_image.css | 77 left: 3px; 89 left: 14px; 95 float: left; 147 left: -16.6%; 180 left: 8px; 227 left: 50%; 228 margin-left: -22px;
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2073.js | 41 this.left = null; 57 child.left = this.last; 75 if (parent.tail == this) parent.tail = this.left; 76 if (this.left) this.left.right = this.right; 77 if (this.right) this.right.left = this.left;
|
/frameworks/base/docs/html/reference/renderscript/ |
doxygen.css | 135 margin-left: -1cm; 168 background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); 173 margin-left: 16px; 179 margin-left: 16px; 191 margin-left: 8px; 387 margin-left: 9px; 412 margin-left: 6px; 417 border-left: 1px solid #A8B8D9; 426 border-top-left-radius: 8px [all...] |
/packages/apps/Camera2/src/com/android/camera/crop/ |
BoundedRect.java | 208 ret.left = (p[0] > ret.left) ? p[0] : ret.left; 223 ret.left = (p[0] > ret.left) ? p[0] : ret.left; 259 if (inner.left == newInner.left) 260 fixed = 0; // top left 266 else if (inner.left == newInner.left [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
BoundedRect.java | 210 ret.left = (p[0] > ret.left) ? p[0] : ret.left; 225 ret.left = (p[0] > ret.left) ? p[0] : ret.left; 261 if (inner.left == newInner.left) 262 fixed = 0; // top left 268 else if (inner.left == newInner.left [all...] |
/bionic/libc/netbsd/resolv/ |
res_random.c | 142 u_int left, right, tmp; local 147 left = (in >> 8) & 0x7f; 151 * Each round swaps the width of left and right. Even rounds have 152 * a 7-bit left, odd rounds have an 8-bit left. Since this uses an 153 * odd number of rounds, left is always 8 bits wide at the end. 160 tmp ^= left; 161 left = right; 165 return (right << 8) | left;
|
/build/tools/droiddoc/templates-ds/assets/ |
android-developer-core.css | 171 text-align:left; 194 border-left:2px solid #eee; 241 float: left; 371 float: left; 379 margin-left: 40px; 393 float: left; 402 float: left; 419 text-align:left; 429 text-align:left; 436 float: left; [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-core.css | 171 text-align:left; 194 border-left:2px solid #eee; 240 float: left; 370 float: left; 378 margin-left: 40px; 392 float: left; 401 float: left; 418 text-align:left; 428 text-align:left; 435 float: left; [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
SurfaceViewTest.java | 65 final int left = 40; local 90 region.set(left, top, right, bottom); 107 final int left = 40; local 117 mMockSurfaceView.layout(left, top, right, bottom); 121 assertEquals(right - left, mMockSurfaceView.getWidth());
|
/docs/source.android.com/src/source/assets/ |
main.css | 55 text-align: left; 79 float: left; 153 float: left; 156 padding-left: 6px; 199 float: left; 270 margin-left: 0; 275 margin-left: 1em; 286 float: left; 313 -webkit-border-top-left-radius: 5px; 317 float: left; [all...] |
/external/chromium/chrome/browser/resources/options/ |
sync_setup_overlay.css | 80 text-align: left; 135 left: 25px; 151 margin-left: 5px; 204 margin-left: auto; 304 margin-left: 5px; 319 margin-left: auto; 337 float: left; 341 text-align: left; 342 left: 0px; 344 margin-left: 20px [all...] |
/external/chromium_org/chrome/browser/resources/ntp_android/ |
bookmarks.css | 31 .overflow-left-mask { 34 left center, 40 left: 0; 49 left center, 141 left: 0; 150 left: 0; 158 in top left corner */ 181 left: 0; 194 border-bottom-left-radius: 2px; 198 left: 7px [all...] |