Searched defs:cmp (Results 1 - 7 of 7) sorted by relevance

/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DEventRecurrenceTest.java680 private static void cmp(int vlen, int[] v, int[] correct, String name) { method in class:EventRecurrenceTest
753 cmp(eventRecurrence.bysecondCount, eventRecurrence.bysecond, bysecond, "bysecond");
754 cmp(eventRecurrence.byminuteCount, eventRecurrence.byminute, byminute, "byminute");
755 cmp(eventRecurrence.byhourCount, eventRecurrence.byhour, byhour, "byhour");
756 cmp(eventRecurrence.bydayCount, eventRecurrence.byday, byday, "byday");
757 cmp(eventRecurrence.bydayCount, eventRecurrence.bydayNum, bydayNum, "bydayNum");
758 cmp(eventRecurrence.bymonthdayCount, eventRecurrence.bymonthday, bymonthday, "bymonthday");
759 cmp(eventRecurrence.byyeardayCount, eventRecurrence.byyearday, byyearday, "byyearday");
760 cmp(eventRecurrence.byweeknoCount, eventRecurrence.byweekno, byweekno, "byweekno");
761 cmp(eventRecurrenc
[all...]
/frameworks/base/tools/aapt/
H A DStringPool.cpp149 int cmp = ent.configs.itemAt(addPos).compareLogical(*config); local
150 if (cmp >= 0) {
151 if (cmp > 0) {
H A DResourceTable.cpp651 int cmp = compare_type(type, o.type); local
652 if (cmp < 0) {
654 } else if (cmp > 0) {
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp382 int cmp = p.compare(q); local
383 if (g.deleted || cmp < 0) {
390 else if (cmp > 0) {
/frameworks/native/services/sensorservice/
H A DSensorService.cpp448 static int cmp(void const* lhs, void const* rhs) { function in struct:android::compar
454 qsort(buffer, count, sizeof(sensors_event_t), compar::cmp);
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp859 int cmp = CompareSampleLocation(sampleInfo, mdatInfo); local
861 if (cmp < 0 && !mSource->isSeekable()) {
863 } else if (cmp == 0) {
900 int cmp = CompareSampleLocation(sampleInfo, mdatInfo); local
902 if (cmp <= 0) {
/frameworks/base/services/java/com/android/server/pm/
H A DSettings.java2715 private String compToString(HashSet<String> cmp) { argument
2716 return cmp != null ? Arrays.toString(cmp.toArray()) : "[]";
3007 HashSet<String> cmp = ps.getDisabledComponents(user.id);
3008 if (cmp != null && cmp.size() > 0) {
3010 for (String s : cmp) {
3014 cmp = ps.getEnabledComponents(user.id);
3015 if (cmp != null && cmp
[all...]

Completed in 386 milliseconds