Searched defs:right (Results 76 - 100 of 336) sorted by relevance

1234567891011>>

/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/view/
H A DNavigationBarButton.java57 public void setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) { argument
60 if (right != null) right = TintedDrawable.wrap(right);
62 super.setCompoundDrawables(left, top, right, bottom);
100 drawables[2] = compoundDrawables[2]; // right
/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/
H A DGlifRecyclerLayout.java77 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
78 super.onLayout(changed, left, top, right, bottom);
H A DSetupWizardRecyclerLayout.java76 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
77 super.onLayout(changed, left, top, right, bottom);
143 * theme and inset it {@code inset} pixels to the right (or left in RTL layouts).
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
H A DGlifListLayout.java82 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
83 super.onLayout(changed, left, top, right, bottom);
117 * theme and inset it {@code inset} pixels to the right (or left in RTL layouts).
H A DSetupWizardListLayout.java90 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
91 super.onLayout(changed, left, top, right, bottom);
109 * theme and inset it {@code inset} pixels to the right (or left in RTL layouts).
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
H A DIllustration.java151 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
152 final int layoutWidth = right - left;
174 super.onLayout(changed, left, top, right, bottom);
/frameworks/rs/driver/runtime/
H A Drs_matrix.c242 // is also the destination, e.g. rsMatrixLoadMultiply(&left, &left, &right);
272 // is also the destination, e.g. rsMatrixLoadMultiply(&left, &left, &right);
299 // is also the destination, e.g. rsMatrixLoadMultiply(&left, &left, &right);
321 rsExtractFrustumPlanes(const rs_matrix4x4* viewProj, float4* left, float4* right, float4* top, argument
329 right->x = viewProj->m[3] - viewProj->m[0];
330 right->y = viewProj->m[7] - viewProj->m[4];
331 right->z = viewProj->m[11] - viewProj->m[8];
332 right->w = viewProj->m[15] - viewProj->m[12];
356 len = length(right->xyz);
357 *right /
369 rsIsSphereInFrustum(float4* sphere, float4* left, float4* right, float4* top, float4* bottom, float4* near, float4* far) argument
[all...]
/frameworks/support/compat/api21/android/support/v4/graphics/drawable/
H A DDrawableWrapperApi21.java50 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
51 mDrawable.setHotspotBounds(left, top, right, bottom);
/frameworks/support/compat/java/android/support/v4/view/
H A DWindowInsetsCompat.java86 * Returns the right system window inset in pixels.
92 * @return The right system window inset
173 * <p>A round window's left, top, right and bottom edges reach all the way to the
207 * @param right New right inset in pixels
211 public WindowInsetsCompat replaceSystemWindowInsets(int left, int top, int right, int bottom) { argument
214 ((WindowInsets) mInsets).replaceSystemWindowInsets(left, top, right, bottom));
276 * Returns the right stable inset in pixels.
284 * @return The right stable inset
/frameworks/support/design/src/android/support/design/internal/
H A DForegroundLinearLayout.java189 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
190 super.onLayout(changed, left, top, right, bottom);
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCommon.java77 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
79 DrawableCompat.setHotspotBounds(mDelegateDrawable, left, top, right, bottom);
/frameworks/support/percent/src/android/support/percent/
H A DPercentFrameLayout.java166 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
167 super.onLayout(changed, left, top, right, bottom);
H A DPercentRelativeLayout.java165 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
166 super.onLayout(changed, left, top, right, bottom);
/frameworks/support/transition/src/android/support/transition/
H A DViewUtils.java201 * @param right Right position, relative to parent
204 static void setLeftTopRightBottom(@NonNull View v, int left, int top, int right, int bottom) { argument
205 IMPL.setLeftTopRightBottom(v, left, top, right, bottom);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DBoundsRule.java23 * rectangular bound - left/top/right/bottom.
123 if (right == null) {
124 result.right = rect.right;
126 result.right = doCalculate(rect.left, right, rect.width());
146 this.right = boundsRule.right != null ? new ValueRule(boundsRule.right) : null;
161 /** {@link ValueRule} for right attribut
162 public ValueRule right; field in class:BoundsRule
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DNonOverlappingLinearLayoutWithForeground.java108 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
109 super.onLayout(changed, left, top, right, bottom);
H A DScaleFrameLayout.java97 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
107 parentRight = (int)(pivotX + (right - left - pivotX) / mLayoutScaleX + 0.5f)
111 parentRight = right - left - getPaddingRight();
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DContentFrameLayout.java86 public void setDecorPadding(int left, int top, int right, int bottom) { argument
87 mDecorPadding.set(left, top, right, bottom);
112 w -= (mDecorPadding.left + mDecorPadding.right);
156 min -= (mDecorPadding.left + mDecorPadding.right);
/frameworks/av/media/libaudiohal/
H A DStreamHalHidl.cpp294 status_t StreamOutHalHidl::setVolume(float left, float right) { argument
296 return processReturn("setVolume", mStream->setVolume(left, right));
/frameworks/av/media/libstagefright/foundation/
H A DMetaData.cpp83 int32_t right, int32_t bottom) {
87 r.mRight = right;
172 int32_t *right, int32_t *bottom) {
185 *right = r->mRight;
80 setRect( uint32_t key, int32_t left, int32_t top, int32_t right, int32_t bottom) argument
169 findRect( uint32_t key, int32_t *left, int32_t *top, int32_t *right, int32_t *bottom) argument
/frameworks/base/core/java/android/net/
H A DNetworkUtils.java321 public static boolean addressTypeMatches(InetAddress left, InetAddress right) { argument
322 return (((left instanceof Inet4Address) && (right instanceof Inet4Address)) ||
323 ((left instanceof Inet6Address) && (right instanceof Inet6Address)));
/frameworks/base/core/java/android/text/method/
H A DBaseMovementMethod.java177 return right(widget, buffer);
257 * Performs a right movement action.
258 * Moves the cursor or scrolls right by one character.
264 protected boolean right(TextView widget, Spannable buffer) { method in class:BaseMovementMethod
446 int right = Integer.MIN_VALUE;
449 if (lineRight > right) {
450 right = lineRight;
453 return right;
478 * Performs a scroll right action.
479 * Scrolls right b
[all...]
/frameworks/base/core/java/android/view/
H A DWindowInsets.java147 * Returns the right system window inset in pixels.
153 * @return The right system window inset
156 return mSystemWindowInsets.right;
201 * Returns the right window decor inset in pixels.
207 * @return The right window decor inset
211 return mWindowDecorInsets.right;
239 mSystemWindowInsets.right != 0 || mSystemWindowInsets.bottom != 0;
254 mWindowDecorInsets.right != 0 || mWindowDecorInsets.bottom != 0;
286 * <p>A round window's left, top, right and bottom edges reach all the way to the
314 * @param right tru
319 consumeSystemWindowInsets(boolean left, boolean top, boolean right, boolean bottom) argument
343 replaceSystemWindowInsets(int left, int top, int right, int bottom) argument
377 consumeWindowDecorInsets(boolean left, boolean top, boolean right, boolean bottom) argument
393 replaceWindowDecorInsets(int left, int top, int right, int bottom) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DFrameLayout.java125 mForegroundPaddingRight = padding.right;
260 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
261 layoutChildren(left, top, right, bottom, false /* no force left gravity */);
264 void layoutChildren(int left, int top, int right, int bottom, boolean forceLeftGravity) { argument
268 final int parentRight = right - left - getPaddingRightWithForeground();
/frameworks/base/core/jni/android/graphics/
H A DGraphicBuffer.cpp67 jfieldID right; member in struct:android::__anon1037
168 rect.right = GET_INT(dirtyRect, gRectClassInfo.right);
200 nativeCanvas->clipRect(rect.left, rect.top, rect.right, rect.bottom,
205 int(rect.left), int(rect.top), int(rect.right), int(rect.bottom));
315 gRectClassInfo.right = GetFieldIDOrDie(env, clazz, "right", "I");

Completed in 950 milliseconds

1234567891011>>