/external/v8/test/mjsunit/regress/ |
regress-2073.js | 42 this.right = null; 58 child.right = null; 63 this.tail.right = child; 74 if (parent.head == this) parent.head = this.right; 76 if (this.left) this.left.right = this.right; 77 if (this.right) this.right.left = this.left;
|
/external/webrtc/webrtc/modules/video_render/ios/ |
open_gles20.h | 37 const float right,
|
video_render_ios_gles20.mm | 92 window_width_ = window_rect_.right - window_rect_.left; 102 float right, 112 if (new_eagl_channel->SetStreamSettings(z_order, left, top, right, bottom) == 182 if (window_width_ != (window_rect_.right - window_rect_.left) || 184 window_width_ = window_rect_.right - window_rect_.left; 235 rect.right = bounds.size.width + bounds.origin.x; 268 const float right, 278 agl_channel->SetStreamSettings(0, left, top, right, bottom);
|
/external/webrtc/webrtc/modules/video_render/linux/ |
video_x11_render.cc | 67 const float right, 89 renderChannel->Init(_window, left, top, right, bottom); 131 float& right, 143 renderChannel->GetStreamProperties(zOrder, left, top, right, bottom);
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
ms_stereo.c | 106 Word32 left, right; local 108 right = (mdctSpectrumRight[j] >> 1); 109 mdctSpectrumLeft[j] = left + right; 110 mdctSpectrumRight[j] = left - right;
|
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
AccessibilityNodeInfoHelper.java | 46 displayRect.right = width;
|
/frameworks/base/graphics/java/android/graphics/ |
NinePatch.java | 66 public static Rect scaleInsets(int left, int top, int right, int bottom, float scale) { 68 return new Rect(left, top, right, bottom); 74 result.right = (int) Math.ceil(right * scale);
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
OvalShape.java | 43 (int) Math.floor(rect.right), (int) Math.floor(rect.bottom));
|
/frameworks/base/libs/hwui/ |
CanvasState.cpp | 206 bool CanvasState::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) { 207 mSnapshot->clip(Rect(left, top, right, bottom), op); 232 clipRect(bounds.left, bounds.top, bounds.right, bounds.bottom, SkRegion::kIntersect_Op); 263 float right, float bottom, 266 if (mSnapshot->isIgnored() || bottom <= top || right <= left) { 270 Rect r(left, top, right, bottom); 293 float right, float bottom) const { 294 if (mSnapshot->isIgnored() || bottom <= top || right <= left) { 298 Rect r(left, top, right, bottom);
|
/frameworks/base/libs/hwui/hwui/ |
Canvas.h | 119 uirenderer::CanvasPropertyPrimitive* top, uirenderer::CanvasPropertyPrimitive* right, 141 virtual int saveLayer(float left, float top, float right, float bottom, 143 virtual int saveLayerAlpha(float left, float top, float right, float bottom, 158 virtual bool quickRejectRect(float left, float top, float right, float bottom) const = 0; 161 virtual bool clipRect(float left, float top, float right, float bottom, 182 virtual void drawRect(float left, float top, float right, float bottom, 185 virtual void drawRoundRect(float left, float top, float right, float bottom, 188 virtual void drawOval(float left, float top, float right, float bottom, 190 virtual void drawArc(float left, float top, float right, float bottom,
|
/frameworks/base/libs/hwui/protos/ |
ProtoHelpers.h | 28 dest->set_right(src.right);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
stats_scorer.h | 37 jfloat lefp, jfloat top, jfloat right, jfloat bottom, jfloatArray statsArray);
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
PathDestructionActivity.java | 59 float left, top, right, bottom; local 62 right = left + MathUtils.random(getWidth() - left); 66 path.lineTo(right, top); 67 path.lineTo(right, bottom);
|
/hardware/qcom/display/msm8996/sdm/include/core/ |
layer_stack.h | 220 float right = 0.0f; //!< Right-most pixel coordinate. member in struct:sdm::LayerRect 225 LayerRect(float l, float t, float r, float b) : left(l), top(t), right(r), bottom(b) { } 228 return left == rect.left && right == rect.right && top == rect.top && bottom == rect.bottom;
|
/packages/apps/Camera2/src/com/android/camera/one/v2/autofocus/ |
PointMeteringParameters.java | 46 * and (1, 1) is bottom right. 49 * and (1, 1) is bottom right. 116 cropRegion.right); 118 meteringRegion.right = clamp(meteringRegion.right, cropRegion.left, 119 cropRegion.right);
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
PreviewStatusListener.java | 49 public void onPreviewLayoutChanged(View v, int left, int top, int right,
|
/packages/apps/DevCamera/src/com/android/devcamera/ |
NormalizedFace.java | 54 bounds.right = (float) (face.getBounds().right - offX) / dX; 70 bounds.left = 1f - bounds.right; 71 bounds.right = 1f - oldLeft;
|
/packages/apps/Gallery/src/com/android/camera/ |
HighlightView.java | 125 int right = mDrawRect.right + 1; local 139 + ((mDrawRect.right - mDrawRect.left) / 2); 149 mResizeDrawableWidth.setBounds(right - widthWidth, 151 right + widthWidth, 216 && (x < r.right + hysteresis); 222 if ((Math.abs(r.right - x) < hysteresis) && verticalCheck) { 279 Math.min(0, mImageRect.right - mCropRect.right), 334 } else if (r.right > mImageRect.right) [all...] |
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/ |
ConversationFastScroller.java | 98 // Whether to render the scrollbar on the right side (otherwise it'll be on the left). 423 public void onLayoutChange(View v, int left, int top, int right, int bottom, 430 mContainer.set(left, top + mRv.getPaddingTop(), right, bottom); 441 int left = mPosRight ? (mContainer.right - mTrackWidth) : mContainer.left; 443 int right = mPosRight ? mContainer.right : (mContainer.left + mTrackWidth); local 445 mTrackImageView.layout(left, top, right, bottom); 453 int left = mPosRight ? (mContainer.right - mTrackWidth) : mContainer.left; 455 int right = mPosRight ? mContainer.right : (mContainer.left + mTrackWidth) local 472 final int left, right; local [all...] |
/packages/apps/Settings/src/com/android/settings/ |
SummaryPreference.java | 69 public void setRatios(float left, float middle, float right) { 72 mRightRatio = right; 76 public void setColors(int left, int middle, int right) { 79 mRight = right;
|
/packages/apps/TV/tests/common/src/com/android/tv/testing/ |
ComparableTester.java | 77 private void assertLess(int left, int right, Collection<T> leftGroup, 84 String rightName = "Item[" + right + "," + (rightSub++) + "]"; 92 private void assertMore(int left, int right, Collection<T> leftGroup, 99 String rightName = "Item[" + right + "," + (rightSub++) + "]";
|
ComparatorTester.java | 91 private void assertLess(int left, int right, Collection<T> leftGroup, 98 String rName = "Item[" + right + "," + (rightSub++) + "]"; 105 private void assertMore(int left, int right, Collection<T> leftGroup, 112 String rName = "Item[" + right + "," + (rightSub++) + "]";
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
WnnClause.java | 67 new WnnPOS(stem.partOfSpeech.left, fzk.partOfSpeech.right),
|
/prebuilts/go/darwin-x86/test/bench/shootout/ |
binary-tree.go | 48 left, right *Node 62 return n.item + n.left.itemCheck() - n.right.itemCheck()
|
/prebuilts/go/linux-x86/test/bench/shootout/ |
binary-tree.go | 48 left, right *Node 62 return n.item + n.left.itemCheck() - n.right.itemCheck()
|