Home
last modified time | relevance | path

Searched defs:left (Results 1 – 25 of 422) sorted by relevance

12345678910>>...17

/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
DBluetoothCodecConfigTest.java76 int left = kCodecTypeArray.length; in selectCodecType() local
84 int left = kCodecTypeArray.length * kCodecPriorityArray.length; in selectCodecPriority() local
92 int left = kCodecTypeArray.length * kCodecPriorityArray.length * kSampleRateArray.length; in selectSampleRate() local
100 int left = kCodecTypeArray.length * kCodecPriorityArray.length * kSampleRateArray.length * in selectBitsPerSample() local
109 int left = kCodecTypeArray.length * kCodecPriorityArray.length * kSampleRateArray.length * in selectChannelMode() local
118 int left = kCodecTypeArray.length * kCodecPriorityArray.length * kSampleRateArray.length * in selectCodecSpecific1() local
127 int left = kCodecTypeArray.length * kCodecPriorityArray.length * kSampleRateArray.length * in selectCodecSpecific2() local
137 int left = kCodecTypeArray.length * kCodecPriorityArray.length * kSampleRateArray.length * in selectCodecSpecific3() local
147 int left = kCodecTypeArray.length * kCodecPriorityArray.length * kSampleRateArray.length * in selectCodecSpecific4() local
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNearestTouchFrameTest.java59 View left = mockViewAt(0, 0, 10, 10); in testNoActionOnLargeDevices() local
75 View left = mockViewAt(0, 0, 10, 10); in testInvisibleViews() local
94 View left = mockViewAt(0, 0, 10, 10); in testNearestView_DetachedViewsExcluded() local
112 View left = mockViewAt(0, 0, 10, 10); in testHorizontalSelection_Left() local
128 View left = mockViewAt(0, 0, 10, 10); in testHorizontalSelection_Right() local
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DGlobalSortKeyComparatorTest.java50 NotificationRecord left = new NotificationRecord(getContext(), in testComparator() local
89 NotificationRecord left = new NotificationRecord(getContext(), in testNoCrash_leftNull() local
119 NotificationRecord left = new NotificationRecord(getContext(), in testNoCrash_rightNull() local
/frameworks/base/core/java/android/hardware/camera2/params/
DReprocessFormatsMap.java77 int left = entry.length; in ReprocessFormatsMap() local
132 int left = mEntry.length; in getInputs() local
180 int left = mEntry.length; in getOutputs() local
/frameworks/base/graphics/java/android/graphics/
DRectF.java36 public float left; field in RectF
56 public RectF(float left, float top, float right, float bottom) { in RectF()
203 public void set(float left, float top, float right, float bottom) { in set()
308 public boolean contains(float left, float top, float right, float bottom) { in contains()
350 public boolean intersect(float left, float top, float right, float bottom) { in intersect()
423 public boolean intersects(float left, float top, float right, in intersects()
472 public void union(float left, float top, float right, float bottom) { in union()
DRect.java48 public int left; field in Rect
83 public Rect(int left, int top, int right, int bottom) { in Rect()
357 public void set(int left, int top, int right, int bottom) { in set()
454 public void inset(int left, int top, int right, int bottom) { in inset()
489 public boolean contains(int left, int top, int right, int bottom) { in contains()
531 public boolean intersect(int left, int top, int right, int bottom) { in intersect()
609 public boolean intersects(int left, int top, int right, int bottom) { in intersects()
637 public void union(int left, int top, int right, int bottom) { in union()
DInsets.java35 public final int left; field in Insets
40 private Insets(int left, int top, int right, int bottom) { in Insets()
59 public static @NonNull Insets of(int left, int top, int right, int bottom) { in of()
DOutline.java175 public void setRect(int left, int top, int right, int bottom) { in setRect()
191 public void setRoundRect(int left, int top, int right, int bottom, float radius) { in setRoundRect()
244 public void setOval(int left, int top, int right, int bottom) { in setOval()
DRegion.java80 public Region(int left, int top, int right, int bottom) { in Region()
106 public boolean set(int left, int top, int right, int bottom) { in set()
197 public native boolean quickContains(int left, int top, int right, in quickContains()
214 public native boolean quickReject(int left, int top, int right, int bottom); in quickReject()
274 public boolean op(int left, int top, int right, int bottom, @NonNull Op op) { in op()
429 private static native boolean nativeSetRect(long native_dst, int left, in nativeSetRect()
437 private static native boolean nativeOp(long native_dst, int left, int top, in nativeOp()
DPath.java501 public void arcTo(float left, float top, float right, float bottom, float startAngle, in arcTo()
532 private void detectSimplePath(float left, float top, float right, float bottom, Direction dir) { in detectSimplePath()
563 public void addRect(float left, float top, float right, float bottom, @NonNull Direction dir) { in addRect()
583 public void addOval(float left, float top, float right, float bottom, @NonNull Direction dir) { in addOval()
618 public void addArc(float left, float top, float right, float bottom, float startAngle, in addArc()
643 public void addRoundRect(float left, float top, float right, float bottom, float rx, float ry, in addRoundRect()
673 public void addRoundRect(float left, float top, float right, float bottom, in addRoundRect()
841 private static native void nArcTo(long nPath, float left, float top, float right, float bottom, in nArcTo()
844 private static native void nAddRect(long nPath, float left, float top, in nAddRect()
846 private static native void nAddOval(long nPath, float left, float top, in nAddOval()
[all …]
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DWindowFrameTests.java84 private void assertRect(Rect rect, int left, int top, int right, int bottom) { in assertRect()
91 private void assertContentInset(WindowState w, int left, int top, int right, int bottom) { in assertContentInset()
92 assertRect(w.getContentInsets(), left, top, right, bottom); in assertContentInset() local
95 private void assertVisibleInset(WindowState w, int left, int top, int right, int bottom) { in assertVisibleInset()
96 assertRect(w.getVisibleInsets(), left, top, right, bottom); in assertVisibleInset() local
99 private void assertStableInset(WindowState w, int left, int top, int right, int bottom) { in assertStableInset()
100 assertRect(w.getStableInsets(), left, top, right, bottom); in assertStableInset() local
103 private void assertFrame(WindowState w, int left, int top, int right, int bottom) { in assertFrame()
104 assertRect(w.getFrameLw(), left, top, right, bottom); in assertFrame() local
123 FrameTestWindowState w, int left, int top, int right, int bottom) { in assertPolicyCrop()
/frameworks/av/media/libeffects/lvm/lib/Common/src/
DFrom2iToMS_16x16.c33 LVM_INT32 temp1,left,right; in From2iToMS_16x16() local
62 LVM_FLOAT temp1,left,right; in From2iToMS_Float() local
/frameworks/minikin/include/minikin/
DRange.h72 inline static bool intersects(const Range& left, const Range& right) { in intersects()
76 inline static Range intersection(const Range& left, const Range& right) { in intersection()
82 static Range merge(const Range& left, const Range& right) { in merge()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DSystemViewInfo.java29 public SystemViewInfo(String name, Object cookie, int left, int top, in SystemViewInfo()
34 public SystemViewInfo(String name, Object cookie, int left, int top, in SystemViewInfo()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DRopeByteString.java118 private final ByteString left; field in RopeByteString
132 private RopeByteString(ByteString left, ByteString right) { in RopeByteString()
155 static ByteString concatenate(ByteString left, ByteString right) { in concatenate()
218 private static ByteString concatenateBytes(ByteString left, in concatenateBytes()
239 static RopeByteString newInstanceForTest(ByteString left, ByteString right) { in newInstanceForTest()
570 private ByteString balance(ByteString left, ByteString right) { in balance()
634 ByteString left = prefixesStack.pop(); in insert() local
646 ByteString left = prefixesStack.pop(); in insert() local
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DMinimizedDockShadow.java53 private void updatePaint(int left, int top, int right, int bottom) { in updatePaint()
82 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { in onLayout()
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DPositionListenerActivity.java67 protected void onLayout(boolean changed, int left, int top, int right, int bottom) { in onLayout()
82 public void positionChanged(long frameNumber, int left, int top, int right, int bottom) { in positionChanged()
/frameworks/base/services/core/java/com/android/server/notification/
DGlobalSortKeyComparator.java29 public int compare(NotificationRecord left, NotificationRecord right) { in compare()
/frameworks/base/core/proto/android/graphics/
Drect.proto27 optional int32 left = 1; field
/frameworks/native/libs/vr/libdvr/include/dvr/
Ddvr_hardware_composer_types.h42 int32_t left; member
49 float left; member
/frameworks/base/core/tests/coretests/src/android/widget/focus/
DFocusAfterRemoval.java38 final LinearLayout left = findViewById(R.id.leftLayout); in onCreate() local
/frameworks/base/core/java/android/text/style/
DLineBackgroundSpan.java49 @Px int left, @Px int right, in drawBackground()
124 @Px int left, @Px int right, in drawBackground()
/frameworks/base/libs/hwui/
DSkiaCanvas.cpp172 int SkiaCanvas::saveLayer(float left, float top, float right, float bottom, const SkPaint* paint, in saveLayer()
180 int SkiaCanvas::saveLayerAlpha(float left, float top, float right, float bottom, int alpha, in saveLayerAlpha()
190 int SkiaCanvas::saveUnclippedLayer(int left, int top, int right, int bottom) { in saveUnclippedLayer()
377 bool SkiaCanvas::quickRejectRect(float left, float top, float right, float bottom) const { in quickRejectRect()
386 bool SkiaCanvas::clipRect(float left, float top, float right, float bottom, SkClipOp op) { in clipRect()
488 void SkiaCanvas::drawRect(float left, float top, float right, float bottom, const SkPaint& paint) { in drawRect()
498 void SkiaCanvas::drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect()
515 void SkiaCanvas::drawOval(float left, float top, float right, float bottom, const SkPaint& paint) { in drawOval()
521 void SkiaCanvas::drawArc(float left, float top, float right, float bottom, float startAngle, in drawArc()
548 void SkiaCanvas::drawBitmap(Bitmap& bitmap, float left, float top, const SkPaint* paint) { in drawBitmap()
[all …]
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
DNopCanvas.java69 public int saveLayer(float left, float top, float right, float bottom, Paint paint, in saveLayer()
75 public int saveLayer(float left, float top, float right, float bottom, Paint paint) { in saveLayer()
90 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha, in saveLayerAlpha()
96 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha) { in saveLayerAlpha()
166 public void drawRect(float left, float top, float right, float bottom, Paint paint) { in drawRect()
174 public void drawOval(float left, float top, float right, float bottom, Paint paint) { in drawOval()
187 public void drawArc(float left, float top, float right, float bottom, float startAngle, in drawArc()
196 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, in drawRoundRect()
217 public void drawBitmap(Bitmap bitmap, float left, float top, Paint paint) { in drawBitmap()
/frameworks/base/core/java/android/transition/
DSidePropagation.java93 int left = loc[0] + Math.round(sceneRoot.getTranslationX()); in getStartDelay() local
122 int left, int top, int right, int bottom) { in distance()

12345678910>>...17