HomeSort by relevance Sort by last modified time
    Searched full:phones (Results 26 - 50 of 403) sorted by null

12 3 4 5 6 7 8 91011>>

  /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
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneSwitcher.java 57 * and determine which phone/phones are active.
59 * Manages the ALLOW_DATA calls to modems and notifies phones about changes to
60 * the active phones. Note we don't wait for data attach (which may not happen anyway).
106 CommandsInterface[] cis, Phone[] phones) {
110 mPhones = phones;
267 * phones that aren't in the active phone list. Finally, activate all
268 * phones in the active phone list.
324 // only activate phones up to the limit
  /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...]
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyGlobals.java 63 Phone[] phones = PhoneFactory.getPhones(); local
64 for (Phone phone : phones) {
  /developers/build/prebuilts/gradle/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/fragments/
DiscoveryFragment.java 29 * A simple fragment with two buttons to show connected phones and watches
  /developers/samples/android/wearable/wear/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/fragments/
DiscoveryFragment.java 29 * A simple fragment with two buttons to show connected phones and watches
  /development/apps/Fallback/res/values/
strings.xml 19 real phones aren't available. -->
  /development/samples/browseable/DataLayer/Wearable/src/com.example.android.wearable.datalayer/fragments/
DiscoveryFragment.java 29 * A simple fragment with two buttons to show connected phones and watches
  /development/samples/training/ContactsList/res/values-sw360dp/
styles.xml 20 width of 360dp (larger phones). -->
  /external/svox/pico/lib/
picokdbg.h 58 * return kb Phones for usage in PU
  /frameworks/base/docs/html/design/
devices.jd 30 <a href="{@docRoot}design/handhelds/index.html" class="landing-page-link">Phones &amp; Tablets</a></p>
  /frameworks/base/docs/html/design/handhelds/
index.jd 1 page.title=Phones &amp; 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
  /frameworks/base/packages/SystemUI/res/values-land/
dimens.xml 19 <!-- thickness (width) of the navigation bar on phones that require it -->
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
LayoutListener.java 23 * not most phones.
  /packages/services/Telephony/src/com/android/phone/settings/
AccessibilitySettingsFragment.java 148 final Phone[] phones = PhoneFactory.getPhones(); local
149 if (phones == null) {
150 if (DBG) Log.d(LOG_TAG, "isVideoCallInProgress: No phones found. Return false");
154 for (Phone phone : phones) {
  /system/bt/bta/include/
bta_op_api.h 23 * mobile phones.
  /packages/apps/Messaging/tests/src/com/android/messaging/util/
ContactUtilTest.java 139 * Verify ContactUtil.getPhone will return all phones, including the ones added for test.
145 LogUtil.i(LogUtil.BUGLE_TAG, "testGetPhones: Number of phones on the device:" +
184 LogUtil.i(LogUtil.BUGLE_TAG, "testFilterPhonesByPartialNumber: Number of phones:" +
206 LogUtil.i(LogUtil.BUGLE_TAG, "testFilterPhonesByFullNumber: Number of phones:" +
226 LogUtil.i(LogUtil.BUGLE_TAG, "testLookupPhoneWithAreaCode: Number of phones:" +
246 LogUtil.i(LogUtil.BUGLE_TAG, "testLookupPhoneWithoutAreaCode: Number of phones:" +
259 LogUtil.i(LogUtil.BUGLE_TAG, "testGetFrequentPhones: Number of phones on the device:" +
  /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...]
  /docs/source.android.com/src/security/enhancements/
enhancements50.jd 27 <li><strong>Multi user, restricted profile, and guest modes for phones &
28 tablets.</strong> Android now provides for multiple users on phones and
  /frameworks/base/docs/html/distribute/stories/games/
tiny-co.jd 30 Tiny Village</a>, a game targeting 7- to 10-inch tablets and phones, was their
56 as phones. Additionally, average revenue per user <b>(ARPU) is now about 35%
  /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/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
  /frameworks/base/docs/html-intl/intl/ja/guide/topics/providers/
content-providers.jd 40 "Cursor (Phones)"</a>

Completed in 2185 milliseconds

12 3 4 5 6 7 8 91011>>