HomeSort by relevance Sort by last modified time
    Searched refs:people (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/src/sort/
example_test.go 27 people := []struct {
36 sort.Slice(people, func(i, j int) bool { return people[i].Name < people[j].Name })
37 fmt.Println("By name:", people)
39 sort.Slice(people, func(i, j int) bool { return people[i].Age < people[j].Age })
40 fmt.Println("By age:", people)
example_interface_test.go 30 people := []Person{
37 fmt.Println(people)
38 sort.Sort(ByAge(people))
39 fmt.Println(people)
  /prebuilts/go/linux-x86/src/sort/
example_test.go 27 people := []struct {
36 sort.Slice(people, func(i, j int) bool { return people[i].Name < people[j].Name })
37 fmt.Println("By name:", people)
39 sort.Slice(people, func(i, j int) bool { return people[i].Age < people[j].Age })
40 fmt.Println("By age:", people)
example_interface_test.go 30 people := []Person{
37 fmt.Println(people)
38 sort.Sort(ByAge(people))
39 fmt.Println(people)
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 11 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);
15 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
24 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);
32 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));
33 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
34 INSERT INTO people VALUES(1,NULL,NULL,NULL,NULL,NULL,1,NULL,'Number And Mail',NULL,0,NULL,0,1,NULL,1,NULL,NULL,0,'');
35 INSERT INTO people VALUES(2,NULL,NULL,NULL,NULL,NULL,1,NULL,'Number',NULL,0,NULL,0,2,NULL,NULL,NULL,NULL,0,'');
36 INSERT INTO people VALUES(3,NULL,NULL,NULL,NULL,NULL,1,NULL,'Mail',NULL,0,NULL,0,NULL,NULL,2,NULL,NULL,0,'');
37 INSERT INTO people VALUES(4,NULL,NULL,NULL,NULL,NULL,1,NULL,'',NULL,0,NULL,0,3,NULL,NULL,NULL,NULL,0,'');
38 INSERT INTO people VALUES(5,NULL,NULL,NULL,NULL,NULL,1,NULL,'',NULL,0,NULL,0,NULL,NULL,3,NULL,NULL,0,'')
    [all...]
  /frameworks/base/services/tests/notification/src/com/android/server/notification/
NotificationAdjustmentExtractorTest.java 52 ArrayList<String> people = new ArrayList<>(); local
53 people.add("you");
54 signals.putStringArrayList(Adjustment.KEY_PEOPLE, people);
59 assertFalse(Objects.equals(people, r.getPeopleOverride()));
65 assertEquals(people, r.getPeopleOverride());
76 ArrayList<String> people = new ArrayList<>(); local
77 people.add("you");
78 pSignals.putStringArrayList(Adjustment.KEY_PEOPLE, people);
95 assertFalse(Objects.equals(people, r.getPeopleOverride()));
101 assertEquals(people, r.getPeopleOverride())
    [all...]
NotificationListenerServiceTest.java 133 ArrayList<String> people = new ArrayList<>(); local
135 people.add(i + key);
137 return people;
  /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...]
  /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/protobuf/examples/
add_person.py 52 PromptForAddress(address_book.people.add())
list_people.py 8 # Iterates though all people in the AddressBook and prints info about them.
10 for person in address_book.people:
list_people.cc 9 // Iterates though all people in the AddressBook and prints info about them.
12 const tutorial::Person& person = address_book.people(i);
  /frameworks/base/services/core/java/com/android/server/notification/
