/frameworks/native/include/android/ |
H A D | rect.h | 46 /** left position */ 47 int32_t left; member in struct:ARect 50 /** left position */
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
H A D | From2iToMS_16x16.c | 33 LVM_INT32 temp1,left,right; local 37 left = (LVM_INT32)*src; 44 temp1 = (left+right)>>1; 49 temp1 = (left-right)>>1;
|
/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | GlobalSortKeyComparator.java | 25 public int compare(NotificationRecord left, NotificationRecord right) { argument 26 if (left.getGlobalSortKey() == null) { 27 throw new IllegalStateException("Missing left global sort key: " + left); 32 return left.getGlobalSortKey().compareTo(right.getGlobalSortKey());
|
H A D | NotificationComparator.java | 27 public int compare(NotificationRecord left, NotificationRecord right) { argument 28 final int leftImportance = left.getImportance(); 36 final int leftPackagePriority = left.getPackagePriority(); 43 final int leftPriority = left.sbn.getNotification().priority; 50 final float leftPeople = left.getContactAffinity(); 58 return -1 * Long.compare(left.getRankingTimeMs(), right.getRankingTimeMs());
|
/frameworks/base/test-runner/src/junit/runner/ |
H A D | Sorter.java | 13 public void swap(Vector values, int left, int right); argument 16 public static void sortStrings(Vector values , int left, int right, Swapper swapper) { argument 17 int oleft= left; 19 String mid= (String)values.elementAt((left + right) / 2); 21 while (((String)(values.elementAt(left))).compareTo(mid) < 0) 22 left++; 25 if (left <= right) { 26 swapper.swap(values, left, right); 27 left++; 30 } while (left < [all...] |
/frameworks/av/services/audioflinger/ |
H A D | AudioResamplerFirOps.h | 52 int32_t mulRL(int left, int32_t in, uint32_t vRL) argument 56 if (left) { 69 int16_t v = left ? static_cast<int16_t>(vRL) : static_cast<int16_t>(vRL>>16); 120 int32_t mulAddRL(int left, uint32_t inRL, int16_t v, int32_t a) argument 124 if (left) { 137 int16_t s = left ? static_cast<int16_t>(inRL) : static_cast<int16_t>(inRL>>16); 143 int32_t mulAddRL(int left, uint32_t inRL, int32_t v, int32_t a) argument 147 if (left) { 160 int16_t s = left ? static_cast<int16_t>(inRL) : static_cast<int16_t>(inRL>>16);
|
/frameworks/base/core/java/android/text/style/ |
H A D | LineBackgroundSpan.java | 26 int left, int right, 25 drawBackground(Canvas c, Paint p, int left, int right, int top, int baseline, int bottom, CharSequence text, int start, int end, int lnum) argument
|
/frameworks/base/graphics/java/android/graphics/ |
H A D | Insets.java | 31 public final int left; field in class:Insets 36 private Insets(int left, int top, int right, int bottom) { argument 37 this.left = left; 48 * @param left the left inset 55 public static Insets of(int left, int top, int right, int bottom) { argument 56 if (left == 0 && top == 0 && right == 0 && bottom == 0) { 59 return new Insets(left, top, right, bottom); 70 return (r == null) ? NONE : of(r.left, [all...] |
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/ |
H A D | CardViewBindingAdapter.java | 37 public static void setContentPaddingLeft(CardView view, int left) { argument 41 view.setContentPadding(left, top, right, bottom); 46 int left = view.getContentPaddingLeft(); 49 view.setContentPadding(left, top, right, bottom); 54 int left = view.getContentPaddingLeft(); 57 view.setContentPadding(left, top, right, bottom); 62 int left = view.getContentPaddingLeft(); 65 view.setContentPadding(left, top, right, bottom);
|
/frameworks/minikin/include/minikin/ |
H A D | MinikinFontFreeType.h | 35 int left; member in struct:android::GlyphBitmap
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
H A D | FloatRect.h | 28 float left; member in class:android::FloatRect 34 : left(0), top(0), right(0), bottom(0) { } 36 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { } 38 inline float getWidth() const { return right - left; }
|
/frameworks/support/design/base/android/support/design/widget/ |
H A D | ShadowViewDelegate.java | 23 void setShadowPadding(int left, int top, int right, int bottom); argument
|
/frameworks/av/include/ndk/ |
H A D | NdkImage.h | 408 * (right - left) and the height of the rectangle is (bottom - top).</p> 411 int32_t left; member in struct:AImageCropRect
|
/frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/ |
H A D | CustomLayout.java | 30 public LayoutParams(int left, int top, int right, int bottom) { argument 32 mLeft = left;
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
H A D | SystemViewInfo.java | 29 public SystemViewInfo(String name, Object cookie, int left, int top, argument 31 super(name, cookie, left, top, right, bottom); 34 public SystemViewInfo(String name, Object cookie, int left, int top, argument 36 super(name, cookie, left, top, right, bottom, viewObject,
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/ |
H A D | BitShiftExpr.java | 27 BitShiftExpr(Expr left, String op, Expr right) { argument 28 super(left, right);
|
H A D | ComparisonExpr.java | 27 ComparisonExpr(String op, Expr left, Expr right) { argument 28 super(left, right);
|
H A D | InstanceOfExpr.java | 29 InstanceOfExpr(Expr left, String type) { argument 30 super(left);
|
/frameworks/support/compat/tests/java/android/support/v4/testutils/ |
H A D | TestUtils.java | 103 * Checks whether the specified rectangle matches the specified left / top / right / 107 int left, int top, int right, int bottom) { 108 Assert.assertEquals(failMessagePrefix + " left", rectangle.left, left); 106 assertRectangleBounds(String failMessagePrefix, @NonNull Rect rectangle, int left, int top, int right, int bottom) argument
|
/frameworks/support/core-ui/tests/java/android/support/v4/testutils/ |
H A D | TestUtils.java | 97 * Checks whether the specified rectangle matches the specified left / top / right / 101 int left, int top, int right, int bottom) { 102 Assert.assertEquals(failMessagePrefix + " left", rectangle.left, left); 100 assertRectangleBounds(String failMessagePrefix, @NonNull Rect rectangle, int left, int top, int right, int bottom) argument
|
/frameworks/support/design/src/android/support/design/internal/ |
H A D | BaselineLayout.java | 84 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument 87 final int parentRight = right - left - getPaddingRight();
|
/frameworks/support/v17/preference-leanback/api21/android/support/v17/internal/widget/ |
H A D | OutlineOnlyWithChildrenFrameLayout.java | 60 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { argument 61 super.onLayout(changed, left, top, right, bottom);
|
/frameworks/support/v7/cardview/base/android/support/v7/widget/ |
H A D | CardViewDelegate.java | 31 void setShadowPadding(int left, int top, int right, int bottom); argument
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/ |
H A D | h264bsdFillRow7.s | 28 left RN 2 label 60 CMP left, #0 66 SUBS left, left, #1
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/ |
H A D | h264bsdFillRow7.S | 28 #define left r2 define 44 void h264bsdFillRow7(const u8 * ref, u8 * fill, i32 left, i32 center, 51 CMP left, #0 57 SUBS left, left, #1
|