Searched refs:right (Results 1 - 25 of 772) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/itf/
H A DIOutputMixExt.cpp30 short right; member in struct:__anon2109
245 mixBuffer->right += (short) (source->right * track->mGains[1]);
251 mixBuffer->right += source->right;
259 mixBuffer->right = (short) (source->right * track->mGains[1]);
/frameworks/wilhelm/tests/automated/
H A DBufferQueue_test.cpp39 short right; member in struct:__anon2177
143 stereoBuffer1[nframes - 1 - i].right = pcm;
/frameworks/wilhelm/tests/sandbox/
H A Dintbufq.c53 short right; member in struct:__anon2183
154 sine[i].right = sine[i].left;
158 square[i].right = square[i].left;
162 sawtooth[i].right = sawtooth[i].left;
166 half[i].right = sawtooth[i].right / 2;
/frameworks/support/transition/api14/android/support/transition/
H A DViewUtilsApi14.java144 public void setLeftTopRightBottom(View v, int left, int top, int right, int bottom) { argument
147 v.setRight(right);
/frameworks/support/transition/api22/android/support/transition/
H A DViewUtilsApi22.java36 public void setLeftTopRightBottom(View v, int left, int top, int right, int bottom) { argument
40 sSetLeftTopRightBottomMethod.invoke(v, left, top, right, bottom);
/frameworks/support/transition/base/android/support/transition/
H A DViewUtilsImpl.java45 void setLeftTopRightBottom(View v, int left, int top, int right, int bottom); argument
/frameworks/support/transition/src/android/support/transition/
H A DChangeBounds.java117 int right = Math.round(bottomRight.x);
119 ViewUtils.setLeftTopRightBottom(view, left, top, right, bottom);
134 int right = view.getRight();
136 ViewUtils.setLeftTopRightBottom(view, left, top, right, bottom);
151 int right = left + view.getWidth();
153 ViewUtils.setLeftTopRightBottom(view, left, top, right, bottom);
278 final int startRight = startBounds.right;
279 final int endRight = endBounds.right;
H A DChangeImageTransform.java94 int right = view.getRight();
97 Rect bounds = new Rect(left, top, right, bottom);
H A DExplode.java63 int right = left + view.getWidth();
65 transitionValues.values.put(PROPNAME_SCREEN_BOUNDS, new Rect(left, top, right, bottom));
H A DRectEvaluator.java63 * (left, top, right, and bottom).
79 int right = startValue.right + (int) ((endValue.right - startValue.right) * fraction);
82 return new Rect(left, top, right, bottom);
84 mRect.set(left, top, right, bottom);
H A DSidePropagation.java95 int right = left + sceneRoot.getWidth();
104 epicenterX = (left + right) / 2;
109 left, top, right, bottom);
122 int left, int top, int right, int bottom) {
138 distance = right - viewX + Math.abs(epicenterY - viewY);
121 distance(View sceneRoot, int viewX, int viewY, int epicenterX, int epicenterY, int left, int top, int right, int bottom) argument
H A DTransitionUtils.java51 int right = Math.round(bounds.right);
60 int widthSpec = View.MeasureSpec.makeMeasureSpec(right - left, View.MeasureSpec.EXACTLY);
63 copy.layout(left, top, right, bottom);
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/transition/tests/src/android/support/transition/
H A DAutoTransitionTest.java99 public void onLayoutChange(View v, int left, int top, int right, int bottom, argument
H A DChangeClipBoundsTest.java67 assertTrue(midClip.right < redSquare.getRight() && midClip.right > newClip.right);
100 assertTrue(midClip.right < redSquare.getRight() && midClip.right > newClip.right);
H A DTransitionTest.java315 assertThat(rect.right, is(3));
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DHeadersFragment.java150 public void onLayoutChange(View v, int left, int top, int right, int bottom,
H A DHeadersSupportFragment.java153 public void onLayoutChange(View v, int left, int top, int right, int 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...]
H A DCompositeDrawable.java399 if (obj.getBoundsRule().right == null) {
400 obj.getBoundsRule().right = ValueRule.absoluteValue(value);
402 obj.getBoundsRule().right.setAbsoluteValue(value);
410 if (obj.getBoundsRule().right == null) {
411 return obj.mParent.getBounds().right;
413 return obj.getBoundsRule().right.getAbsoluteValue();
516 if (obj.getBoundsRule().right == null) {
517 obj.getBoundsRule().right = ValueRule.inheritFromParent(value);
519 obj.getBoundsRule().right.setFraction(value);
527 if (obj.getBoundsRule().right
[all...]
H A DFitWidthBitmapDrawable.java155 mDest.right = bounds.width();
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAbstractDetailsDescriptionPresenter.java90 public void onLayoutChange(View v, int left, int top, int right, int bottom,
H A DAbstractMediaItemPresenter.java575 * of optional custom actions on the right.
618 sTempRect.right += rootView.getHeight();
622 sTempRect.right += rootView.getHeight() / 2;
H A DBaseCardView.java437 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
505 onSizeChanged(0, 0, right - left, bottom - top);
H A DDetailsOverviewRowPresenter.java40 * description view on the right.
176 public void onLayoutChange(View v, int left, int top, int right,

Completed in 4105 milliseconds

1234567891011>>