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

/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/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DFusionDictionary.java515 public int compare(CharGroup c1, CharGroup c2) { argument
516 if (c1.mChars[0] == c2.mChars[0]) return 0;
517 return c1.mChars[0] < c2.mChars[0] ? -1 : 1;
/packages/apps/Calendar/src/com/android/calendar/
H A DUtils.java373 public static boolean compareCursors(Cursor c1, Cursor c2) { argument
374 if (c1 == null || c2 == null) {
378 int numColumns = c1.getColumnCount();
383 if (c1.getCount() != c2.getCount()) {
387 c1.moveToPosition(-1);
389 while (c1.moveToNext() && c2.moveToNext()) {
391 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...]

Completed in 304 milliseconds