/cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/ |
AssertHelpers.java | 53 * right. 59 * @param right Right array 61 public static void assertArrayNotGreater(String message, float[] left, float[] right) { 62 assertEquals("Array lengths did not match", left.length, right.length); 65 String rightString = Arrays.toString(right); 70 "right = %s)", 71 message, left[i], right[i], i, leftString, rightString); 73 assertTrue(msg, left[i] <= right[i]);
|
/cts/tests/tests/view/src/android/view/cts/ |
SurfaceViewTest.java | 68 final int right = 320; local 91 region.set(left, top, right, bottom); 110 final int right = 320; local 118 mMockSurfaceView.layout(left, top, right, bottom); 122 assertEquals(right - left, mMockSurfaceView.getWidth());
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
ArrayBuffer.h | 75 static inline int clampValue(int x, int left, int right); 82 int ArrayBuffer::clampValue(int x, int left, int right) 84 ASSERT(left <= right); 87 if (right < x) 88 x = right;
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
CurveIntersection.h | 42 int horizontalIntersect(const Cubic& cubic, double left, double right, double y, 44 int horizontalIntersect(const Cubic& cubic, double left, double right, double y, 46 int horizontalIntersect(const _Line& line, double left, double right, 48 int horizontalIntersect(const Quadratic& quad, double left, double right, 50 int horizontalIntersect(const Quadratic& quad, double left, double right,
|
/external/chromium_org/third_party/skia/gm/ |
patch.cpp | 33 SkPoint right[SkPatchUtils::kNumPtsCubic]; local 34 SkPatchUtils::getRightCubic(cubics, right); 43 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, right, paint); 47 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, right + 1, paint); 64 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, right + 1, paint); 99 //right points
|
/external/chromium_org/third_party/webrtc/modules/desktop_capture/ |
desktop_geometry.h | 91 int32_t right, int32_t bottom) { 92 return DesktopRect(left, top, right, bottom); 103 int32_t right() const { return right_; } function in class:webrtc::DesktopRect 132 DesktopRect(int32_t left, int32_t top, int32_t right, int32_t bottom) 133 : left_(left), top_(top), right_(right), bottom_(bottom) {
|
/external/chromium_org/third_party/webrtc/modules/video_render/windows/ |
video_render_direct3d9.h | 125 const float right, 134 float& right, float& bottom); 156 const float right, const float bottom); 162 const float right, const float bottom); 183 const float right, const float bottom);
|
/external/chromium_org/v8/src/compiler/ |
node-matchers.h | 108 // right hand sides of a binary operation and can put constants on the right 110 template <typename Left, typename Right> 118 const Right& right() const { return right_; } function in struct:v8::internal::compiler::FINAL 120 bool IsFoldable() const { return left().HasValue() && right().HasValue(); } 121 bool LeftEqualsRight() const { return left().node() == right().node(); } 125 if (left().HasValue() && !right().HasValue()) { 128 node()->ReplaceInput(1, right().node()); 133 Right right_ [all...] |
/external/clang/include/clang/Basic/ |
ObjCRuntime.h | 187 // Right now, this is always equivalent to whether the runtime 301 friend bool operator==(const ObjCRuntime &left, const ObjCRuntime &right) { 302 return left.getKind() == right.getKind() && 303 left.getVersion() == right.getVersion(); 306 friend bool operator!=(const ObjCRuntime &left, const ObjCRuntime &right) { 307 return !(left == right);
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
DefaultHdfParser.java | 57 output.setValue(createFullPath(context, split.left), split.right); 63 output.setValue(createFullPath(context, split.left), readToToken(lineReader, split.right)); 74 output.setSymlink(createFullPath(context, split.left), split.right); 125 result.right = line.substring(position + delimiter.length()).trim(); 134 String right; field in class:DefaultHdfParser.Split
|
/external/skia/experimental/Intersection/ |
CurveIntersection.h | 42 int horizontalIntersect(const Cubic& cubic, double left, double right, double y, 44 int horizontalIntersect(const Cubic& cubic, double left, double right, double y, 46 int horizontalIntersect(const _Line& line, double left, double right, 48 int horizontalIntersect(const Quadratic& quad, double left, double right, 50 int horizontalIntersect(const Quadratic& quad, double left, double right,
|
/frameworks/base/core/java/android/transition/ |
SidePropagation.java | 47 * {@link Gravity#LEFT}, {@link Gravity#TOP}, {@link Gravity#RIGHT}, 96 int right = left + sceneRoot.getWidth(); local 105 epicenterX = (left + right) / 2; 110 left, top, right, bottom); 123 int left, int top, int right, int bottom) { 127 side = isRtl ? Gravity.RIGHT : Gravity.LEFT; 130 side = isRtl ? Gravity.LEFT : Gravity.RIGHT; 137 distance = right - viewX + Math.abs(epicenterY - viewY); 142 case Gravity.RIGHT: 155 case Gravity.RIGHT [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
SignalTileView.java | 88 int left, right; local 90 right = mIconFrame.getLeft(); 91 left = right - indicator.getMeasuredWidth(); 94 right = left + indicator.getMeasuredWidth(); 99 right,
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Path_Delegate.java | 300 /*package*/ static void native_arcTo(long nPath, float left, float top, float right, 308 pathDelegate.arcTo(left, top, right, bottom, startAngle, sweepAngle, forceMoveTo); 323 float left, float top, float right, float bottom, int dir) { 329 pathDelegate.addRect(left, top, right, bottom, dir); 333 /*package*/ static void native_addOval(long nPath, float left, float top, float right, 341 left, top, right - left, bottom - top), false); 357 /*package*/ static void native_addArc(long nPath, float left, float top, float right, 366 left, top, right - left, bottom - top, 371 /*package*/ static void native_addRoundRect(long nPath, float left, float top, float right, 380 left, top, right - left, bottom - top, rx * 2, ry * 2), false) [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
DrawableWrapper.java | 50 public void setBounds(int left, int top, int right, int bottom) { 51 super.setBounds(left, top, right, bottom); 52 mDrawable.setBounds(left, top, right, bottom); 206 public void setHotspotBounds(int left, int top, int right, int bottom) { 207 DrawableCompat.setHotspotBounds(mDrawable, left, top, right, bottom);
|
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
IndicatorControlWheelContainer.java | 101 boolean changed, int left, int top, int right, int bottom) { 106 mCenterX = right - left - Util.dpToPixel(FULL_WHEEL_RADIUS); 108 mShutterButton.layout(right - left - shutterButtonWidth, 110 right - left, 113 mIndicatorControlWheel.layout(0, 0, right - left, bottom - top);
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
apps_page.css | 23 /* Active gets applied right before .suppress-active, so to avoid flicker 40 margin-right: auto; 56 margin-right: auto; 70 border-bottom-right-radius: 5px 5px; 120 right: 10px; 162 right: 30px;
|
most_visited_page.css | 26 right: 0; 44 right: 0; 51 right: auto; 76 background-position-x: right; 81 border-bottom-right-radius: 3px 3px;
|
/external/chromium_org/chrome/browser/resources/ |
policy.css | 26 right: 23px; 63 float: right; 64 text-align: right; 77 float: right; 81 float: right;
|
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/ |
fullscreen.css | 26 right: 0; 48 float: right; 110 margin-right: 10px; 127 right: 0; 140 right: 0;
|
/external/chromium_org/remoting/base/ |
util.cc | 90 dest_rect.right(), dest_rect.bottom()); 111 dest_rect.right(), dest_rect.bottom()); 139 rect.right(), 157 dest_rect.right(), 172 int right = RoundToTwosMultiple(rect.right() + 1); local 174 return webrtc::DesktopRect::MakeLTRB(x, y, right, bottom); 182 int right = (rect.right() * out_size.width() + in_size.width() - 1) / local 186 return webrtc::DesktopRect::MakeLTRB(left, top, right, bottom) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
FloatRect.cpp | 90 float right = std::min(maxX(), other.maxX()); local 94 if (left >= right || top >= bottom) { 97 right = 0; 101 setLocationAndSizeFromEdges(left, top, right, bottom); 173 float right = std::max(p0.x(), p1.x()); local 176 setLocationAndSizeFromEdges(left, top, right, bottom); 212 float right = max3(p0.x(), p1.x(), p2.x()); local 215 setLocationAndSizeFromEdges(left, top, right, bottom); 222 float right = max4(p0.x(), p1.x(), p2.x(), p3.x()); local 225 setLocationAndSizeFromEdges(left, top, right, bottom) [all...] |
/external/chromium_org/third_party/icu/source/common/ |
unorm.cpp | 226 const UChar *right, int32_t rightLength, 234 left==NULL || leftLength<-1 || right==NULL || rightLength<-1) { 239 /* check for overlapping right and destination */ 241 ((right>=dest && right<(dest+destCapacity)) || 242 (rightLength>0 && dest>=right && dest<(right+rightLength))) 256 return n2->append(destString, UnicodeString(rightLength<0, right, rightLength), *pErrorCode). 262 const UChar *right, int32_t rightLength, 273 return _concatenate(left, leftLength, right, rightLength [all...] |
/external/fonttools/Lib/fontTools/ttLib/tables/ |
_k_e_r_n.py | 110 left, right, value = struct.unpack(">HHh", data[:6]) 112 left, right = int(left), int(right) 113 kernTable[(ttFont.getGlyphName(left), ttFont.getGlyphName(right))] = value 124 kernTable = sorted((getGlyphID(left), getGlyphID(right), value) for ((left,right),value) in self.kernTable.items()) 125 for left, right, value in kernTable: 126 data = data + struct.pack(">HHh", left, right, value) 133 for (left, right), value in items: 136 ("r", right), [all...] |
/external/icu/icu4c/source/common/ |
unorm.cpp | 226 const UChar *right, int32_t rightLength, 234 left==NULL || leftLength<-1 || right==NULL || rightLength<-1) { 239 /* check for overlapping right and destination */ 241 ((right>=dest && right<(dest+destCapacity)) || 242 (rightLength>0 && dest>=right && dest<(right+rightLength))) 256 return n2->append(destString, UnicodeString(rightLength<0, right, rightLength), *pErrorCode). 262 const UChar *right, int32_t rightLength, 273 return _concatenate(left, leftLength, right, rightLength [all...] |