Searched defs:right (Results 51 - 75 of 301) sorted by relevance

1234567891011>>

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DAssertHelpers.java59 * right.
65 * @param right Right array
67 public static void assertArrayNotGreater(String message, float[] left, float[] right) { argument
68 assertEquals("Array lengths did not match", left.length, right.length);
71 String rightString = Arrays.toString(right);
76 "right = %s)",
77 message, left[i], right[i], i, leftString, rightString);
79 assertTrue(msg, left[i] <= right[i]);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStackScrollerDecorView.java48 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
49 super.onLayout(changed, left, top, right, bottom);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcherScrim.java62 canvas.drawRect(isLtr ? bounds.right - width : 0, 0,
63 isLtr ? bounds.right : bounds.left + width, width, mRadialGradientPaint);
88 public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, argument
90 if (left != oldLeft || top != oldTop || right != oldRight || bottom != oldBottom) {
91 mLayoutWidth = right - left;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DStatsFilter.java115 float top, float right, float bottom, float[] statsArray);
114 regionscore(ByteBuffer imageBuffer, int width, int height, float left, float top, float right, float bottom, float[] statsArray) argument
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeBase.h23 NodeBase* right; member in class:mcld::NodeBase
26 NodeBase() : left(NULL), right(NULL) {}
57 bool isRoot() const { return (m_pNode->right == m_pNode); }
60 return ((m_pNode->right) != (m_pNode->right->right));
64 return ((m_pNode->left) != (m_pNode->left->right));
83 this->m_pNode = this->m_pNode->right;
95 this->m_pNode->right = pOther;
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/view/
H A DNavigationBarButton.java56 public void setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) { argument
59 if (right != null) right = TintedDrawable.wrap(right.mutate());
61 super.setCompoundDrawables(left, top, right, bottom);
99 drawables[2] = compoundDrawables[2]; // right
/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/
H A DGlifRecyclerLayout.java98 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
99 super.onLayout(changed, left, top, right, bottom);
166 * 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.java98 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
99 super.onLayout(changed, left, top, right, bottom);
145 * theme and inset it {@code inset} pixels to the right (or left in RTL layouts).
H A DSetupWizardListLayout.java95 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
96 super.onLayout(changed, left, top, right, bottom);
130 * 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/design/src/android/support/design/internal/
H A DForegroundLinearLayout.java179 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
180 super.onLayout(changed, left, top, right, bottom);
/frameworks/support/percent/src/android/support/percent/
H A DPercentFrameLayout.java112 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
113 super.onLayout(changed, left, top, right, bottom);
H A DPercentRelativeLayout.java112 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
113 super.onLayout(changed, left, top, right, bottom);
/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.java93 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
103 parentRight = (int)(pivotX + (right - left - pivotX) / mLayoutScaleX + 0.5f)
107 parentRight = right - left - getPaddingRight();
/frameworks/support/v4/api21/android/support/v4/graphics/drawable/
H A DDrawableCompatLollipop.java40 int right, int bottom) {
41 drawable.setHotspotBounds( left, top, right, bottom);
39 setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) argument
H A DDrawableWrapperLollipop.java48 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
49 mDrawable.setHotspotBounds(left, top, right, bottom);
/frameworks/support/v4/api21/android/support/v4/view/
H A DWindowInsetsCompatApi21.java76 public WindowInsetsCompat replaceSystemWindowInsets(int left, int top, int right, int bottom) { argument
77 return new WindowInsetsCompatApi21(mSource.replaceSystemWindowInsets(left, top, right, bottom));
/frameworks/support/v4/java/android/support/v4/view/
H A DKeyEventCompat.java54 int modifiers, int basic, int left, int right) {
56 final int directional = left | right;
53 metaStateFilterDirectionalModifiers(int metaState, int modifiers, int basic, int left, int right) argument
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DViewCompatJB.java41 int right, int bottom) {
42 view.postInvalidate(left, top, right, bottom);
40 postInvalidateOnAnimation(View view, int left, int top, int right, int bottom) argument
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DContentFrameLayout.java82 public void setDecorPadding(int left, int top, int right, int bottom) { argument
83 mDecorPadding.set(left, top, right, bottom);
108 w -= (mDecorPadding.left + mDecorPadding.right);
152 min -= (mDecorPadding.left + mDecorPadding.right);
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DNetworkImageView.java197 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
198 super.onLayout(changed, left, top, right, bottom);
/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.java302 public static boolean addressTypeMatches(InetAddress left, InetAddress right) { argument
303 return (((left instanceof Inet4Address) && (right instanceof Inet4Address)) ||
304 ((left instanceof Inet6Address) && (right instanceof Inet6Address)));

Completed in 6608 milliseconds

1234567891011>>