/packages/apps/Calendar/src/com/android/calendar/ |
ColorChipView.java | 113 int left = halfBorderWidth; local 126 lines [ptr++] = left; 128 lines [ptr++] = left;
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
CameraControls.java | 114 result.left = (r + l) / 2 - tw / 2 + lp.leftMargin; 122 result.left = r - tw + lp.leftMargin; 128 result.left = (r + l) / 2 - tw / 2 + lp.leftMargin; 134 // reverse landscape: controls left 135 result.left = l + lp.leftMargin; 141 v.layout(result.left, result.top, result.right, result.bottom); 148 int cx = (other.left + other.right) / 2; 160 int cx = (other.left + other.right) / 2; 165 // portrait, to left of anchor at bottom 166 l = other.left - tw + lp.leftMargin [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterColorBorder.java | 69 mInsideBounds.set(mBounds.left + bs, 73 mBorderPath.moveTo(mBounds.left, mBounds.top); 76 mBorderPath.lineTo(mBounds.left, mBounds.bottom);
|
/packages/apps/Mms/src/com/android/mms/ui/ |
QuickContactDivot.java | 132 final int left = 0; local 151 left, 153 left + mDrawableIntrinsicWidth,
|
/packages/apps/Settings/src/com/android/settings/drawable/ |
DrawableWrapper.java | 48 public void setBounds(int left, int top, int right, int bottom) { 49 super.setBounds(left, top, right, bottom); 50 mDrawable.setBounds(left, top, right, bottom);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
HorizontalScrollView.java | 805 * (excluding fading edges) pretending that this View's left is located at 806 * the parameter left. 809 * @param leftFocus look for a candidate is the one at the left of the bounds 812 * @param left the left offset of the bounds in which a focusable must be 819 final int left, View preferredFocusable) { 826 final int leftWithoutFadingEdge = left + fadingEdgeLength; 827 final int rightWithoutFadingEdge = left + getWidth() - fadingEdgeLength; 844 * @param leftFocus look for a candidate is the one at the left of the bounds 847 * @param left the left offset of the bounds in which a focusable must b [all...] |
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
MultiPaneChallengeLayout.java | 280 // Second pass. Measure everything that's left. 334 padding.left = getPaddingLeft(); 384 final int paddedWidth = width - padding.left - padding.right; 401 int left = padding.left; local 403 int right = left + childWidth; 431 case Gravity.LEFT: 432 left = fixedLayoutHorizontal ? 433 padding.left + (adjustedWidth - childWidth) / 2 : padding.left; [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/css/ |
bootstrap.css | 185 margin-left: -20px; 197 float: left; 198 margin-left: 20px; 242 margin-left: 980px; 245 margin-left: 900px; 248 margin-left: 820px; 251 margin-left: 740px; 254 margin-left: 660px; 257 margin-left: 580px; 260 margin-left: 500px [all...] |
/libcore/luni/src/main/java/java/util/ |
TreeMap.java | 298 Node<K, V> child = (comparison < 0) ? nearest.left : nearest.right; 321 nearest.left = created; 374 Node<K, V> left = node.left; local 377 if (left != null && right != null) { 380 * To remove a node with both left and right subtrees, move an 388 Node<K, V> adjacent = (left.height > right.height) ? left.last() : right.first(); 392 left = node.left; 461 Node<K, V> left = node.left; local 523 Node<K, V> left = root.left; local 735 Node<K, V> left; field in class:TreeMap.Node [all...] |
/external/chromium_org/chrome/browser/resources/history/ |
history.css | 38 float: left; 42 float: left; 65 float: left; 125 float: left; 144 float: left; 148 float: left; 177 margin-left: -1px; 191 border-bottom-left-radius: 2px; 192 border-top-left-radius: 2px; 193 margin-left: 0 [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Canvas_Delegate.java | 194 return clipRect(thisCanvas, rect.left, rect.top, rect.right, rect.bottom); 199 return clipRect(thisCanvas, (float) rect.left, (float) rect.top, 204 /*package*/ static boolean clipRect(Canvas thisCanvas, float left, float top, float right, 212 return canvasDelegate.clipRect(left, top, right, bottom, Region.Op.INTERSECT.nativeInt); 216 /*package*/ static boolean clipRect(Canvas thisCanvas, int left, int top, int right, 219 return clipRect(thisCanvas, (float) left, (float) top, (float) right, (float) bottom); 469 float left, float top, 479 return canvasDelegate.clipRect(left, top, right, bottom, regionOp); 543 bounds.left = rect.x; 586 float left, float top [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
user_pod_row.css | 89 .pod.left { 166 left: 10px; 212 left: 0; 233 left: 0; 371 left: 10px; 383 border-left: 1px solid lightgray; 384 left: 180px; 391 left: auto; 396 left: 185px; 404 left: auto [all...] |
/external/chromium_org/chrome/browser/resources/ntp4/ |
new_tab.css | 31 float: left; 135 left: auto; 136 margin-left: 8px; 141 text-align: left; 146 * left to avoid conflicts. We also do this for bare-minimum mode since there 151 left: 0; 199 left: 0; 215 left: 0; 239 margin-left: 13px; 251 left: 0 [all...] |
/external/chromium_org/third_party/libwebp/dsp/ |
enc.c | 247 const uint8_t* left, int size) { 248 if (left) { 251 memset(dst + j * BPS, left[j], size); 258 static WEBP_INLINE void TrueMotion(uint8_t* dst, const uint8_t* left, 261 if (left) { 263 const uint8_t* const clip = clip1 + 255 - left[-1]; 265 const uint8_t* const clip_table = clip + left[y]; 273 HorizontalPred(dst, left, size); 276 // true motion without left samples (hence: with default 129 value) 288 static WEBP_INLINE void DCMode(uint8_t* dst, const uint8_t* left, [all...] |
/external/webp/src/dsp/ |
enc.c | 247 const uint8_t* left, int size) { 248 if (left) { 251 memset(dst + j * BPS, left[j], size); 258 static WEBP_INLINE void TrueMotion(uint8_t* dst, const uint8_t* left, 261 if (left) { 263 const uint8_t* const clip = clip1 + 255 - left[-1]; 265 const uint8_t* const clip_table = clip + left[y]; 273 HorizontalPred(dst, left, size); 276 // true motion without left samples (hence: with default 129 value) 288 static WEBP_INLINE void DCMode(uint8_t* dst, const uint8_t* left, [all...] |
/external/chromium_org/v8/src/arm/ |
lithium-arm.cc | 187 left()->PrintTo(stream); 224 left()->PrintTo(stream); 696 ASSERT(instr->left()->representation().IsTagged()); 699 LOperand* left = UseFixed(instr->left(), r1); local 701 LArithmeticT* result = new(zone()) LArithmeticT(op, left, right); 706 ASSERT(instr->left()->representation().Equals(instr->representation())); 708 LOperand* left = UseRegisterAtStart(instr->left()); local 718 // Left shifts can deoptimize if we shift by > 0 and the result cannot b 759 LOperand* left = UseRegisterAtStart(instr->left()); local 773 HValue* left = instr->left(); local 1335 LOperand* left = UseRegisterAtStart(instr->BetterLeftOperand()); local 1343 LOperand* left = UseFixed(instr->left(), r1); local 1445 HValue* left = instr->left(); local 1508 LOperand* left; local 1565 LOperand* left = UseRegisterAtStart(instr->left()); local 1592 LOperand* left = UseRegisterAtStart(instr->right()); local 1627 LOperand* left = UseRegisterAtStart(instr->BetterLeftOperand()); local 1654 LOperand* left = NULL; local 1678 LOperand* left = UseFixedDouble(instr->left(), d1); local 1701 LOperand* left = UseFixed(instr->left(), r1); local 1714 LOperand* left = UseRegisterOrConstantAtStart(instr->left()); local 1721 LOperand* left = UseRegisterAtStart(instr->left()); local 1730 LOperand* left = UseRegisterAtStart(instr->left()); local 1777 LOperand* left = UseFixed(instr->left(), r1); local 2353 LOperand* left = UseRegisterAtStart(instr->left()); local [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkRegion.cpp | 19 * [ Bottom, X-Intervals, [Left, Right]..., X-Sentinel ] 56 assert_sentinel(runs[3], false); // left 143 bool SkRegion::setRect(int32_t left, int32_t top, 145 if (left >= right || top >= bottom) { 149 fBounds.set(left, top, right, bottom); 255 if (runs[3] == SkRegion::kRunTypeSentinel) { // should be first left... 260 assert_sentinel(runs[3], false); // left 274 assert_sentinel(stop[-4], false); // last left 333 // appear as a left-inteval (runs[0]) and should abort the search. 613 static void assert_valid_pair(int left, int rite 649 int inside, left, rite SK_INIT_TO_AVOID_WARNING; local 724 int left = rec.fLeft; local [all...] |
SkScan_Antihair.cpp | 414 if (x0 > x1) { // we want to go left-to-right 543 int left, right; 545 left = SkFixedFloor(fstart - SK_FixedHalf); 549 left = SkFixedFloor(fstart + (istop - istart - 1) * slope - SK_FixedHalf); 552 left -= 1; 555 if (left >= clip->fRight || right <= clip->fLeft) { 558 if (clip->fLeft <= left && clip->fRight >= right) { 643 SkFDot6 left = SkMin32(x0, x1); 649 ir.set( SkFDot6Floor(left) - 1, 704 int left = L >> 8 [all...] |
/external/skia/src/core/ |
SkRegion.cpp | 19 * [ Bottom, X-Intervals, [Left, Right]..., X-Sentinel ] 56 assert_sentinel(runs[3], false); // left 143 bool SkRegion::setRect(int32_t left, int32_t top, 145 if (left >= right || top >= bottom) { 149 fBounds.set(left, top, right, bottom); 255 if (runs[3] == SkRegion::kRunTypeSentinel) { // should be first left... 260 assert_sentinel(runs[3], false); // left 274 assert_sentinel(stop[-4], false); // last left 333 // appear as a left-inteval (runs[0]) and should abort the search. 613 static void assert_valid_pair(int left, int rite 649 int inside, left, rite SK_INIT_TO_AVOID_WARNING; local 724 int left = rec.fLeft; local [all...] |
SkScan_Antihair.cpp | 414 if (x0 > x1) { // we want to go left-to-right 543 int left, right; 545 left = SkFixedFloor(fstart - SK_FixedHalf); 549 left = SkFixedFloor(fstart + (istop - istart - 1) * slope - SK_FixedHalf); 552 left -= 1; 555 if (left >= clip->fRight || right <= clip->fLeft) { 558 if (clip->fLeft <= left && clip->fRight >= right) { 643 SkFDot6 left = SkMin32(x0, x1); 649 ir.set( SkFDot6Floor(left) - 1, 704 int left = L >> 8 [all...] |
/external/chromium_org/cc/layers/ |
heads_up_display_layer_impl.cc | 282 canvas->drawLine(bounds.left(), 288 bounds.left(), bounds.bottom(), bounds.right(), bounds.bottom(), *paint); 297 canvas->drawLine(bounds.left(), 322 int left = bounds().width() - width - right; local 323 SkRect area = SkRect::MakeXYWH(left, top, width, height); 329 SkRect::MakeXYWH(left + kPadding, 333 SkRect graph_bounds = SkRect::MakeXYWH(left + kPadding, 353 text_bounds.left(), 388 SkPoint::Make(graph_bounds.left() + it.index(), 407 canvas->drawLine(histogram_bounds.left() - 1 454 const int left = bounds().width() - width - right; local 509 const int left = bounds().width() - width - right; local [all...] |
/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
Matrix.h | 44 static Matrix* newFrustum(float left, float right, float bottom, float top,
|
/external/bzip2/ |
bzip.css | 21 margin-left: 1.5em; 49 margin-left: 0px;
|
/external/chromium/chrome/browser/resources/net_internals/ |
tabswitcherview.css | 23 float: left; 38 border-top-left-radius: 8px;
|
/external/chromium/chrome/browser/resources/ntp/ |
most_visited.css | 13 -webkit-transition: left .15s, right .15s, top .15s; 82 border-top-left-radius: 4px; 161 padding-left: 20px; /* we cannot use padding start here because even if we set 169 padding-left: 0; 181 border-top-left-radius .15s, border-top-right-radius .15s, 190 -webkit-transition: top .15s, left .15s; 197 border-top-left-radius: 0; 273 left: 0;
|