Searched defs:right (Results 126 - 150 of 336) sorted by relevance

1234567891011>>

/frameworks/rs/
H A DrsMatrix4x4.cpp254 // is also the destination, e.g. left.loadMultiply(left, right);
276 void Matrix4x4::loadOrtho(float left, float right, float bottom, float top, float near, float far) { argument
278 m[0] = 2.f / (right - left);
281 m[12]= -(right + left) / (right - left);
286 void Matrix4x4::loadFrustum(float left, float right, float bottom, float top, float near, float far) { argument
288 m[0] = 2.f * near / (right - left);
290 m[8] = (right + left) / (right - left);
302 float right local
[all...]
/frameworks/support/compat/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java64 public void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) { argument
226 public void setHotspotBounds(Drawable drawable, int left, int top, int right, int bottom) { argument
227 drawable.setHotspotBounds(left, top, right, bottom);
364 * direction is RTL (right-to left). See
380 * direction is RTL right-to-left. See {@link android.util.LayoutDirection}.
411 int right, int bottom) {
412 IMPL.setHotspotBounds(drawable, left, top, right, bottom);
410 setHotspotBounds(@onNull Drawable drawable, int left, int top, int right, int bottom) argument
/frameworks/support/core-ui/java/android/support/v4/view/
H A DPagerTabStrip.java156 public void setPadding(int left, int top, int right, int bottom) { argument
160 super.setPadding(left, top, right, bottom);
267 final int right = mCurrText.getRight() + mTabPadding;
271 canvas.drawRect(left, top, right, bottom, mTabPaint);
285 int right = mCurrText.getRight() + mTabPadding;
288 r.set(left, top, right, bottom);
294 right = mCurrText.getRight() + mTabPadding;
295 r.union(left, top, right, bottom);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DSwipeProgressBar.java104 mParent, mBounds.left, mBounds.top, mBounds.right, mBounds.bottom);
233 mParent, mBounds.left, mBounds.top, mBounds.right, mBounds.bottom);
270 void setBounds(int left, int top, int right, int bottom) { argument
273 mBounds.right = right;
/frameworks/support/design/src/android/support/design/internal/
H A DBottomNavigationMenuView.java161 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
163 final int width = right - left;
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java81 // Adds an item at the bottom-right quarter of the custom view.
156 * @param right Right coordinate as a fraction of the parent width,
159 public CustomItem addItem(String description, float left, float top, float right, argument
163 item.mBounds = new RectF(left, top, right, bottom);
197 parent.mBounds.left + bounds.right * parent.mBounds.width(),
278 out.right = (int) (in.right * width);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java81 // Adds an item at the bottom-right quarter of the custom view.
156 * @param right Right coordinate as a fraction of the parent width,
159 public CustomItem addItem(String description, float left, float top, float right, argument
163 item.mBounds = new RectF(left, top, right, bottom);
197 parent.mBounds.left + bounds.right * parent.mBounds.width(),
278 out.right = (int) (in.right * width);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatTextHelper.java284 void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
H A DAppCompatTextView.java177 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
178 super.onLayout(changed, left, top, right, bottom);
180 mTextHelper.onLayout(changed, left, top, right, bottom);
H A DListViewCompat.java95 mSelectionRightPadding = padding.right;
228 selectorRect.right += mSelectionRightPadding;
399 public void setHotspotBounds(int left, int top, int right, int bottom) { argument
401 super.setHotspotBounds(left, top, right, bottom);
/frameworks/support/v7/cardview/src/android/support/v7/widget/
H A DCardView.java125 public void setPadding(int left, int top, int right, int bottom) { argument
175 * @param right The right padding in pixels
183 public void setContentPadding(int left, int top, int right, int bottom) { argument
184 mContentPadding.set(left, top, right, bottom);
245 mContentPadding.right = a.getDimensionPixelSize(R.styleable.CardView_contentPaddingRight,
311 * Returns the inner padding before the Card's right edge
313 * @return the inner padding before the Card's right edge
316 return mContentPadding.right;
458 public void setShadowPadding(int left, int top, int right, in
[all...]
/frameworks/support/wear/src/android/support/wear/widget/
H A DBoxInsetLayout.java44 * specify the child's edges to be boxed in: {@code left|top|right|bottom} or {@code all}. The
203 + mForegroundPadding.right;
231 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
235 final int parentRight = right - left - getPaddingRight() - mForegroundPadding.right;
334 int rightParentPadding = getPaddingRight() + mForegroundPadding.right;
427 /** The view will force an inset on the right edge of the children. */
/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/av/media/libaudiohal/
H A DStreamHalLocal.cpp127 status_t StreamOutHalLocal::setVolume(float left, float right) { argument
129 return mStream->set_volume(mStream, left, right);
/frameworks/base/core/java/android/view/
H A DDisplayListCanvas.java216 CanvasProperty<Float> right, CanvasProperty<Float> bottom, CanvasProperty<Float> rx,
219 right.getNativeContainer(), bottom.getNativeContainer(),
215 drawRoundRect(CanvasProperty<Float> left, CanvasProperty<Float> top, CanvasProperty<Float> right, CanvasProperty<Float> bottom, CanvasProperty<Float> rx, CanvasProperty<Float> ry, CanvasProperty<Paint> paint) argument
H A DWindowManagerInternal.java70 * @param right The rectangle right.
73 public void onRectangleOnScreenRequested(int left, int top, int right, int bottom); argument
/frameworks/base/core/java/android/view/animation/
H A DAnimationSet.java337 public void initializeInvalidateRegion(int left, int top, int right, int bottom) { argument
339 region.set(left, top, right, bottom);
/frameworks/base/core/java/android/view/inputmethod/
H A DCursorAnchorInfo.java127 * insertion marker or character bounds is placed at right-to-left (RTL) character.
337 * @param right x coordinate of the right edge of the character in local coordinates.
346 final float right, final float bottom, final int flags) {
353 mCharacterBoundsArrayBuilder.append(index, left, top, right, bottom, flags);
345 addCharacterBounds(final int index, final float left, final float top, final float right, final float bottom, final int flags) argument
/frameworks/base/core/java/android/widget/
H A DCheckedTextView.java336 protected void internalSetPadding(int left, int top, int right, int bottom) { argument
337 super.internalSetPadding(left, top, right, bottom);
403 final int right;
406 right = left + mCheckMarkWidth;
408 right = width - mBasePadding;
409 left = right - mCheckMarkWidth;
411 checkMarkDrawable.setBounds(mScrollX + left, top, mScrollX + right, bottom);
416 background.setHotspotBounds(mScrollX + left, top, mScrollX + right, bottom);
H A DDayPickerView.java214 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
225 final int width = right - left;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuItemView.java252 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
253 super.onLayout(changed, left, top, right, bottom);
316 * Shortcut has changed and we're showing it right now, need to
/frameworks/base/core/java/com/android/internal/widget/
H A DDecorCaptionView.java268 // first child to get the right Z-Ordering.
296 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfEditor.cpp55 jfieldID right; member in struct:android::__anon1039
231 float right; local
235 ? FPDFPage_GetMediaBox(page, &left, &top, &right, &bottom)
236 : FPDFPage_GetCropBox(page, &left, &top, &right, &bottom);
252 env->SetIntField(outBox, gRectClassInfo.right, (int) right);
286 const int right = env->GetIntField(box, gRectClassInfo.right); local
290 FPDFPage_SetMediaBox(page, left, top, right, bottom);
292 FPDFPage_SetCropBox(page, left, top, right, botto
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DRegion.java71 nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom);
76 public Region(int left, int top, int right, int bottom) { argument
78 nativeSetRect(mNativeRegion, left, top, right, bottom);
97 return nativeSetRect(mNativeRegion, r.left, r.top, r.right, r.bottom);
102 public boolean set(int left, int top, int right, int bottom) { argument
103 return nativeSetRect(mNativeRegion, left, top, right, bottom);
182 return quickContains(r.left, r.top, r.right, r.bottom);
191 public native boolean quickContains(int left, int top, int right, argument
200 return quickReject(r.left, r.top, r.right, r.bottom);
208 public native boolean quickReject(int left, int top, int right, in argument
267 op(int left, int top, int right, int bottom, Op op) argument
412 nativeSetRect(long native_dst, int left, int top, int right, int bottom) argument
420 nativeOp(long native_dst, int left, int top, int right, int bottom, int op) argument
[all...]
/frameworks/base/libs/hwui/
H A DClipArea.cpp38 handlePoint(transformedBounds, transform, r.right, r.top);
40 handlePoint(transformedBounds, transform, r.right, r.bottom);
155 rectPath.addRect(bounds.left, bounds.top, bounds.right, bounds.bottom);
211 void ClipArea::setClip(float left, float top, float right, float bottom) { argument
214 mClipRect.set(left, top, right, bottom);
541 other.op(rect.left, rect.top, rect.right, rect.bottom, SkRegion::kUnion_Op);

Completed in 815 milliseconds

1234567891011>>