Searched refs:rhs (Results 176 - 189 of 189) sorted by relevance

12345678

/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java193 public int compare(Integer lhs, Integer rhs) {
195 int rc = pidCounts.get(rhs);
/frameworks/native/services/sensorservice/
H A DSensorService.cpp760 static int cmp(void const* lhs, void const* rhs) { argument
762 sensors_event_t const* r = static_cast<sensors_event_t const*>(rhs);
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java1055 public int compare(ChooserTarget lhs, ChooserTarget rhs) { argument
1057 return (int) Math.signum(rhs.getScore() - lhs.getScore());
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java51 * matrix. In matrix notation: result = lhs x rhs. Due to the way
53 * effect as first multiplying by the rhs matrix, then multiplying by
56 * The same float array may be passed for result, lhs, and/or rhs. However,
58 * either the lhs or rhs elements.
65 * @param rhs The float array that holds the right-hand-side matrix.
66 * @param rhsOffset The offset into the rhs array where the rhs is stored.
68 * @throws IllegalArgumentException if result, lhs, or rhs are null, or if
70 * rhsOffset + 16 > rhs.length.
73 float[] lhs, int lhsOffset, float[] rhs, in
72 multiplyMM(float[] result, int resultOffset, float[] lhs, int lhsOffset, float[] rhs, int rhsOffset) argument
[all...]
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.h126 const std::shared_ptr<Layer>& rhs);
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp3806 SurfaceFlinger::LayerVector::LayerVector(const LayerVector& rhs) argument
3807 : SortedVector<sp<Layer> >(rhs) {
3811 const void* rhs) const
3815 const sp<Layer>& r(*reinterpret_cast<const sp<Layer>*>(rhs));
H A DSurfaceFlinger_hwc1.cpp3693 SurfaceFlinger::LayerVector::LayerVector(const LayerVector& rhs) argument
3694 : SortedVector<sp<Layer> >(rhs) {
3698 const void* rhs) const
3702 const sp<Layer>& r(*reinterpret_cast<const sp<Layer>*>(rhs));
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java1824 public int compare(View lhs, View rhs) { argument
1826 final float rz = ViewCompat.getZ(rhs);
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DGridWidgetTest.java59 public int compare(View lhs, View rhs) {
61 return lhs.getLeft() - rhs.getLeft();
63 return lhs.getTop() - rhs.getTop();
/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. ...
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java671 public int compare(String lhs, String rhs) { argument
674 } else if (rhs == null) {
677 return lhs.compareTo(rhs);
/frameworks/base/core/java/android/os/
H A DBatteryStats.java4101 public int compare(TimerEntry lhs, TimerEntry rhs) {
4103 long rhsTime = rhs.mTime;
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java15819 public int compare(MemItem lhs, MemItem rhs) {
15820 if (lhs.pss < rhs.pss) {
15822 } else if (lhs.pss > rhs.pss) {
16565 @Override public int compare(ProcessMemInfo lhs, ProcessMemInfo rhs) {
16566 if (lhs.oomAdj != rhs.oomAdj) {
16567 return lhs.oomAdj < rhs.oomAdj ? -1 : 1;
16569 if (lhs.pss != rhs.pss) {
16570 return lhs.pss < rhs.pss ? 1 : -1;
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 581 milliseconds

12345678