Searched refs:compare (Results 1 - 25 of 163) sorted by relevance

1234567

/frameworks/base/libs/hwui/utils/
H A DMacros.h25 int compare(const Type& rhs) const { return memcmp(this, &rhs, sizeof(Type));} \
26 bool operator==(const Type& other) const { return compare(other) == 0; } \
27 bool operator!=(const Type& other) const { return compare(other) != 0; } \
28 friend inline int strictly_order_type(const Type& lhs, const Type& rhs) { return lhs.compare(rhs) < 0; } \
29 friend inline int compare_type(const Type& lhs, const Type& rhs) { return lhs.compare(rhs); } \
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationComparator.java27 public int compare(NotificationRecord left, NotificationRecord right) { method in class:NotificationComparator
32 return -1 * Integer.compare(leftPackagePriority, rightPackagePriority);
39 return -1 * Integer.compare(leftScore, rightScore);
46 return -1 * Float.compare(leftPeople, rightPeople);
50 return -1 * Long.compare(left.getRankingTimeMs(), right.getRankingTimeMs());
H A DGlobalSortKeyComparator.java25 public int compare(NotificationRecord left, NotificationRecord right) { method in class:GlobalSortKeyComparator
/frameworks/base/tools/split-select/
H A DSplitDescription.h34 int compare(const SplitDescription& rhs) const;
51 return compare(rhs) < 0;
55 return compare(rhs) == 0;
59 return compare(rhs) != 0;
/frameworks/base/tools/aapt/
H A DConfigDescription.h52 inline bool operator<(const ConfigDescription& o) const { return compare(o) < 0; }
53 inline bool operator<=(const ConfigDescription& o) const { return compare(o) <= 0; }
54 inline bool operator==(const ConfigDescription& o) const { return compare(o) == 0; }
55 inline bool operator!=(const ConfigDescription& o) const { return compare(o) != 0; }
56 inline bool operator>=(const ConfigDescription& o) const { return compare(o) >= 0; }
57 inline bool operator>(const ConfigDescription& o) const { return compare(o) > 0; }
H A DStringPool.h60 int compare(const entry& o) const;
62 inline bool operator<(const entry& o) const { return compare(o) < 0; }
63 inline bool operator<=(const entry& o) const { return compare(o) <= 0; }
64 inline bool operator==(const entry& o) const { return compare(o) == 0; }
65 inline bool operator!=(const entry& o) const { return compare(o) != 0; }
66 inline bool operator>=(const entry& o) const { return compare(o) >= 0; }
67 inline bool operator>(const entry& o) const { return compare(o) > 0; }
/frameworks/base/libs/usb/src/com/android/future/usb/
H A DUsbAccessory.java98 private static boolean compare(String s1, String s2) { method in class:UsbAccessory
107 return (compare(mManufacturer, accessory.getManufacturer()) &&
108 compare(mModel, accessory.getModel()) &&
109 compare(mDescription, accessory.getDescription()) &&
110 compare(mVersion, accessory.getVersion()) &&
111 compare(mUri, accessory.getUri()) &&
112 compare(mSerial, accessory.getSerial()));
/frameworks/base/libs/hwui/
H A DLayerCache.h112 static int compare(const LayerEntry& lhs, const LayerEntry& rhs);
115 return compare(*this, other) == 0;
119 return compare(*this, other) != 0;
123 return LayerEntry::compare(lhs, rhs) < 0;
127 return LayerEntry::compare(lhs, rhs);
H A DRenderBufferCache.h93 static int compare(const RenderBufferEntry& lhs, const RenderBufferEntry& rhs);
96 return compare(*this, other) == 0;
100 return compare(*this, other) != 0;
105 return RenderBufferEntry::compare(lhs, rhs) < 0;
110 return RenderBufferEntry::compare(lhs, rhs);
H A DPatchCache.h107 static int compare(const PatchDescription& lhs, const PatchDescription& rhs);
110 return compare(*this, other) == 0;
114 return compare(*this, other) != 0;
119 return PatchDescription::compare(lhs, rhs) < 0;
124 return PatchDescription::compare(lhs, rhs);
H A DTextDropShadowCache.h64 static int compare(const ShadowText& lhs, const ShadowText& rhs);
67 return compare(*this, other) == 0;
71 return compare(*this, other) != 0;
104 return ShadowText::compare(lhs, rhs) < 0;
108 return ShadowText::compare(lhs, rhs);
H A DGradientCache.h66 static int compare(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs);
69 return compare(*this, other) == 0;
73 return compare(*this, other) != 0;
95 return GradientCacheEntry::compare(lhs, rhs) < 0;
99 return GradientCacheEntry::compare(lhs, rhs);
/frameworks/compile/mclinker/lib/Support/
H A DCommandLine.cpp102 if (0 == Arg.compare("combreloc"))
104 else if (0 == Arg.compare("nocombreloc"))
106 else if (0 == Arg.compare("defs"))
108 else if (0 == Arg.compare("execstack"))
110 else if (0 == Arg.compare("noexecstack"))
112 else if (0 == Arg.compare("initfirst"))
114 else if (0 == Arg.compare("interpose"))
116 else if (0 == Arg.compare("loadfltr"))
118 else if (0 == Arg.compare("muldefs"))
120 else if (0 == Arg.compare("nocopyrelo
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DStringEntry.h54 bool compare(const llvm::StringRef& pX) function in class:mcld::StringEntry
55 { return (0 == key().compare(pX)); }
57 bool compare(const llvm::StringRef& pX) const function in class:mcld::StringEntry
58 { return (0 == key().compare(pX)); }
108 bool compare(const llvm::StringRef& pX) function in class:mcld::StringEntry
109 { return (0 == key().compare(pX)); }
111 bool compare(const llvm::StringRef& pX) const function in class:mcld::StringEntry
112 { return (0 == key().compare(pX)); }
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DArrayMapTests.java111 private static boolean compare(Object v1, Object v2) { method in class:ArrayMapTests
131 if (!compare(expValue, gotValue)) {
142 if (!compare(expValue, gotValue)) {
235 if (!compare(entry, realEntry)) {
254 if (!compare(realValue, value)) {
261 if (!compare(realValue, value)) {
275 if (!compare(realValue, value)) {
289 if (!compare(realValue, value)) {
366 if (!compare(oldHash, oldArray)) {
429 if (!compare(mapCop
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DPhoneNumberUtilsTest.java184 assertTrue(PhoneNumberUtils.compare(null, null));
185 assertFalse(PhoneNumberUtils.compare(null, "123"));
186 assertFalse(PhoneNumberUtils.compare("123", null));
268 assertFalse(PhoneNumberUtils.compare("", ""));
270 assertTrue(PhoneNumberUtils.compare("911", "911"));
271 assertFalse(PhoneNumberUtils.compare("911", "18005550911"));
272 assertTrue(PhoneNumberUtils.compare("5555", "5555"));
273 assertFalse(PhoneNumberUtils.compare("5555", "180055555555"));
275 assertTrue(PhoneNumberUtils.compare("+17005554141", "+17005554141"));
276 assertTrue(PhoneNumberUtils.compare("
[all...]
/frameworks/av/include/media/
H A DStringArray.h49 void sort(int (*compare)(const void*, const void*));
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java154 private static boolean compare(String s1, String s2) { method in class:UsbAccessory
163 return (compare(mManufacturer, accessory.getManufacturer()) &&
164 compare(mModel, accessory.getModel()) &&
165 compare(mDescription, accessory.getDescription()) &&
166 compare(mVersion, accessory.getVersion()) &&
167 compare(mUri, accessory.getUri()) &&
168 compare(mSerial, accessory.getSerial()));
/frameworks/opt/colorpicker/src/com/android/colorpicker/
H A DHsvColorComparator.java29 public int compare(Integer lhs, Integer rhs) { method in class:HsvColorComparator
/frameworks/av/media/libmedia/
H A DStringArray.cpp88 void StringArray::sort(int (*compare)(const void*, const void*)) {
89 qsort(mArray, mCurrent, sizeof(char*), compare);
/frameworks/base/libs/hwui/font/
H A DFont.h57 static int compare(const FontDescription& lhs, const FontDescription& rhs);
62 return compare(*this, other) == 0;
66 return compare(*this, other) != 0;
158 return Font::FontDescription::compare(lhs, rhs) < 0;
162 return Font::FontDescription::compare(lhs, rhs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewScroller.java86 return Float.compare(prevStackScrollP, mStackScrollP) != 0;
93 if (Float.compare(newScroll, curScroll) != 0) {
103 if (Float.compare(newScroll, curScroll) != 0) {
127 return Float.compare(getScrollAmountOutOfBounds(mStackScrollP), 0f) != 0;
134 if (Float.compare(newScroll, curScroll) != 0) {
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DSizeAreaComparator.java38 public int compare(Camera.Size size, Camera.Size size2) { method in class:SizeAreaComparator
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DSizeAreaComparator.java37 public int compare(Size size, Size size2) { method in class:SizeAreaComparator
/frameworks/base/core/java/android/widget/
H A DAlphabetIndexer.java63 * Use a collator to compare strings in a localized manner.
126 protected int compare(String word, String letter) { method in class:AlphabetIndexer
134 return mCollator.compare(firstLetter, letter);
212 int diff = compare(curName, targetLetter);
224 // if (mCollator.compare(startingLetter, targetLetter) < 0) {
265 if (compare(curName, targetLetter) == 0) {

Completed in 1871 milliseconds

1234567