/external/chromium_org/third_party/webrtc/modules/video_render/linux/ |
video_x11_channel.cc | 105 float right, float bottom) 113 _right = right; 134 if ((1 < left || left < 0) || (1 < top || top < 0) || (1 < right || right 152 _outWidth = (int32_t) (winWidth * (right - left)); 300 float& right, float& bottom) const 308 right = _right;
|
/external/elfutils/0.153/libebl/ |
eblstrtab.c | 20 additional right to link the code of Red Hat elfutils with code licensed 78 struct Ebl_Strent *right; member in struct:Ebl_Strent 199 newstr->right = NULL; 233 return searchstring (&(*sep)->right, newstr); 293 newstr->right = (*sep)->right; 330 if (nodep->right != NULL) 331 copystrings (nodep->right, freep, offsetp);
|
/external/opencv/otherlibs/highgui/ |
highgui.h | 273 if( r.left > r.right ) 276 r.left = r.right; 277 r.right = t; 294 return cvRect( sr.left, sr.top, sr.right - sr.left, sr.bottom - sr.top ); 303 dr.right = sr.x + sr.width; 316 roi.width = r.right - r.left; 356 cvRect( r.left, r.top, r.right - r.left, r.bottom - r.top ));
|
/external/zxing/qr_scanner/src/com/google/zxing/client/android/ |
ViewfinderView.java | 94 canvas.drawRect(frame.right + 1, frame.top, width, frame.bottom + 1, paint); 105 canvas.drawRect(frame.left, frame.top, frame.right + 1, frame.top + 2, paint); 107 canvas.drawRect(frame.right - 1, frame.top, frame.right + 1, frame.bottom - 1, paint); 108 canvas.drawRect(frame.left, frame.bottom - 1, frame.right + 1, frame.bottom + 1, paint); 115 canvas.drawRect(frame.left + 2, middle - 1, frame.right - 1, middle + 2, paint); 157 frame.right + POINT_SIZE,
|
/frameworks/base/core/java/android/text/method/ |
Touch.java | 45 int left, right; local 51 right = 0; 55 right = (int) Math.max(right, layout.getLineRight(i)); 59 right = availableWidth; 62 final int actualWidth = right - left; 71 // direction to resolve it to left or right 77 x = Math.min(x, right - availableWidth);
|
/frameworks/base/core/java/android/transition/ |
TransitionUtils.java | 97 int right = Math.round(bounds.right); local 106 int widthSpec = View.MeasureSpec.makeMeasureSpec(right - left, View.MeasureSpec.EXACTLY); 109 copy.layout(left, top, right, bottom); 134 int right = existingBounds.right; local 138 drawable.setBounds(left, top, right, bottom);
|
/hardware/intel/img/hwcomposer/common/base/ |
HwcLayer.cpp | 34 x.right == y.right); 47 x.right == y.right); 246 layer->displayFrame.right - layer->displayFrame.left, 250 layer->sourceCropf.right - layer->sourceCropf.left, 331 mPriority = (mSourceCropf.right - mSourceCropf.left) * (mSourceCropf.bottom - mSourceCropf.top);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
floating_point_comparison.hpp | 185 predicate_result operator()( FPT left, FPT right ) const 187 FPT diff = tt_detail::fpt_abs( left - right ); 188 FPT d1 = tt_detail::safe_fpt_division( diff, tt_detail::fpt_abs( right ) ); 221 operator()( FPT1 left, FPT2 right, percent_tolerance_t<ToleranceBaseType> tolerance, 233 return pred( left, right ); 237 operator()( FPT1 left, FPT2 right, fraction_tolerance_t<ToleranceBaseType> tolerance, 246 return pred( left, right );
|
/packages/apps/Settings/src/com/android/settings/widget/ |
ChartView.java | 119 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom); 124 child.layout(childRect.left, childRect.top, childRect.right, 129 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom); 139 sweep.layout(childRect.left, childRect.top, childRect.right, childRect.bottom); 150 parentRect.right += sweepMargins.right; 156 parentRect.right = parentRect.left;
|
/external/arduino/hardware/arduino/cores/arduino/ |
WString.cpp | 362 String String::substring( unsigned int left, unsigned int right ) const 364 if ( left > right ) 366 int temp = right; 367 right = left; 371 if ( right > _length ) 373 right = _length; 376 char temp = _buffer[ right ]; // save the replaced character 377 _buffer[ right ] = '\0'; 379 _buffer[ right ] = temp; //restore character
|
/external/blktrace/ |
rbtree.c | 27 struct rb_node *right = node->rb_right; local 30 if ((node->rb_right = right->rb_left)) 31 rb_set_parent(right->rb_left, node); 32 right->rb_left = node; 34 rb_set_parent(right, parent); 39 parent->rb_left = right; 41 parent->rb_right = right; 44 root->rb_node = right; 45 rb_set_parent(node, right); 323 /* If we have a right-hand child, go down and then left as fa [all...] |
/external/chromium_org/third_party/bintrees/bintrees/ |
avltree.py | 42 __slots__ = ['left', 'right', 'balance', 'key', 'value'] 46 self.right = None 52 """ x.__getitem__(key) <==> x[key], where key is 0 (left) or 1 (right) """ 53 return self.left if key == 0 else self.right 56 """ x.__setitem__(key, value) <==> x[key]=value, where key is 0 (left) or 1 (right) """ 60 self.right = value 65 self.right = None 80 rrh = height(root.right) 130 _clear(node.right) 238 if (node.left is None) or (node.right is None) [all...] |
/external/chromium_org/third_party/skia/experimental/Intersection/ |
LineQuadraticIntersection.cpp | 111 A = line[1].x - line[0].x (adjacent side of the right triangle) 112 O = line[1].y - line[0].y (opposite side of the right triangle) 156 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) { 157 addHorizontalEndPoints(left, right, axisIntercept); 164 double lineT = (pt.x - left) / (right - left); 218 void addHorizontalEndPoints(double left, double right, double y) 227 if (quad[qIndex].x == right) { 332 int horizontalIntersect(const Quadratic& quad, double left, double right, 341 if (x < left || x > right) { 349 int horizontalIntersect(const Quadratic& quad, double left, double right, double y [all...] |
/external/skia/experimental/Intersection/ |
LineQuadraticIntersection.cpp | 111 A = line[1].x - line[0].x (adjacent side of the right triangle) 112 O = line[1].y - line[0].y (opposite side of the right triangle) 156 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) { 157 addHorizontalEndPoints(left, right, axisIntercept); 164 double lineT = (pt.x - left) / (right - left); 218 void addHorizontalEndPoints(double left, double right, double y) 227 if (quad[qIndex].x == right) { 332 int horizontalIntersect(const Quadratic& quad, double left, double right, 341 if (x < left || x > right) { 349 int horizontalIntersect(const Quadratic& quad, double left, double right, double y [all...] |
/frameworks/base/libs/hwui/ |
DisplayListRenderer.h | 69 virtual status_t prepareDirty(float left, float top, float right, float bottom, bool opaque); 81 virtual int saveLayer(float left, float top, float right, float bottom, 94 virtual bool clipRect(float left, float top, float right, float bottom, SkRegion::Op op); 120 float left, float top, float right, float bottom, const SkPaint* paint); 123 virtual status_t drawRect(float left, float top, float right, float bottom, 126 virtual status_t drawRoundRect(float left, float top, float right, float bottom, 129 CanvasPropertyPrimitive* right, CanvasPropertyPrimitive* bottom, 135 virtual status_t drawOval(float left, float top, float right, float bottom, 137 virtual status_t drawArc(float left, float top, float right, float bottom,
|
OpenGLRenderer.cpp | 188 float right, float bottom, bool opaque) { 190 initializeSaveStack(left, top, right, bottom, mLightCenter); 192 mTilingClip.set(left, top, right, bottom); 201 discardFramebuffer(mTilingClip.left, mTilingClip.top, mTilingClip.right, mTilingClip.bottom); 217 mTilingClip.right, mTilingClip.bottom, mOpaque); 221 float right, float bottom, bool opaque) { 223 setupFrameState(left, top, right, bottom, opaque); 239 void OpenGLRenderer::discardFramebuffer(float left, float top, float right, float bottom) { 244 left <= 0.0f && top <= 0.0f && right >= getWidth() && bottom >= getHeight()) { 253 status_t OpenGLRenderer::clear(float left, float top, float right, float bottom, bool opaque) 2041 float right = FLT_MIN; local 3186 float right = FLT_MIN; local [all...] |
/external/chromium_org/v8/src/arm/ |
lithium-arm.cc | 166 right()->PrintTo(stream); 202 right()->PrintTo(stream); 677 DCHECK(instr->right()->representation().Equals(instr->representation())); 680 HValue* right_value = instr->right(); 681 LOperand* right = NULL; local 686 right = chunk_->DefineConstantOperand(constant); 694 right = UseRegisterAtStart(right_value); 708 DefineAsRegister(new(zone()) LShiftI(op, left, right, does_deopt)); 720 DCHECK(instr->right()->representation().IsDouble()); 723 LOperand* right = UseFixedDouble(instr->right(), d1) local 728 LOperand* right = UseRegisterAtStart(instr->right()); local 738 HValue* right = instr->right(); local 1278 LOperand* right = UseOrConstantAtStart(instr->BetterRightOperand()); local 1491 HValue* right = instr->BetterRightOperand(); local 1567 LOperand* right = UseOrConstantAtStart(instr->right()); local 1594 LOperand* right = UseOrConstantAtStart(instr->left()); local 1629 LOperand* right = UseOrConstantAtStart(instr->BetterRightOperand()); local 1641 LOperand* right = UseOrConstantAtStart(instr->right()); local 1664 LOperand* right = NULL; local 1688 LOperand* right = local 1704 LOperand* right = UseFixed(instr->right(), r0); local 1717 LOperand* right = UseRegisterOrConstantAtStart(instr->right()); local 1724 LOperand* right = UseRegisterAtStart(instr->right()); local 1733 LOperand* right = UseRegisterAtStart(instr->right()); local 1789 LOperand* right = UseFixed(instr->right(), r0); local 2388 LOperand* right = UseFixed(instr->right(), r0); local [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
BlurMaskFilterTest.java | 63 int right = bitmap.getWidth() - 1; local 67 checkColor(color, bitmap.getPixel(right - x, y), alphaTolerance); 69 checkColor(color, bitmap.getPixel(right - x, bottom - y), alphaTolerance);
|
/cts/tests/tests/view/src/android/view/cts/ |
View_LayoutPositionTest.java | 68 int right = left + vRect.width(); local 73 assertEquals(right, view.getRight()); 100 assertEquals(right + h_offset, nright);
|
/external/chromium_org/ash/wm/workspace/ |
magnetism_matcher.h | 66 return bounds.right(); 94 return Range(bounds.x(), bounds.right()); 104 return Range(bounds.x(), bounds.right()); 139 // MAGNETISM_EDGE_RIGHT then the right edge of the source should snap to to the
|
/external/chromium_org/cc/layers/ |
heads_up_display_layer_impl.h | 103 int right, 107 int right, 112 int right) const;
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
oobe_screen.css | 25 .right { 29 .step.right { 40 right: 0; 51 padding-right: 34px; /* Double the padding of .step */ 91 right: 0; 136 right: 49px;
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
typed_urls_helper.cc | 323 const history::URLRows& right) { 324 if (left.size() != right.size()) 330 for (size_t j = 0; j < right.size(); ++j) { 331 if (left[i].url() == right[j].url()) { 332 if (CheckURLRowsAreEqual(left[i], right[j])) { 368 const history::URLRow& left, const history::URLRow& right) { 369 return (left.url() == right.url()) && 370 (left.title() == right.title()) && 371 (left.visit_count() == right.visit_count()) && 372 (left.typed_count() == right.typed_count()) & [all...] |
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
PopupZoomer.java | 349 // Right now this has the happy coincidence of showing the leftmost portion 352 // to the left instead of right. 356 mClipRect.right += mShiftX; 357 } else if (mClipRect.right > width - ZOOM_BOUNDS_MARGIN) { 358 mShiftX = (width - ZOOM_BOUNDS_MARGIN - mClipRect.right); 359 mClipRect.right += mShiftX; 375 if (mViewClipRect.right + mShiftX < mClipRect.right) { 376 mMinScrollX = mViewClipRect.right - mClipRect.right; [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
heapProfiler.css | 46 right: 0; 108 background-position: right center, center; 117 margin-right: 8px; 164 right: 0; 195 float: right; 196 text-align: right;
|