Searched refs:two (Results 1 - 9 of 9) sorted by relevance

/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
H A DRawContactTest.java65 final RawContact two = buildRawContact2();
66 assertFalse(one.equals(two));
/packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
H A DDialpadView.java68 private final int[] mButtonIds = new int[] {R.id.zero, R.id.one, R.id.two, R.id.three,
257 case R.id.two: return KEY_FRAME_DURATION * 5;
273 case R.id.two: return KEY_FRAME_DURATION * 5;
287 case R.id.two: return KEY_FRAME_DURATION * 2;
322 case R.id.two:
340 case R.id.two:
355 case R.id.two:
/packages/apps/InCallUI/src/com/android/incallui/
H A DDialpadFragment.java117 mDisplayMap.put(R.id.two, '2');
548 final int[] buttonIds = new int[] {R.id.zero, R.id.one, R.id.two, R.id.three, R.id.four,
/packages/services/Telephony/src/com/android/phone/
H A DEmergencyDialer.java80 R.id.one, R.id.two, R.id.three,
378 case R.id.two: {
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DContactEditorFragment.java1485 public int compare(RawContactDelta one, RawContactDelta two) { argument
1487 if (one.equals(two)) {
1495 String accountType2 = two.getValues().getAsString(RawContacts.ACCOUNT_TYPE);
1496 String dataSet2 = two.getValues().getAsString(RawContacts.DATA_SET);
1553 String twoAccount = two.getAccountName();
1562 Long twoId = two.getRawContactId();
/packages/apps/Camera/jni/feature_stab/db_vlvm/
H A Ddb_feature_detection.cpp382 /*Filter g of length 128 in place with 14641. Output is shifted two steps
400 paddd mm0,mm6 /*2 Add 1* behind two steps*/
401 movq mm2,mm6 /*3 Start with 1* in front two steps*/
406 pshufw mm6,mm6,4Eh /*8 Swap the two double-words using bitmask 01001110=4Eh*/
415 /*Warming iteration two 17-32********************/
417 paddd mm0,mm4 /*18 Add 1* behind two steps*/
418 movq mm2,mm4 /*19 Start with 1* in front two steps*/
423 pshufw mm4,mm4,4Eh /*24 Swap the two double-words using bitmask 01001110=4Eh*/
438 paddd mm0,mm6 /*34 Add 1* behind two steps*/
439 movq mm2,mm6 /*35 Start with 1* in front two step
1339 float *two[4]; local
[all...]
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
H A Ddb_feature_detection.cpp382 /*Filter g of length 128 in place with 14641. Output is shifted two steps
400 paddd mm0,mm6 /*2 Add 1* behind two steps*/
401 movq mm2,mm6 /*3 Start with 1* in front two steps*/
406 pshufw mm6,mm6,4Eh /*8 Swap the two double-words using bitmask 01001110=4Eh*/
415 /*Warming iteration two 17-32********************/
417 paddd mm0,mm4 /*18 Add 1* behind two steps*/
418 movq mm2,mm4 /*19 Start with 1* in front two steps*/
423 pshufw mm4,mm4,4Eh /*24 Swap the two double-words using bitmask 01001110=4Eh*/
438 paddd mm0,mm6 /*34 Add 1* behind two steps*/
439 movq mm2,mm6 /*35 Start with 1* in front two step
1339 float *two[4]; local
[all...]
/packages/apps/Dialer/src/com/android/dialer/dialpad/
H A DDialpadFragment.java547 final int[] buttonIds = new int[] {R.id.one, R.id.two, R.id.three, R.id.four, R.id.five,
790 case R.id.two: {
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java447 // delete external databases that have not been used in the past two months
4457 // We could just run both of the next two statements, but only one of
5194 * Returns the best string to use for display, given two names.
5205 * @param one The first of the two names to consider
5206 * @param two The last of the two names to consider
5209 String makeBestName(String one, String two) { argument
5213 if (one.length() > two.length()) {
5217 if (one.toLowerCase().compareTo(two.toLowerCase()) > 0) {
5220 name = two;
[all...]

Completed in 437 milliseconds