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

1234567891011>>

/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
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAlertDialogLayout.java263 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
266 // Where right end of child should go
267 final int width = right - left;
H A DRtlSpacingHelper.java21 * RtlSpacingHelper manages the relationship between left/right and start/end for views
67 public void setAbsolute(int left, int right) { argument
70 if (right != UNDEFINED) mRight = mExplicitRight = right;
/frameworks/support/wear/tests/src/android/support/wear/widget/util/
H A DMoreViewAssertions.java61 public static ViewAssertion right(final Matcher<Integer> matcher) { method in class:MoreViewAssertions
65 assertThat("View right: " + HumanReadables.describe(view), view.getRight(),
129 * Returns a new ViewAssertion against a match of the view's right position, relative to the
133 * @param matcher matcher for the right position
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dms_stereo.c106 Word32 left, right; local
108 right = (mdctSpectrumRight[j] >> 1);
109 mdctSpectrumLeft[j] = left + right;
110 mdctSpectrumRight[j] = left - right;
/frameworks/av/services/audioflinger/
H A DFastMixerDumpState.cpp146 // assume same number of tail samples on each side, left and right
148 CentralTendencyStatistics left, right; local
151 right.sample(tail[n - (i + 1)]);
156 " right tail: mean=%.2f min=%.2f max=%.2f stddev=%.2f\n",
158 right.mean()*1e-6, right.minimum()*1e-6, right.maximum()*1e-6,
159 right.stddev()*1e-6);
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioProfile.cpp43 bool operator == (const SortedVector<T> &left, const SortedVector<T> &right) argument
45 if (left.size() != right.size()) {
48 for(size_t index = 0; index < right.size(); index++) {
49 if (left[index] != right[index]) {
/frameworks/base/core/java/android/text/method/
H A DArrowKeyMovementMethod.java79 protected boolean right(TextView widget, Spannable buffer) { method in class:ArrowKeyMovementMethod
H A DLinkMovementMethod.java88 protected boolean right(TextView widget, Spannable buffer) { method in class:LinkMovementMethod
93 return super.right(widget, buffer);
/frameworks/base/core/java/android/view/inputmethod/
H A DSparseRectFArray.java46 * {@code rects[mKeys[0]].right}, {@code rects[mKeys[0]].bottom},
48 * {@code rects[mKeys[1]].right}, {@code rects[mKeys[1]].bottom},
196 * @param right right of the rectangle.
203 final float left, final float top, final float right, final float bottom,
210 mCoordinates[baseCoordinatesIndex + 2] = right;
202 append(final int key, final float left, final float top, final float right, final float bottom, final int flags) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingLinearLayout.java209 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
214 // Where right end of child should go
215 final int width = right - left;
H A DNotificationActionListLayout.java197 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
199 super.onLayout(changed, left, top, right, bottom);
220 childLeft = mPaddingLeft + right - left - mTotalWidth;
/frameworks/base/core/jni/
H A Dandroid_view_TextureView.cpp46 jfieldID right; member in struct:android::__anon1146
150 rect.right = GET_INT(dirtyRect, gRectClassInfo.right);
173 nativeCanvas->clipRect(rect.left, rect.top, rect.right, rect.bottom,
178 int(rect.left), int(rect.top), int(rect.right), int(rect.bottom));
219 gRectClassInfo.right = GetFieldIDOrDie(env, clazz, "right", "I");
/frameworks/base/graphics/java/android/graphics/
H A DOutline.java173 public void setRect(int left, int top, int right, int bottom) { argument
174 setRoundRect(left, top, right, bottom, 0.0f);
181 setRect(rect.left, rect.top, rect.right, rect.bottom);
189 public void setRoundRect(int left, int top, int right, int bottom, float radius) { argument
190 if (left >= right || top >= bottom) {
200 mRect.set(left, top, right, bottom);
208 setRoundRect(rect.left, rect.top, rect.right, rect.bottom, radius);
242 public void setOval(int left, int top, int right, int bottom) { argument
243 if (left >= right || top >= bottom) {
248 if ((bottom - top) == (right
[all...]
/frameworks/base/libs/hwui/
H A DOutline.h42 void setRoundRect(int left, int top, int right, int bottom, float radius, float alpha) { argument
46 && right == mBounds.right
55 mBounds.set(left, top, right, bottom);
61 mPath.addRoundRect(SkRect::MakeLTRB(left, top, right, bottom),
64 mPath.addRect(left, top, right, bottom);
H A DSnapshot.cpp85 void Snapshot::setClip(float left, float top, float right, float bottom) { argument
87 mClipArea->setClip(left, top, right, bottom);
104 void Snapshot::resetClip(float left, float top, float right, float bottom) { argument
109 setClip(left, top, right, bottom);
142 state->dangerRects[0].right = state->dangerRects[2].right = bounds.left + radius;
143 state->dangerRects[1].left = state->dangerRects[3].left = bounds.right - radius;
201 clipRect.left, clipRect.top, clipRect.right, clipRect.bottom, mClipArea->isSimple());
/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/qs/
H A DQSContainerImpl.java95 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
96 super.onLayout(changed, left, top, right, bottom);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableOutlineView.java89 setOutlineRect(rect.left, rect.top, rect.right, rect.bottom);
128 protected void setOutlineRect(float left, float top, float right, float bottom) { argument
132 mOutlineRect.set((int) left, (int) top, (int) right, (int) bottom);
136 mOutlineRect.right = (int) Math.max(left, mOutlineRect.right);
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/services/tests/servicestests/src/com/android/server/wm/
H A DWindowFrameTests.java108 public void assertRect(Rect rect, int left, int top, int right, int bottom) { argument
111 assertEquals(right, rect.right);
142 sf.right -= rightStableInset;
/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/base/tools/aapt2/compile/
H A DImage.h78 inline bool operator==(const Range& left, const Range& right) { argument
79 return left.start == right.start && left.end == right.end;
85 * edges, while `right` and `bottom` are measured from the right and bottom
91 int32_t right = 0; member in struct:aapt::Bounds
96 : left(l), top(t), right(r), bottom(b) {}
102 return left != 0 || top != 0 || right != 0 || bottom != 0;
105 inline bool operator==(const Bounds& left, const Bounds& right) { argument
106 return left.left == right
[all...]
/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;

Completed in 1228 milliseconds

1234567891011>>