/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | sad_mb_offset.h | 26 #if (NUMBER==3) 28 #elif (NUMBER==2) in sad_mb_offset3() 30 #elif (NUMBER==1) in sad_mb_offset3() 40 ref -= NUMBER; /* bic ref, ref, #3 */ in sad_mb_offset3() 45 #if (NUMBER==3) in sad_mb_offset3() 47 #elif (NUMBER==2) in sad_mb_offset3() 49 #elif (NUMBER==1) in sad_mb_offset3() 113 #if (NUMBER==3) in sad_mb_offset3() 115 #elif (NUMBER==2) in sad_mb_offset3() 117 #elif (NUMBER==1) in sad_mb_offset3() [all …]
|
D | sad_inline.h | 64 #define NUMBER 3 macro 69 #undef NUMBER 70 #define NUMBER 2 macro 75 #undef NUMBER 76 #define NUMBER 1 macro 234 #define NUMBER 3 240 #undef NUMBER 241 #define NUMBER 2 248 #undef NUMBER 249 #define NUMBER 1 [all …]
|
/frameworks/base/media/libstagefright/codecs/avc/enc/src/ |
D | sad_mb_offset.h | 21 #if (NUMBER==3) 23 #elif (NUMBER==2) in sad_mb_offset3() 25 #elif (NUMBER==1) in sad_mb_offset3() 35 ref -= NUMBER; /* bic ref, ref, #3 */ in sad_mb_offset3() 40 #if (NUMBER==3) in sad_mb_offset3() 42 #elif (NUMBER==2) in sad_mb_offset3() 44 #elif (NUMBER==1) in sad_mb_offset3() 108 #if (NUMBER==3) in sad_mb_offset3() 110 #elif (NUMBER==2) in sad_mb_offset3() 112 #elif (NUMBER==1) in sad_mb_offset3() [all …]
|
D | sad_inline.h | 59 #define NUMBER 3 macro 64 #undef NUMBER 65 #define NUMBER 2 macro 70 #undef NUMBER 71 #define NUMBER 1 macro 229 #define NUMBER 3 235 #undef NUMBER 236 #define NUMBER 2 243 #undef NUMBER 244 #define NUMBER 1 [all …]
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
D | VCardExporterTests.java | 409 .put(Phone.NUMBER, "1") in testPhoneBasicCommon() 435 .put(Phone.NUMBER, "1234567890(abcdefghijklmnopqrstuvwxyz)") in testPhoneRefrainFormatting() 449 .put(Phone.NUMBER, "10") in testPhoneVariousTypeSupport() 452 .put(Phone.NUMBER, "20") in testPhoneVariousTypeSupport() 455 .put(Phone.NUMBER, "30") in testPhoneVariousTypeSupport() 458 .put(Phone.NUMBER, "40") in testPhoneVariousTypeSupport() 461 .put(Phone.NUMBER, "50") in testPhoneVariousTypeSupport() 464 .put(Phone.NUMBER, "60") in testPhoneVariousTypeSupport() 467 .put(Phone.NUMBER, "70") in testPhoneVariousTypeSupport() 470 .put(Phone.NUMBER, "80") in testPhoneVariousTypeSupport() [all …]
|
D | VCardImporterTests.java | 519 .put(Phone.NUMBER, "1") in testV21PrefToIsPrimary() 522 .put(Phone.NUMBER, "2") in testV21PrefToIsPrimary() 526 .put(Phone.NUMBER, "3") in testV21PrefToIsPrimary() 627 .put(Phone.NUMBER, "111-555-1212"); in testV21ComplicatedCase() 630 .put(Phone.NUMBER, "404-555-1212"); in testV21ComplicatedCase() 633 .put(Phone.NUMBER, "031-111-1111"); in testV21ComplicatedCase() 637 .put(Phone.NUMBER, "032-222-2222"); in testV21ComplicatedCase() 641 .put(Phone.NUMBER, "033-333-3333"); in testV21ComplicatedCase() 729 .put(Phone.NUMBER, "030-000-0000") in testV30Simple() 762 .put(Phone.NUMBER, (japanese ? "03-0000-0000" : "030-000-0000")) in testV21Japanese1Common() [all …]
|
D | VCardJapanizationTests.java | 366 .put(Phone.NUMBER, "0312341234") in testJapanesePhoneNumberCommon() 369 .put(Phone.NUMBER, "09012341234") in testJapanesePhoneNumberCommon() 388 .put(Phone.NUMBER, "0312341234") in testJapanesePhoneNumberDoCoMo() 391 .put(Phone.NUMBER, "09012341234") in testJapanesePhoneNumberDoCoMo()
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
D | VoiceMailConstants.java | 45 static final int NUMBER = 1; field in VoiceMailConstants 65 return data[NUMBER]; in getVoiceMailNumber() 104 data[NUMBER] = parser.getAttributeValue(null, "vmnumber"); in loadVoiceMail()
|
/frameworks/base/core/java/android/provider/ |
D | CallLog.java | 122 public static final String NUMBER = "number"; field in CallLog.Calls 283 values.put(NUMBER, number); in addCall() 317 Phone.CONTACT_ID + " =? AND " + Phone.NUMBER + " =?", in addCall() 357 new String[] {NUMBER}, in getLastOutgoingCall()
|
D | VoicemailContract.java | 126 public static final String NUMBER = Calls.NUMBER; field in VoicemailContract.Voicemails
|
D | ContactsContract.java | 4513 public static final String NUMBER = "number"; field 5397 public static final String NUMBER = DATA; field in ContactsContract.CommonDataKinds.Phone
|
D | Contacts.java | 923 public static final String NUMBER = "number"; field
|
/frameworks/base/core/java/android/content/ |
D | UriMatcher.java | 178 child.mWhich = NUMBER; in addURI() 230 case NUMBER: 257 private static final int NUMBER = 1;
|
/frameworks/base/core/java/android/util/ |
D | JsonToken.java | 64 NUMBER, enumConstant
|
D | JsonReader.java | 407 if (token != JsonToken.STRING && token != JsonToken.NUMBER) { in nextString() 459 if (token != JsonToken.STRING && token != JsonToken.NUMBER) { in nextDouble() 480 if (token != JsonToken.STRING && token != JsonToken.NUMBER) { in nextLong() 511 if (token != JsonToken.STRING && token != JsonToken.NUMBER) { in nextInt() 1145 return JsonToken.NUMBER; in decodeNumber()
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
D | TextViewWordLimitsTest.java | 153 final String NUMBER = "123"; in testPartlyIncluded() local 159 verifyWordLimits(NUMBER, 1, -1, -1); in testPartlyIncluded()
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | JsonReaderTest.java | 250 assertEquals(JsonToken.NUMBER, reader.peek()); in testBufferBoundary() 263 assertEquals(JsonToken.NUMBER, reader.peek()); in testTruncatedBufferBoundary() 273 testLongNumericLiterals(READER_BUFFER_SIZE - 1, JsonToken.NUMBER); in testLongestSupportedNumericLiterals() 356 assertEquals(JsonToken.NUMBER, reader.peek()); in testMatchingValidNumbers()
|
/frameworks/base/docs/html/guide/topics/providers/ |
D | content-providers.jd | 102 <th scope="col">NUMBER</th> 280 earlier — {@code _ID}, {@code NUMBER}, {@code NUMBER_KEY}, {@code NAME}, 309 People.NUMBER 334 … {@code NAME} in {@link android.provider.Contacts.PeopleColumns PeopleColumns}, and {@code NUMBER} 364 <th scope="col">NUMBER</th> 428 int phoneColumn = cur.getColumnIndex(People.NUMBER); 550 values.put(People.Phones.NUMBER, "1233214567");
|
/frameworks/base/core/java/android/webkit/ |
D | WebTextView.java | 166 private static final int NUMBER = 5; field in WebTextView 1051 case NUMBER: in setType()
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | CallerInfo.java | 160 columnIndex = cursor.getColumnIndex(PhoneLookup.NUMBER); in getCallerInfo()
|
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/ |
D | MediaPlayerProxyTestCase.java | 529 values.put(VoicemailContract.Voicemails.NUMBER, CONTACT_NUMBER); in getTestContentUri()
|
/frameworks/base/telephony/java/android/telephony/ |
D | PhoneNumberUtils.java | 176 phoneColumn = Contacts.People.Phones.NUMBER; in getNumberFromIntent() 178 phoneColumn = ContactsContract.CommonDataKinds.Phone.NUMBER; in getNumberFromIntent()
|
/frameworks/base/core/tests/coretests/src/android/database/ |
D | DatabasePerformanceTests.java | 152 Contacts.People.NUMBER, // 3
|
/frameworks/base/docs/html/resources/articles/ |
D | contacts.jd | 88 values.put(Phone.NUMBER, phoneNumber);
|
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardBuilder.java | 832 String phoneNumber = contentValues.getAsString(Phone.NUMBER); in appendPhones()
|