HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 926 - 950 of 3817) sorted by null

<<31323334353637383940>>

  /system/core/libpixelflinger/
trap.cpp 216 if (l < GGLint(c->state.scissor.left)) {
217 xstart += TRI_FROM_INT(c->state.scissor.left-l);
218 l = GGLint(c->state.scissor.left);
281 if (l < GGLint(c->state.scissor.left)) {
282 xstart += TRI_FROM_INT(c->state.scissor.left-l);
283 l = GGLint(c->state.scissor.left);
424 if (l < GGLint(c->state.scissor.left))
425 l = GGLint(c->state.scissor.left);
544 const int32_t minx = max(bminx, c->state.scissor.left);
719 triangle_sweep_edges( Edge* left,
987 AAEdge* left = &edges[0]; local
    [all...]
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view.cc 385 SkScalar left = SkIntToScalar(0); local
390 path->moveTo(left, top);
396 path->lineTo(left + radius, bottom);
397 path->cubicTo(left + spline_radius, bottom,
398 left, bottom - spline_radius,
399 left, bottom - radius);
400 path->lineTo(left, top);
409 SkScalar left = SkIntToScalar(rect.x()); local
414 path->moveTo(left, bottom);
415 path->lineTo(left, top + radius)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/notifications/
balloon_view_views.cc 403 SkScalar left = SkIntToScalar(0); local
408 path->moveTo(left, top);
414 path->lineTo(left + radius, bottom);
415 path->cubicTo(left + spline_radius, bottom,
416 left, bottom - spline_radius,
417 left, bottom - radius);
418 path->lineTo(left, top);
427 SkScalar left = SkIntToScalar(rect.x()); local
432 path->moveTo(left, bottom);
433 path->lineTo(left, top + radius)
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-mips.h 611 LModI(LOperand* left,
613 inputs_[0] = left;
621 LModI(LOperand* left,
626 inputs_[0] = left;
633 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LModI
646 LDivI(LOperand* left, LOperand* right) {
647 inputs_[0] = left;
651 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LDivI
661 LMathFloorOfDiv(LOperand* left,
664 inputs_[0] = left;
669 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LMathFloorOfDiv
686 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LMulI
726 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LCompareNumericAndBranch
888 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LCmpObjectEqAndBranch
996 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LStringCompareAndBranch
1079 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LCmpT
1096 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LInstanceOf
1165 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LBitI
1184 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LShiftI
1203 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LSubI
1392 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LAddI
1407 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LMathMinMax
1422 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LPower
1452 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LArithmeticD
1472 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LArithmeticT
2252 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LStringAdd
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_pax.c 123 size_t left, plen; local
141 left = req_plen - sizeof(*req);
143 if (left < 2 + EAP_PAX_RAND_LEN) {
160 left -= 2;
165 left -= EAP_PAX_RAND_LEN;
167 if (left > 0) {
169 pos, left);
239 size_t left; local
257 left = req_plen - sizeof(*req);
259 if (left < 2 + EAP_PAX_MAC_LEN)
    [all...]
eap_psk.c 188 size_t buflen, left, data_len, len, plen; local
205 left = len - sizeof(*hdr3);
218 wpa_hexdump(MSG_DEBUG, "EAP-PSK: PCHANNEL", pchannel, left);
220 if (left < 4 + 16 + 1) {
223 (unsigned long) left);
262 left -= 4;
266 left -= 16;
274 wpa_hexdump(MSG_MSGDUMP, "EAP-PSK: PCHANNEL - cipher msg", msg, left);
276 decrypted = os_malloc(left);
282 os_memcpy(decrypted, msg, left);
    [all...]
  /libcore/luni/src/main/java/java/util/
ComparableTimSort.java 159 * March over the array once, left to right, finding natural runs,
217 // Set left (and right) to the index where a[start] (pivot) belongs
218 int left = lo; local
220 if (DEBUG) assert left <= right; local
223 * pivot >= all in [lo, left).
226 while (left < right) {
227 int mid = (left + right) >>> 1;
231 left = mid + 1;
233 if (DEBUG) assert left == right;
236 * The invariants still hold: pivot >= all in [lo, left) an
    [all...]
TimSort.java 191 * March over the array once, left to right, finding natural runs,
250 // Set left (and right) to the index where a[start] (pivot) belongs
251 int left = lo; local
253 if (DEBUG) assert left <= right; local
256 * pivot >= all in [lo, left).
259 while (left < right) {
260 int mid = (left + right) >>> 1;
264 left = mid + 1;
266 if (DEBUG) assert left == right;
269 * The invariants still hold: pivot >= all in [lo, left) an
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AbsSpinnerTest.java 191 absSpinner.layout(rc.left, rc.top, rc.right, rc.bottom);
192 absSpinner.getChildAt(0).layout(rcChild0.left, rcChild0.top,
194 absSpinner.getChildAt(1).layout(rcChild1.left, rcChild1.top,
196 absSpinner.getChildAt(2).layout(rcChild2.left, rcChild2.top,
200 assertEquals(0, absSpinner.pointToPosition(rcChild0.left + 1, rc.bottom - 1));
201 assertEquals(1, absSpinner.pointToPosition(rcChild1.left + 1, rc.bottom - 1));
202 assertEquals(2, absSpinner.pointToPosition(rcChild2.left + 1, rc.bottom - 1));
  /external/arduino/hardware/arduino/cores/arduino/
WString.cpp 357 String String::substring( unsigned int left ) const
359 return substring( left, _length );
362 String String::substring( unsigned int left, unsigned int right ) const
364 if ( left > right )
367 right = left;
368 left = temp;
378 String outPut = ( _buffer + left ); // pointer arithmetic
  /external/chromium_org/third_party/npapi/npspy/windows/
gui_main.cpp 127 profile.setSizeAndPosition(rc.right - rc.left, rc.bottom - rc.top, rc.left, rc.top);
217 int width = rcMain.right - rcMain.left;
223 width - marginLeft - rcButtonOptions.right + rcButtonOptions.left,
230 width - marginLeft - rcClear.right + rcClear.left - rcButtonOptions.right + rcButtonOptions.left - spaceHor,
244 marginLeft + rcCheckMute.right - rcCheckMute.left + spaceHor,
  /external/chromium_org/third_party/skia/src/core/
SkBBoxRecord.cpp 128 void SkBBoxRecord::drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
130 SkRect bbox = {left, top, left + bitmap.width(), top + bitmap.height()};
132 INHERITED::drawBitmap(bitmap, left, top, paint);
169 // pad on left and right by half of max vertical glyph extents
212 void SkBBoxRecord::drawSprite(const SkBitmap& bitmap, int left, int top,
215 bbox.set(SkIRect::MakeXYWH(left, top, bitmap.width(), bitmap.height()));
217 INHERITED::drawSprite(bitmap, left, top, paint);
  /external/icu4c/common/
unorm.cpp 225 _concatenate(const UChar *left, int32_t leftLength,
234 left==NULL || leftLength<-1 || right==NULL || rightLength<-1) {
248 /* allow left==dest */
250 if(left==dest) {
254 destString.append(left, leftLength);
261 unorm_concatenate(const UChar *left, int32_t leftLength,
273 return _concatenate(left, leftLength, right, rightLength,
276 return _concatenate(left, leftLength, right, rightLength,
  /external/skia/src/core/
SkBBoxRecord.cpp 128 void SkBBoxRecord::drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
130 SkRect bbox = {left, top, left + bitmap.width(), top + bitmap.height()};
132 INHERITED::drawBitmap(bitmap, left, top, paint);
169 // pad on left and right by half of max vertical glyph extents
212 void SkBBoxRecord::drawSprite(const SkBitmap& bitmap, int left, int top,
215 bbox.set(SkIRect::MakeXYWH(left, top, bitmap.width(), bitmap.height()));
217 INHERITED::drawSprite(bitmap, left, top, paint);
  /external/zlib/src/examples/
zran.c 15 in the uncompressed output. The compressed file is left open, and can then
93 off_t in, off_t out, unsigned left, unsigned char *window)
126 if (left)
127 memcpy(next->window, window + WINSIZE - left, left);
128 if (left < WINSIZE)
129 memcpy(next->window + left, window, WINSIZE - left);
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 156 final int left = (textureWidth-width) / 2; local
167 canvas.drawRect(left, top, left+width, top+height, debugPaint);
171 icon.setBounds(left, top, left+width, top+height);
317 r.left = (int) (r.left * scale + 0.5f);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
filecmp.py 112 self.left = a
124 self.left_list = _filter(os.listdir(self.left),
144 a_path = os.path.join(self.left, x)
174 xx = cmpfiles(self.left, self.right, self.common_files)
183 a_x = os.path.join(self.left, x)
194 print 'diff', self.left, self.right
197 print 'Only in', self.left, ':', self.left_only
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
filecmp.py 112 self.left = a
124 self.left_list = _filter(os.listdir(self.left),
144 a_path = os.path.join(self.left, x)
174 xx = cmpfiles(self.left, self.right, self.common_files)
183 a_x = os.path.join(self.left, x)
194 print 'diff', self.left, self.right
197 print 'Only in', self.left, ':', self.left_only
  /external/chromium_org/v8/src/x64/
lithium-x64.h 613 LModI(LOperand* left, LOperand* right, LOperand* temp) {
614 inputs_[0] = left;
619 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LModI
630 LDivI(LOperand* left, LOperand* right, LOperand* temp) {
631 inputs_[0] = left;
636 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LDivI
649 LMathFloorOfDiv(LOperand* left,
652 inputs_[0] = left;
657 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LMathFloorOfDiv
668 LMulI(LOperand* left, LOperand* right)
673 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LMulI
688 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LCompareNumericAndBranch
839 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LCmpObjectEqAndBranch
944 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LStringCompareAndBranch
1029 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LCmpT
1046 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LInstanceOf
1115 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LBitI
1134 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LShiftI
1153 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LSubI
1348 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LAddI
1368 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LMathMinMax
1383 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LPower
1413 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LArithmeticD
1434 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LArithmeticT
2204 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LStringAdd
    [all...]
  /frameworks/base/core/java/android/net/
NetworkStats.java 511 NetworkStats left, NetworkStats right, NonMonotonicObserver<C> observer, C cookie) {
512 long deltaRealtime = left.elapsedRealtime - right.elapsedRealtime;
515 observer.foundNonMonotonic(left, -1, right, -1, cookie);
522 final NetworkStats result = new NetworkStats(deltaRealtime, left.size);
523 for (int i = 0; i < left.size; i++) {
524 entry.iface = left.iface[i];
525 entry.uid = left.uid[i];
526 entry.set = left.set[i];
527 entry.tag = left.tag[i];
533 entry.rxBytes = left.rxBytes[i]
    [all...]
  /external/v8/src/arm/
lithium-arm.h 546 LModI(LOperand* left,
548 inputs_[0] = left;
556 LModI(LOperand* left,
561 inputs_[0] = left;
575 LDivI(LOperand* left, LOperand* right) {
576 inputs_[0] = left;
587 LMulI(LOperand* left, LOperand* right, LOperand* temp) {
588 inputs_[0] = left;
600 LCmpIDAndBranch(LOperand* left, LOperand* right) {
601 inputs_[0] = left;
1821 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LStringAdd
    [all...]
  /external/v8/src/mips/
lithium-mips.h 545 LModI(LOperand* left,
547 inputs_[0] = left;
555 LModI(LOperand* left,
560 inputs_[0] = left;
574 LDivI(LOperand* left, LOperand* right) {
575 inputs_[0] = left;
586 LMulI(LOperand* left, LOperand* right, LOperand* temp) {
587 inputs_[0] = left;
599 LCmpIDAndBranch(LOperand* left, LOperand* right) {
600 inputs_[0] = left;
1801 LOperand* left() { return inputs_[0]; } function in class:v8::internal::LStringAdd
    [all...]
  /frameworks/base/core/java/android/widget/
FastScroller.java 121 * Preview image resource IDs for left- and right-aligned layouts. See
186 /** Whether decorations should be laid out from right to left. */
432 mPreviewImage.setPadding(padding.left, padding.top, padding.right, padding.bottom);
519 bounds.left -= mPreviewImage.getPaddingLeft();
537 view.layout(bounds.left, bounds.top, bounds.right, bounds.bottom);
538 view.setPivotX(mLayoutFromRight ? bounds.right - bounds.left : 0);
552 margins.left = mPreviewImage.getPaddingLeft();
584 marginLeft = margins.left;
605 // Align to the left or right.
607 final int left; local
649 final int left = (containerWidth - width) \/ 2 + container.left; local
711 final int left = thumb.getLeft() + (thumb.getWidth() - trackWidth) \/ 2; local
1523 final PropertyValuesHolder left = PropertyValuesHolder.ofInt(LEFT, bounds.left); local
    [all...]
HorizontalScrollView.java 829 * (excluding fading edges) pretending that this View's left is located at
830 * the parameter left.
833 * @param leftFocus look for a candidate is the one at the left of the bounds
836 * @param left the left offset of the bounds in which a focusable must be
843 final int left, View preferredFocusable) {
850 final int leftWithoutFadingEdge = left + fadingEdgeLength;
851 final int rightWithoutFadingEdge = left + getWidth() - fadingEdgeLength;
868 * @param leftFocus look for a candidate is the one at the left of the bounds
871 * @param left the left offset of the bounds in which a focusable must b
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/
put_double.pass.cpp 75 left(ios);
109 left(ios);
146 left(ios);
180 left(ios);
220 left(ios);
254 left(ios);
291 left(ios);
325 left(ios);
368 left(ios);
402 left(ios)
    [all...]

Completed in 2210 milliseconds

<<31323334353637383940>>