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

12 3 4 5 6 7 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/contacts/
Contacts_PeopleTest.java 34 import android.provider.Contacts.People;
52 People._ID,
53 People.LAST_TIME_CONTACTED,
54 People.TIMES_CONTACTED
77 // insert some lines in people table and groups table to be used in test case.
80 value.put(People.NAME, "test_people_" + i);
81 value.put(People.TIMES_CONTACTED, 0);
82 value.put(People.LAST_TIME_CONTACTED, 0);
83 mPeopleRowsAdded.add(mProvider.insert(People.CONTENT_URI, value));
122 // People: test_people_0, Group: Groups.GROUP_MY_CONTACT
    [all...]
  /external/perf_data_converter/
CONTRIBUTORS 0 # People who have agreed to one of the CLAs and can contribute patches.
3 # lists people. For example, Google employees are listed here
  /external/walt/
CONTRIBUTORS 0 # People who have agreed to one of the CLAs and can contribute patches.
3 # lists people. For example, Google employees are listed here
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/
CONTRIBUTORS 0 # People who have agreed to one of the CLAs and can contribute patches.
3 # lists people. For example, Google employees are listed here
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/
CONTRIBUTORS 0 # People who have agreed to one of the CLAs and can contribute patches.
3 # lists people. For example, Google employees are listed here
  /development/samples/browseable/LNotifications/
_index.jd 9 are used such as Heads-Up notifications, visibility, people, category and priority
  /external/e2fsprogs/debian/
watch 4 #ftp://ftp.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/e2fsprogs-([0-9].+)\.tar\.gz
  /external/python/cpython2/Doc/includes/sqlite3/
execsql_printall_1.py 10 cur.execute("select * from people order by age")
execute_3.py 10 cur.execute("select name_last, age from people where name_last=:who and age=:age",
insert_more_people.py 13 cur.execute("insert into people (name_last, age) values (?, ?)", person)
  /external/python/cpython3/Doc/includes/sqlite3/
execsql_printall_1.py 10 cur.execute("select * from people order by age")
execute_3.py 10 cur.execute("select name_last, age from people where name_last=:who and age=:age",
insert_more_people.py 13 cur.execute("insert into people (name_last, age) values (?, ?)", person)
  /external/swiftshader/
OWNERS 1 # This is the list of people with commit rights actively working on SwiftShader
  /external/vixl/
AUTHORS 1 # Below is a list of people and organisations that have contributed to the VIXL
  /packages/apps/Car/libs/car-settings-lib/
OWNERS 0 # People who can approve changes for submission.
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 12 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
18 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
28 CREATE TABLE groupmembership (_id INTEGER PRIMARY KEY,person INTEGER REFERENCES people(_id),group_id INTEGER REFERENCES groups(_id),group_sync_account STRING,group_sync_id STRING);
42 CREATE TABLE organizations (_id INTEGER PRIMARY KEY AUTOINCREMENT,company TEXT,title TEXT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES people(_id));
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); table
44 INSERT INTO people VALUES(1,'non_syncable',NULL,NULL,NULL,NULL,1,1,'Lemmy Test',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
45 INSERT INTO people VALUES(2,'lemmytest@gmail.com','561d08a30def1f46',1268764045346000,1268764045346000,NULL,0,1,NULL,NULL,0,NULL,0,1,NULL,NULL,NULL,NULL,0,NULL);
46 INSERT INTO people VALUES(3,'lemmytest@gmail.com','506b6479896c635d',1268764047603000,1268764047603000,NULL,0,1,'Mail',NULL,0,NULL,0,NULL,NULL,1,NULL,NULL,0,NULL);
47 INSERT INTO people VALUES(4,'lemmytest@gmail.com','192ec38f0de81866',1268764074839000,1268764074839000,NULL,0,1,NULL,NULL,0,NULL,0,NULL,NULL,2,NULL,NULL,0,NULL);
48 INSERT INTO people VALUES(5,'lemmytest@gmail.com','3e879d80b2673fc',1268764126701000,1268764126701000,NULL,0,1,'Numbe (…)
    [all...]
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
NotificationAdjustmentExtractorTest.java 54 ArrayList<String> people = new ArrayList<>(); local
55 people.add("you");
56 signals.putStringArrayList(Adjustment.KEY_PEOPLE, people);
61 assertFalse(Objects.equals(people, r.getPeopleOverride()));
67 assertEquals(people, r.getPeopleOverride());
78 ArrayList<String> people = new ArrayList<>(); local
79 people.add("you");
80 pSignals.putStringArrayList(Adjustment.KEY_PEOPLE, people);
97 assertFalse(Objects.equals(people, r.getPeopleOverride()));
103 assertEquals(people, r.getPeopleOverride())
    [all...]
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 14 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
31 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
40 CREATE TABLE groupmembership (_id INTEGER PRIMARY KEY,person INTEGER REFERENCES people(_id),group_id INTEGER REFERENCES groups(_id),group_sync_account STRING,group_sync_id STRING);
51 CREATE TABLE organizations (_id INTEGER PRIMARY KEY AUTOINCREMENT,company TEXT,title TEXT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES people(_id));
53 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); table
54 INSERT INTO people VALUES(1,'non_syncable',NULL,NULL,NULL,NULL,1,1,'Test Android',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
55 INSERT INTO people VALUES(2,'android.contacts.test.eclair@gmail.com','3d09f37e0f0dbc6f',1249441106583000,1249441106583000,NULL,1,1,'Jane Doe',NULL,1,1249177384979,1,1,NULL,1,NULL,NULL,NULL,NULL);
56 INSERT INTO people VALUES(3,'android.contacts.test.eclair@gmail.com','5c9ae978b346ac9',1249441067558000,1249441067558000,NULL,1,1,'John Doe','This is a test account for Eclair Android Contacts',0,NULL,1,8,1,13,NULL,'content://media/internal/audio/media/80',1,NULL);
57 INSERT INTO people VALUES(11,'android.contacts.test.eclair@gmail.com',NULL,NULL,NULL,NULL,1,NULL,'Added On Android',NULL,0,NULL,0,16,NULL,NULL,NULL,NULL,0,'');
58 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER)
    [all...]
  /external/gemmlowp/
CONTRIBUTORS.txt 0 # People who have agreed to one of the CLAs and can contribute patches.
3 # lists people. For example, Google employees are listed here
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_codecmaps_hk.py 14 mapfileurl = 'http://people.freebsd.org/~perky/i18n/BIG5HKSCS-2004.TXT'
  /external/autotest/client/tests/hackbench/
control 14 http://people.redhat.com/~mingo/cfs-scheduler/tools/hackbench.c
  /external/syslinux/com32/lib/
fgetc.c 4 * Extremely slow fgetc implementation, using _fread(). If people
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListManagedCursor.java 24 import android.provider.Contacts.People;
38 // Get a cursor with all people
47 // Map the NAME column in the people database to...
48 new String[] {People.NAME} ,
  /packages/apps/Calendar/src/com/android/calendar/
AnalyticsLogger.java 19 * Track what view people are using.

Completed in 652 milliseconds

12 3 4 5 6 7 8 91011>>