HomeSort by relevance Sort by last modified time
    Searched refs:right (Results 576 - 600 of 4231) sorted by null

<<21222324252627282930>>

  /frameworks/support/v7/cardview/src/android/support/v7/widget/
CardView.java 110 public void setPadding(int left, int top, int right, int bottom) {
161 * @param right The right padding in pixels
169 public void setContentPadding(int left, int top, int right, int bottom) {
170 mContentPadding.set(left, top, right, bottom);
216 mContentPadding.right = a.getDimensionPixelSize(R.styleable.CardView_contentPaddingRight,
247 * Returns the inner padding before the Card's right edge
249 * @return the inner padding before the Card's right edge
252 return mContentPadding.right;
300 public void setShadowPadding(int left, int top, int right, int bottom)
    [all...]
  /external/pdfium/core/src/reflow/
reflowedtextpage.cpp 115 if(GetIntersection(rectA.left, rectA.right, rectB.left, rectB.right, interlow, interhigh)) {
136 recttmp.right = info.m_CharBox.right;
152 if(floatRect.right < point.x && floatRect.bottom > point.y) {
153 return FXSYS_sqrt(FXSYS_pow(point.x - floatRect.right, 2) + FXSYS_pow(floatRect.bottom - point.y, 2));
155 if (floatRect.right < point.x && floatRect.top < point.y) {
156 return FXSYS_sqrt(FXSYS_pow(point.x - floatRect.right, 2) + FXSYS_pow(point.y - floatRect.top, 2));
161 if((floatRect.right > point.x || FXSYS_fabs(floatRect.right - point.x) <= 0.0001f) &
    [all...]
  /external/pixman/pixman/
pixman-trap.c 384 pixman_line_fixed_edge_init (&r, bpp, t, &trap->right, x_off, y_off);
461 EXTEND(trap->right.p1.x);
462 EXTEND(trap->right.p2.x);
581 const pixman_point_fixed_t *top, *left, *right, *tmp; local
585 right = &tri->p3;
594 if (greater_y (top, right))
596 tmp = right;
597 right = top;
601 if (clockwise (top, right, left))
603 tmp = right;
    [all...]
  /external/chromium_org/native_client_sdk/doc_generated/_static/css/
nacl.css 20 table.showcase td.empty {border-bottom-style: hidden; border-right-style: hidden;}
29 .kd-butterbar.shown.pepper-version {text-align: right; top: 150px; right: 44px; width: 31em;}
32 .kd-butterbar.shown.special-announcement {text-align: right; /* top: 185px; */ top: 150px; right: 44px; width: 31em;}
74 float: right;
90 padding-right: 40px;
97 float: right;
101 #home .right-side {
102 float: right;
    [all...]
  /external/chromium_org/native_client_sdk/src/doc/_static/css/
nacl.css 20 table.showcase td.empty {border-bottom-style: hidden; border-right-style: hidden;}
29 .kd-butterbar.shown.pepper-version {text-align: right; top: 150px; right: 44px; width: 31em;}
32 .kd-butterbar.shown.special-announcement {text-align: right; /* top: 185px; */ top: 150px; right: 44px; width: 31em;}
74 float: right;
90 padding-right: 40px;
97 float: right;
101 #home .right-side {
102 float: right;
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
tzrule.cpp 23 compareDates(const void * /*context*/, const void *left, const void *right) {
25 UDate r = *((UDate*)right);
45 TimeZoneRule::operator=(const TimeZoneRule& right) {
46 if (this != &right) {
47 fName = right.fName;
48 fRawOffset = right.fRawOffset;
49 fDSTSavings = right.fDSTSavings;
114 InitialTimeZoneRule::operator=(const InitialTimeZoneRule& right) {
115 if (this != &right) {
116 TimeZoneRule::operator=(right);
    [all...]
  /external/icu/icu4c/source/i18n/
tzrule.cpp 23 compareDates(const void * /*context*/, const void *left, const void *right) {
25 UDate r = *((UDate*)right);
45 TimeZoneRule::operator=(const TimeZoneRule& right) {
46 if (this != &right) {
47 fName = right.fName;
48 fRawOffset = right.fRawOffset;
49 fDSTSavings = right.fDSTSavings;
114 InitialTimeZoneRule::operator=(const InitialTimeZoneRule& right) {
115 if (this != &right) {
116 TimeZoneRule::operator=(right);
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp4/
new_tab.css 38 float: right;
138 margin-right: 13px;
140 right: 0;
145 /* For themes that right-align their images, we flip the attribution to the
148 html[themegravity='right'] #attribution,
152 right: auto;
153 text-align: right;
212 right: 0;
217 right: auto;
241 margin-right: 13px
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
test_tools.hpp 71 // R - right argument
533 template <class Left, class Right>
534 predicate_result equal_impl( Left const& left, Right const& right )
536 return left == right;
541 predicate_result BOOST_TEST_DECL equal_impl( char const* left, char const* right );
542 inline predicate_result equal_impl( char* left, char const* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) ); }
543 inline predicate_result equal_impl( char const* left, char* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) ); }
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Ordering.java 52 * public int compare(String left, String right) {
53 * return Ints.compare(left.length(), right.length());
80 @SuppressWarnings("unchecked") // TODO(kevinb): right way to explain this??
171 // TODO(kevinb): make this public, document it right
220 @Override public int compare(Object left, Object right) {
221 if (left == right) {
225 int rightCode = identityHashCode(right);
231 int result = uids.get(left).compareTo(uids.get(right));
392 @Override public abstract int compare(@Nullable T left, @Nullable T right);
457 E[] values, int left, int right, int k)
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadLineIntersection.cpp 119 A = line[1].fX - line[0].fX (adjacent side of the right triangle)
120 O = line[1].fY - line[0].fY (opposite side of the right triangle)
170 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) {
171 addExactHorizontalEndPoints(left, right, axisIntercept);
173 addNearHorizontalEndPoints(left, right, axisIntercept);
180 double lineT = (pt.fX - left) / (right - left);
250 void addExactHorizontalEndPoints(double left, double right, double y) {
252 double lineT = SkDLine::ExactPointH(fQuad[qIndex], left, right, y);
261 void addNearHorizontalEndPoints(double left, double right, double y) {
267 double lineT = SkDLine::NearPointH(fQuad[qIndex], left, right, y)
    [all...]
SkIntersections.h 62 int cubicHorizontal(const SkPoint a[4], SkScalar left, SkScalar right, SkScalar y,
67 return horizontal(cubic, left, right, y, flipped);
112 int lineHorizontal(const SkPoint a[2], SkScalar left, SkScalar right, SkScalar y,
117 return horizontal(line, left, right, y, flipped);
148 int quadHorizontal(const SkPoint a[3], SkScalar left, SkScalar right, SkScalar y,
153 return horizontal(quad, left, right, y, flipped);
225 int horizontal(const SkDLine&, double left, double right, double y, bool flipped);
226 int horizontal(const SkDQuad&, double left, double right, double y, bool flipped);
227 int horizontal(const SkDQuad&, double left, double right, double y, double tRange[2]);
229 int horizontal(const SkDCubic&, double left, double right, double y, bool flipped)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
BackgroundCollisionComponent.java 144 final int right = left + mWidth; local
170 right, centerOffsetY, mHorizontalHitPoint, mHorizontalHitNormal,
181 right, centerOffsetY, mHorizontalHitPoint, mHorizontalHitNormal,
193 } else if (mCurrentPosition.x + right > level.getLevelWidth()) {
194 mCurrentPosition.x = (level.getLevelWidth() - right - 1);
251 float xEnd = right;
253 xStart = right;
276 mCurrentPosition.x = (mHorizontalHitPoint.x - right);
325 int left, int right, float centerY, Vector2 hitPoint, Vector2 hitNormal,
331 // Shoot a ray from the center of the previous frame's box to the edge (left or right,
    [all...]
  /external/skia/src/pathops/
SkDQuadLineIntersection.cpp 119 A = line[1].fX - line[0].fX (adjacent side of the right triangle)
120 O = line[1].fY - line[0].fY (opposite side of the right triangle)
170 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) {
171 addExactHorizontalEndPoints(left, right, axisIntercept);
173 addNearHorizontalEndPoints(left, right, axisIntercept);
180 double lineT = (pt.fX - left) / (right - left);
250 void addExactHorizontalEndPoints(double left, double right, double y) {
252 double lineT = SkDLine::ExactPointH(fQuad[qIndex], left, right, y);
261 void addNearHorizontalEndPoints(double left, double right, double y) {
267 double lineT = SkDLine::NearPointH(fQuad[qIndex], left, right, y)
    [all...]
SkIntersections.h 62 int cubicHorizontal(const SkPoint a[4], SkScalar left, SkScalar right, SkScalar y,
67 return horizontal(cubic, left, right, y, flipped);
112 int lineHorizontal(const SkPoint a[2], SkScalar left, SkScalar right, SkScalar y,
117 return horizontal(line, left, right, y, flipped);
148 int quadHorizontal(const SkPoint a[3], SkScalar left, SkScalar right, SkScalar y,
153 return horizontal(quad, left, right, y, flipped);
225 int horizontal(const SkDLine&, double left, double right, double y, bool flipped);
226 int horizontal(const SkDQuad&, double left, double right, double y, bool flipped);
227 int horizontal(const SkDQuad&, double left, double right, double y, double tRange[2]);
229 int horizontal(const SkDCubic&, double left, double right, double y, bool flipped)
    [all...]
  /external/valgrind/main/cachegrind/
cg_merge.c 554 // Did we get the right number?
969 struct _AvlNode* right; member in struct:_AvlNode
1000 AvlNode* b = a->right;
1002 a->right = b->left;
1006 /* Swing to the right. Warning: no balance maintainance. */
1012 a->left = b->right;
1013 b->right = a;
1022 root->right->balance = 1;
1026 root->right->balance = 0;
1030 root->right->balance = 0
    [all...]
  /external/pdfium/fpdfsdk/src/
fpdf_flatten.cpp 14 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM };
18 if ( rect.left - rect.right > 0.000001f ||
24 rect.right == 0.0f &&
31 rect.right - rcPage.right > 10.000001f ||
56 rc.right = pPageObject->m_Right;
157 case RIGHT:
160 pArray[i] = CPDF_Rect(array.GetAt(i)).right;
198 rcRet.right = GetMinMaxValue(*pRectArray, MAX, RIGHT);
    [all...]
  /frameworks/base/core/java/android/view/
FocusFinder.java 125 // make up a rect at top left or bottom right of root
273 * @param direction the direction (up, down, left, right)
371 return (srcRect.right > destRect.right || srcRect.left >= destRect.right)
374 return (srcRect.left < destRect.left || srcRect.right <= destRect.left)
375 && srcRect.right < destRect.right;
390 * @param direction the direction (up, down, left, right)
402 return (rect2.right >= rect1.left) && (rect2.left <= rect1.right)
    [all...]
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 64 float right, float bottom, bool opaque) {
119 int DisplayListRenderer::saveLayer(float left, float top, float right, float bottom,
125 addStateOp(new (alloc()) SaveLayerOp(left, top, right, bottom, paint, flags));
163 bool DisplayListRenderer::clipRect(float left, float top, float right, float bottom,
165 addStateOp(new (alloc()) ClipRectOp(left, top, right, bottom, op));
166 return StatefulBaseRenderer::clipRect(left, top, right, bottom, op);
253 float left, float top, float right, float bottom, const SkPaint* paint) {
258 addDrawOp(new (alloc()) DrawPatchOp(bitmap, patch, left, top, right, bottom, paint));
267 status_t DisplayListRenderer::drawRect(float left, float top, float right, float bottom,
270 addDrawOp(new (alloc()) DrawRectOp(left, top, right, bottom, paint))
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
LineGestureStrokeHelper.java 68 Assert.assertEquals(LINE_MIDWAY_POINT, bounds.right);
82 Assert.assertEquals(LINE_END_POINT, bounds.right);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 42 public void glFrustumf(float left, float right, float bottom, float top,
44 Matrix.frustumM(mMatrix, mTop, left, right, bottom, top, near, far);
47 public void glFrustumx(int left, int right, int bottom, int top, int near,
49 glFrustumf(fixedToFloat(left),fixedToFloat(right),
102 public void glOrthof(float left, float right, float bottom, float top,
104 Matrix.orthoM(mMatrix, mTop, left, right, bottom, top, near, far);
107 public void glOrthox(int left, int right, int bottom, int top, int near,
109 glOrthof(fixedToFloat(left), fixedToFloat(right),
  /external/chromium-trace/trace-viewer/src/tcmalloc/
tcmalloc_instance_view.css 36 text-align: right;
  /external/chromium-trace/trace-viewer/src/tracing/
timeline_track_view.css 23 right: 5px;
  /external/chromium-trace/trace-viewer/src/ui/
info_bar.css 11 border-right: 1px solid #A3A3A3;
  /external/chromium_org/cc/layers/
tiled_layer.cc 323 int right,
331 if (!HaveTexturesForTiles(left, top, right, bottom, ignore_occlusions)) {
339 &update_rect, &paint_rect, left, top, right, bottom, ignore_occlusions);
346 update_rect, paint_rect, left, top, right, bottom, queue, occlusion);
353 int right,
359 for (int i = left; i <= right; ++i) {
384 int right,
388 for (int i = left; i <= right; ++i) {
415 int right,
419 for (int i = left; i <= right; ++i)
587 int left, top, right, bottom; local
709 int left, top, right, bottom; local
728 int left, top, right, bottom; local
835 int left, top, right, bottom; local
    [all...]

Completed in 698 milliseconds

<<21222324252627282930>>