/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/es-ES/ |
es-ES_phones.utf | 4 ! Phones Symbol Table for language es-ES 13 ! phones set Pico
27 ! main phones alphabet
|
/frameworks/native/data/etc/ |
tablet_core_hardware.xml | 21 Handheld devices include phones, mobile Internet devices (MIDs), 69 <!-- GSM phones must also include android.hardware.telephony.gsm.xml --> 70 <!-- CDMA phones must also include android.hardware.telephony.cdma.xml -->
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
SmsMessageReceiver.java | 49 // Contacts.Phones.CONTENT_FILTER_URL and 50 // Contacts.Phones.DISPLAY_NAME
|
/packages/providers/ContactsProvider/tests/assets/testSynced/ |
legacy_contacts.sql | 43 CREATE TABLE people (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT COLLATE LOCALIZED,notes TEXT COLLATE LOCALIZED,times_contacted INTEGER NOT NULL DEFAULT 0,last_time_contacted INTEGER,starred INTEGER NOT NULL DEFAULT 0,primary_phone INTEGER REFERENCES phones(_id),primary_organization INTEGER REFERENCES organizations(_id),primary_email INTEGER REFERENCES contact_methods(_id),photo_version TEXT,custom_ringtone TEXT,send_to_voicemail INTEGER,phonetic_name TEXT COLLATE LOCALIZED); 100 CREATE TABLE phones (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),type INTEGER NOT NULL,number TEXT,number_key TEXT,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0); table 101 INSERT INTO phones VALUES(1,2,2,'698-147-02',20741896,NULL,1); 102 INSERT INTO phones VALUES(2,5,2,'716-5432',2345617,NULL,1); 103 INSERT INTO phones VALUES(3,6,2,'542-31',13245,NULL,1); 104 INSERT INTO phones VALUES(4,7,2,'564-123-789',987321465,NULL,1); 105 INSERT INTO phones VALUES(5,8,2,'841-735-24',42537148,NULL,1); 106 INSERT INTO phones VALUES(6,11,2,1111111111,1111111111,NULL,1); 126 INSERT INTO sqlite_sequence VALUES('phones',6); 142 CREATE INDEX phonesIndex1 ON phones (person) [all...] |
/development/apps/Fallback/res/values/ |
strings.xml | 19 real phones aren't available. -->
|
/development/samples/training/ContactsList/res/values-sw360dp/ |
styles.xml | 20 width of 360dp (larger phones). -->
|
/external/bluetooth/bluedroid/bta/include/ |
bta_fs_api.h | 22 * Bluetooth application layer for mobile phones.
|
bta_op_api.h | 23 * mobile phones.
|
bta_pbs_api.h | 23 * phones.
|
/external/svox/pico/lib/ |
picokdbg.h | 58 * return kb Phones for usage in PU
|
/frameworks/base/docs/html/design/ |
devices.jd | 31 <a href="{@docRoot}design/handhelds/index.html" class="landing-page-link">Phones & Tablets</a></p>
|
/frameworks/base/packages/Keyguard/res/values-land/ |
dimens.xml | 23 phones -->
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
LayoutListener.java | 23 * not most phones.
|
/packages/services/Telephony/src/com/android/services/telephony/ |
TelecomAccountRegistry.java | 297 // Go through SIM-based phones and register ourselves -- registering an existing account 299 Phone[] phones = PhoneFactory.getPhones(); local 300 Log.d(this, "Found %d phones. Attempting to register.", phones.length); 301 for (Phone phone : phones) { 318 if (DBG && phones.length > 0 && "TRUE".equals(System.getProperty("dummy_sim"))) { 319 mAccounts.add(new AccountEntry(phones[0], false /* emergency */, true /* isDummy */));
|
/frameworks/base/docs/html/design/handhelds/ |
index.jd | 1 page.title=Phones & Tablets 6 whether you're designing for phones, tablets, watches, or other form factors. 7 Aspects of UI that are especially important for phones and tablets include 15 the left, after the Devices sections, provide detailed guidelines for phones 82 <p>New for phones in Android 4.0, the navigation bar is present only on devices that don't have
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
PhoneSubInfo.java | 66 * Retrieves the unique device ID, e.g., IMEI for GSM phones and MEID for CDMA phones. 83 * for GSM phones. 91 * Retrieves the unique subscriber ID, e.g., IMSI for GSM phones. 99 * Retrieves the Group Identifier Level1 for GSM phones.
|
/packages/apps/Exchange/src/com/android/exchange/provider/ |
ExchangeDirectoryProvider.java | 97 sURIMatcher.addURI(EXCHANGE_GAL_AUTHORITY, "data/phones/filter/*", GAL_PHONE_FILTER); 449 final List<PhoneInfo> phones = new ArrayList<PhoneInfo>(); local 450 addPhoneInfo(phones, galDataRow.get(GalData.WORK_PHONE), Phone.TYPE_WORK); 451 addPhoneInfo(phones, galDataRow.get(GalData.OFFICE), Phone.TYPE_COMPANY_MAIN); 452 addPhoneInfo(phones, galDataRow.get(GalData.HOME_PHONE), Phone.TYPE_HOME); 453 addPhoneInfo(phones, galDataRow.get(GalData.MOBILE_PHONE), Phone.TYPE_MOBILE); 459 Pair<String, Integer> displayName = getDisplayName(galDataRow, phones); 483 if (phones.size() > 0) { 501 for (PhoneInfo phone : phones) { 561 private static Pair<String, Integer> getDisplayName(GalData galDataRow, List<PhoneInfo> phones) { [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
LegacyApiSupport.java | 89 private static final int PHONES = 12; 215 public static final String PHONES = "view_v1_phones"; 314 matcher.addURI(authority, "people/#/phones", PEOPLE_PHONES); 315 matcher.addURI(authority, "people/#/phones/#", PEOPLE_PHONES_ID); 334 matcher.addURI(authority, "phones", PHONES); 336 matcher.addURI(authority, "phones/filter/*", PHONES_FILTER); 337 // matcher.addURI(authority, "phones/filter_name/*", PHONES_FILTER_NAME); 338 // matcher.addURI(authority, "phones/mobile_filter_name/*", 340 matcher.addURI(authority, "phones/#", PHONES_ID) [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
GroupsTest.java | 100 // contacts, Red only with phone numbers, Green with no phones, and Blue 126 // Grey should have four aggregates, three with phones. 128 assertEquals("Incorrect Grey with phones count", 3, summaryWithPhones); 130 // Red should have 3 aggregates, all with phones. 132 assertEquals("Incorrect Red with phones count", 3, summaryWithPhones); 134 // Green should have 1 aggregate, none with phones. 136 assertEquals("Incorrect Green with phones count", 0, summaryWithPhones); 140 assertEquals("Incorrect Blue with phones count", 0, summaryWithPhones);
|
/external/srec/config/en.us/grammars/ |
VoiceDialer.grxml | 131 <!-- corresponds to android.provider.Contacts.People.Phones.TYPE_HOME --> 133 <!-- corresponds to android.provider.Contacts.People.Phones.TYPE_MOBILE --> 139 <!-- corresponds to android.provider.Contacts.People.Phones.TYPE_WORK --> 141 <!-- corresponds to android.provider.Contacts.People.Phones.TYPE_OTHER -->
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
picoloadphones.lua | 3 -- lua script picoloadphones.lua --- creates pkb containing phones table.
8 -- load pico phones src file and create phones pkb file
144 -- write out Phones pkb
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
RawContactReadOnlyEditorView.java | 199 // Phones 200 ArrayList<ValuesDelta> phones = state.getMimeEntries(Phone.CONTENT_ITEM_TYPE); local 201 if (phones != null) { 203 for (ValuesDelta phone : phones) {
|
/packages/apps/UnifiedEmail/res/layout/ |
one_pane_activity.xml | 52 <!--A drawer for phones: a pull-out that gives the list of folders. -->
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-US/ |
en-US_phones.utf | 4 ! Phones Symbol Table for language en-US 13 ! phones set Pico
26 ! main phones alphabet
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/fr-FR/ |
fr-FR_phones.utf | 4 ! Phones Symbol Table for language fr-FR 13 ! phones set Pico
26 ! main phones alphabet
|