Searched defs:rhs (Results 101 - 108 of 108) sorted by relevance

12345

/frameworks/native/opengl/libagl/
H A Degl.cpp283 static Region subtract(const Rect& lhs, const Rect& rhs) { argument
287 if (lhs.top < rhs.top) { // top rect
291 storage->bottom = rhs.top;
294 const int32_t top = max(lhs.top, rhs.top);
295 const int32_t bot = min(lhs.bottom, rhs.bottom);
297 if (lhs.left < rhs.left) { // left-side rect
300 storage->right = rhs.left;
304 if (lhs.right > rhs.right) { // right-side rect
305 storage->left = rhs.right;
312 if (lhs.bottom > rhs
[all...]
/frameworks/native/services/sensorservice/
H A DSensorService.cpp678 static int cmp(void const* lhs, void const* rhs) { argument
680 sensors_event_t const* r = static_cast<sensors_event_t const*>(rhs);
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java113 public int compare(View lhs, View rhs) {
114 if (lhs == rhs) {
117 CoordinatorLayout.this, lhs, rhs)) {
119 } else if (((LayoutParams) rhs.getLayoutParams()).dependsOn(
120 CoordinatorLayout.this, rhs, lhs)) {
1580 public int compare(View lhs, View rhs) { argument
1582 final float rz = ViewCompat.getZ(rhs);
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java626 public int compare(String lhs, String rhs) { argument
629 } else if (rhs == null) {
632 return lhs.compareTo(rhs);
/frameworks/base/core/java/com/android/internal/widget/
H A DViewPager.java125 public int compare(ItemInfo lhs, ItemInfo rhs) {
126 return lhs.position - rhs.position;
2829 public int compare(View lhs, View rhs) { argument
2831 final LayoutParams rlp = (LayoutParams) rhs.getLayoutParams();
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java125 public int compare(ItemInfo lhs, ItemInfo rhs) {
126 return lhs.position - rhs.position;
2969 public int compare(View lhs, View rhs) { argument
2971 final LayoutParams rlp = (LayoutParams) rhs.getLayoutParams();
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp3500 SurfaceFlinger::LayerVector::LayerVector(const LayerVector& rhs) argument
3501 : SortedVector<sp<Layer> >(rhs) {
3505 const void* rhs) const
3509 const sp<Layer>& r(*reinterpret_cast<const sp<Layer>*>(rhs));
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 222 milliseconds

12345