ValidateNotificationPeople.java 52 * people references. Also elevates the priority of real people.
234 final Set<String> people = new ArraySet<>(peopleOverride); local
237 people.addAll(Arrays.asList(getExtraPeople(extras)));
243 for (String handle : people) {
281 Object people = extras.get(Notification.EXTRA_PEOPLE); local
282 if (people instanceof String[]) {
283 return (String[]) people;
286 if (people instanceof ArrayList) {
287 ArrayList arrayList = (ArrayList) people;
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/
sql_test.go 70 if name == "people" {
71 exec(t, db, "CREATE|people|name=string,age=int32,photo=blob,dead=bool,bdate=datetime")
72 exec(t, db, "INSERT|people|name=Alice,age=?,photo=APHOTO", 1)
73 exec(t, db, "INSERT|people|name=Bob,age=?,photo=BPHOTO", 2)
74 exec(t, db, "INSERT|people|name=Chris,age=?,photo=CPHOTO,bdate=?", 3, chrisBirthday)
109 exec(t, db, "CREATE|people|name=string,age=int32,photo=blob,dead=bool,bdate=datetime")
111 expectPanic("Query Query", func() { db.Query("PANIC|Query|SELECT|people|age,name|") })
112 expectPanic("Query NumInput", func() { db.Query("PANIC|NumInput|SELECT|people|age,name|") })
114 rows, err := db.Query("PANIC|Close|SELECT|people|age,name|")
120 db.Query("PANIC|Exec|SELECT|people|age,name|") // should run successfully: Query does not call Exe
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
sql_test.go 70 if name == "people" {
71 exec(t, db, "CREATE|people|name=string,age=int32,photo=blob,dead=bool,bdate=datetime")
72 exec(t, db, "INSERT|people|name=Alice,age=?,photo=APHOTO", 1)
73 exec(t, db, "INSERT|people|name=Bob,age=?,photo=BPHOTO", 2)
74 exec(t, db, "INSERT|people|name=Chris,age=?,photo=CPHOTO,bdate=?", 3, chrisBirthday)
109 exec(t, db, "CREATE|people|name=string,age=int32,photo=blob,dead=bool,bdate=datetime")
111 expectPanic("Query Query", func() { db.Query("PANIC|Query|SELECT|people|age,name|") })
112 expectPanic("Query NumInput", func() { db.Query("PANIC|NumInput|SELECT|people|age,name|") })
114 rows, err := db.Query("PANIC|Close|SELECT|people|age,name|")
120 db.Query("PANIC|Exec|SELECT|people|age,name|") // should run successfully: Query does not call Exe
    [all...]
  /external/curl/docs/cmdline-opts/
ntlm.d 10 reverse-engineered by clever people and implemented in curl based on their
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug257.go     [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug257.go     [all...]
  /external/libcap-ng/libcap-ng-0.7/
libcap-ng.spec 9 URL: http://people.redhat.com/sgrubb/libcap-ng
10 Source0: http://people.redhat.com/sgrubb/libcap-ng/%{name}-%{version}.tar.gz
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonErrorNode.as 55 // people should subclass if they alter the tree type so this
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonErrorNode.js 41 // people should subclass if they alter the tree type so this
  /external/libbrillo/brillo/dbus/
data_serialization_unittest.cc 704 std::vector<Person> people{{"John", "Doe", 32}, {"Jane", "Smith", 48}};
705 AppendValueToWriter(&writer, people);
706 AppendValueToWriterAsVariant(&writer, people);
707 AppendValueToWriterAsVariant(&writer, people);
721 EXPECT_EQ(people, people_out1);
722 EXPECT_EQ(people, people_out2);
723 EXPECT_EQ(people, people_out3);
729 std::vector<Person> people{{"John", "Doe", 32}, {"Jane", "Smith", 48}};
  /prebuilts/go/darwin-x86/src/runtime/
mem_bsd.go 46 // On 64-bit, people with ulimit -v set complain if we reserve too
  /prebuilts/go/linux-x86/src/runtime/
mem_bsd.go 46 // On 64-bit, people with ulimit -v set complain if we reserve too
  /prebuilts/go/darwin-x86/src/cmd/link/
link_test.go 9 Fog everywhere. Fog up the river, where it flows among green aits and meadows; fog down the river, where it rolls defiled among the tiers of shipping and the waterside pollutions of a great (and dirty) city. Fog on the Essex marshes, fog on the Kentish heights. Fog creeping into the cabooses of collier-brigs; fog lying out on the yards and hovering in the rigging of great ships; fog drooping on the gunwales of barges and small boats. Fog in the eyes and throats of ancient Greenwich pensioners, wheezing by the firesides of their wards; fog in the stem and bowl of the afternoon pipe of the wrathful skipper, down in his close cabin; fog cruelly pinching the toes and fingers of his shivering little ?prentice boy on deck. Chance people on the bridges peeping over the parapets into a nether sky of fog, with fog all round them, as if they were up in a balloon and hanging in the misty clouds.
19 Jarndyce and Jarndyce drones on. This scarecrow of a suit has, over the course of time, become so complicated, that no man alive knows what it means. The parties to it understand it least; but it has been observed that no two Chancery lawyers can talk about it for five minutes, without coming to a total disagreement as to all the premises. Innumerable children have been born into the cause; innumerable young people have married into it; innumerable old people have died out of it. Scores of persons have deliriously found themselves made parties in Jarndyce and Jarndyce, without knowing how or why; whole families have inherited legendary hatreds with the suit. The little plaintiff or defendant, who was promised a new rocking-horse when Jarndyce and Jarndyce should be settled, has grown up, possessed himself of a real horse, and trotted away into the other world. Fair wards of court have faded into mothers and grandmothers; a long procession of Chancellors has come in and gone out; the legion of bills in the suit have been transformed into mere bills of mortality; there are not three Jarndyces left upon the earth perhaps, since old Tom Jarndyce in despair blew his brains out at a coffee-house in Chancery Lane; but Jarndyce and Jarndyce still drags its dreary length before the Court, perennially hopeless.`

Completed in 640 milliseconds

1 2 3 4