Searched defs:c1 (Results 1 - 13 of 13) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/worldclock/
H A DCityGmtOffsetComparator.java26 public int compare(CityObj c1, CityObj c2) { argument
28 int offset = TimeZone.getTimeZone(c1.mTimeZone).getOffset(currentTime);
31 getCityNameComparator().compare(c1, c2);
H A DCityNameComparator.java30 public int compare(CityObj c1, CityObj c2) { argument
31 return mCollator.compare(c1.mCityName, c2.mCityName);
/packages/apps/Contacts/src/com/android/contacts/interactions/
H A DContactInteractionUtil.java97 private static boolean compareCalendarDayYear(Calendar c1, Calendar c2) { argument
98 return c1.get(Calendar.YEAR) == c2.get(Calendar.YEAR) &&
99 c1.get(Calendar.DAY_OF_YEAR) == c2.get(Calendar.DAY_OF_YEAR);
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/utils/
H A Ddamerau_levenshtein_edit_distance_policy.h35 const int c1 = CharUtils::toBaseLowerCase(mString1[index1]); local
36 return (c0 == c1) ? 0.0f : 1.0f;
49 const int c1 = CharUtils::toBaseLowerCase(mString1[index1]); local
51 && c1 == CharUtils::toBaseLowerCase(mString0[index0 - 1])) {
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarDatabaseHelperTest.java520 private static boolean compareCursors(Cursor c1, Cursor c2) { argument
521 if(c1 == null || c2 == null) {
522 Log.d("CDBT","c1 is " + c1 + " and c2 is " + c2);
526 int numColumns = c1.getColumnCount();
528 Log.d("CDBT","c1 has " + numColumns + " columns and c2 has " + c2.getColumnCount());
532 if (c1.getCount() != c2.getCount()) {
533 Log.d("CDBT","c1 has " + c1.getCount() + " rows and c2 has " + c2.getCount());
537 c1
[all...]
/packages/apps/Camera/jni/feature_stab/db_vlvm/
H A Ddb_utilities_poly.cpp97 double c0,c1,c2,c3; local
123 c1=d/a;
131 k0=min4_c0*c3c3through4_min_c2-c1*c1;
132 k1=c1*c3+min4_c0;
145 mn=lz*c3through4-c1/2.0;
169 double c0,c1,c2,c3; local
195 c1=d/a;
203 k0=min4_c0*c3c3through4_min_c2-c1*c1;
[all...]
H A Ddb_image_homography.cpp44 inline void db_SProjImagePointPointConstraints(double c1[9],double c2[9],double xp[3],double x[3]) argument
57 db_SProjImagePointPointConstraint(c1,1,0,2,xp,x);
61 db_SProjImagePointPointConstraint(c1,0,1,2,xp,x);
65 db_SProjImagePointPointConstraint(c1,0,2,1,xp,x);
70 inline void db_SAffineImagePointPointConstraints(double c1[7],double c2[7],double xp[3],double x[3]) argument
75 db_Copy6(c1,ct1); c1[6]=ct1[8];
/packages/apps/Gallery2/jni/filters/
H A Dkmeans.h189 T * c1 = initialPicks; local
194 ret = calculateNewCentroids<T, N>(k, values, len, dimension, stride, c1, c2);
195 temp = c1;
196 c1 = c2;
202 set<T, T>(finalCentroids, c1, dimension);
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
H A Ddb_utilities_poly.cpp97 double c0,c1,c2,c3; local
123 c1=d/a;
131 k0=min4_c0*c3c3through4_min_c2-c1*c1;
132 k1=c1*c3+min4_c0;
145 mn=lz*c3through4-c1/2.0;
169 double c0,c1,c2,c3; local
195 c1=d/a;
203 k0=min4_c0*c3c3through4_min_c2-c1*c1;
[all...]
H A Ddb_image_homography.cpp44 inline void db_SProjImagePointPointConstraints(double c1[9],double c2[9],double xp[3],double x[3]) argument
57 db_SProjImagePointPointConstraint(c1,1,0,2,xp,x);
61 db_SProjImagePointPointConstraint(c1,0,1,2,xp,x);
65 db_SProjImagePointPointConstraint(c1,0,2,1,xp,x);
70 inline void db_SAffineImagePointPointConstraints(double c1[7],double c2[7],double xp[3],double x[3]) argument
75 db_Copy6(c1,ct1); c1[6]=ct1[8];
/packages/apps/Calendar/src/com/android/calendar/
H A DUtils.java495 public static boolean compareCursors(Cursor c1, Cursor c2) { argument
496 if (c1 == null || c2 == null) {
500 int numColumns = c1.getColumnCount();
505 if (c1.getCount() != c2.getCount()) {
509 c1.moveToPosition(-1);
511 while (c1.moveToNext() && c2.moveToNext()) {
513 if (!TextUtils.equals(c1.getString(i), c2.getString(i))) {
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dndbdic.c562 NJ_UINT8 c1 = 0, c2 = 0; local
627 c1 = *byomi;
629 c = (NJ_UINT16)((c1 << 8) | c2);
632 c1 = *byomi;
646 if (c1 == *wkc) {
656 } else if (c1 < *wkc) {
1993 NJ_UINT8 c1 = 0, c2 = 0; local
2025 c1 = *byomi;
2027 c = (NJ_UINT16)((c1 << 8) | c2);
2030 c1
[all...]
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 477 milliseconds