Searched refs:lhs (Results 101 - 110 of 110) sorted by relevance

12345

/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java123 public int compare(ItemInfo lhs, ItemInfo rhs) {
124 return lhs.position - rhs.position;
2886 public int compare(View lhs, View rhs) { argument
2887 final LayoutParams llp = (LayoutParams) lhs.getLayoutParams();
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskPersister.java436 public int compare(TaskRecord lhs, TaskRecord rhs) {
437 final long diff = rhs.mLastTimeMoved - lhs.mLastTimeMoved;
H A DActivityManagerService.java3728 public int compare(TaskRecord lhs, TaskRecord rhs) {
3729 return rhs.taskId - lhs.taskId;
13941 public int compare(MemItem lhs, MemItem rhs) {
13942 if (lhs.pss < rhs.pss) {
13944 } else if (lhs.pss > rhs.pss) {
14567 @Override public int compare(ProcessMemInfo lhs, ProcessMemInfo rhs) {
14568 if (lhs.oomAdj != rhs.oomAdj) {
14569 return lhs.oomAdj < rhs.oomAdj ? -1 : 1;
14571 if (lhs.pss != rhs.pss) {
14572 return lhs
[all...]
/frameworks/native/services/sensorservice/
H A DSensorService.cpp598 static int cmp(void const* lhs, void const* rhs) { argument
599 sensors_event_t const* l = static_cast<sensors_event_t const*>(lhs);
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java51 * matrix. In matrix notation: result = lhs x rhs. Due to the way
54 * the lhs matrix. This is the opposite of what you might expect.
56 * The same float array may be passed for result, lhs, and/or rhs. However,
58 * either the lhs or rhs elements.
63 * @param lhs The float array that holds the left-hand-side matrix.
64 * @param lhsOffset The offset into the lhs array where the lhs is stored
68 * @throws IllegalArgumentException if result, lhs, or rhs are null, or if
69 * resultOffset + 16 > result.length or lhsOffset + 16 > lhs.length or
73 float[] lhs, in
72 multiplyMM(float[] result, int resultOffset, float[] lhs, int lhsOffset, float[] rhs, int rhsOffset) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java626 public int compare(String lhs, String rhs) { argument
627 if (lhs == null) {
632 return lhs.compareTo(rhs);
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java2567 public int compare(ProcessState lhs, ProcessState rhs) {
2568 if (lhs.mTmpTotalTime < rhs.mTmpTotalTime) {
2570 } else if (lhs.mTmpTotalTime > rhs.mTmpTotalTime) {
/frameworks/base/core/java/android/os/
H A DBatteryStats.java2896 public int compare(TimerEntry lhs, TimerEntry rhs) {
2897 long lhsTime = lhs.mTime;
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp3345 int SurfaceFlinger::LayerVector::do_compare(const void* lhs, argument
3349 const sp<Layer>& l(*reinterpret_cast<const sp<Layer>*>(lhs));
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp1638 static bool bitcodereader_order(const User *lhs, const User *rhs) { argument

Completed in 1774 milliseconds

12345