Home
last modified time | relevance | path

Searched refs:person (Results 1 – 25 of 64) sorted by relevance

123

/external/protobuf/examples/
Dlist_people.cc12 const tutorial::Person& person = address_book.person(i); in ListPeople() local
14 cout << "Person ID: " << person.id() << endl; in ListPeople()
15 cout << " Name: " << person.name() << endl; in ListPeople()
16 if (person.has_email()) { in ListPeople()
17 cout << " E-mail address: " << person.email() << endl; in ListPeople()
20 for (int j = 0; j < person.phone_size(); j++) { in ListPeople()
21 const tutorial::Person::PhoneNumber& phone_number = person.phone(j); in ListPeople()
Dlist_people.py10 for person in address_book.person:
11 print "Person ID:", person.id
12 print " Name:", person.name
13 if person.HasField('email'):
14 print " E-mail address:", person.email
16 for phone_number in person.phone:
DListPeople.java12 for (Person person: addressBook.getPersonList()) { in Print()
13 System.out.println("Person ID: " + person.getId()); in Print()
14 System.out.println(" Name: " + person.getName()); in Print()
15 if (person.hasEmail()) { in Print()
16 System.out.println(" E-mail address: " + person.getEmail()); in Print()
19 for (Person.PhoneNumber phoneNumber : person.getPhoneList()) { in Print()
Dadd_person.py9 def PromptForAddress(person): argument
10 person.id = int(raw_input("Enter person ID number: "))
11 person.name = raw_input("Enter name: ")
15 person.email = email
22 phone_number = person.phone.add()
53 PromptForAddress(address_book.person.add())
DAddPerson.java17 Person.Builder person = Person.newBuilder(); in PromptForAddress() local
20 person.setId(Integer.valueOf(stdin.readLine())); in PromptForAddress()
23 person.setName(stdin.readLine()); in PromptForAddress()
28 person.setEmail(email); in PromptForAddress()
53 person.addPhone(phoneNumber); in PromptForAddress()
56 return person.build(); in PromptForAddress()
Dadd_person.cc10 void PromptForAddress(tutorial::Person* person) { in PromptForAddress() argument
14 person->set_id(id); in PromptForAddress()
18 getline(cin, *person->mutable_name()); in PromptForAddress()
24 person->set_email(email); in PromptForAddress()
35 tutorial::Person::PhoneNumber* phone_number = person->add_phone(); in PromptForAddress()
Daddressbook.proto10 required int32 id = 2; // Unique ID number for this person.
29 repeated Person person = 1; field
DREADME.txt4 example adds a new person to an address book, prompting the user to input
5 the person's information. The list_people example lists people already in the
/external/icu4c/samples/ufortune/resources/
Droot.txt125 "A candidate is a person who gets money from the rich and votes from the
128 "A celebrity is a person who is known for his well-knownness.",
165 "A consultant is a person who borrows your watch, tells you what time it
184 "A cynic is a person searching for an honest man, with a stolen
/external/dropbear/
DNOTICE15 Permission is hereby granted, free of charge, to any person obtaining a copy
72 Permission is hereby granted, free of charge, to any person
DLICENSE15 Permission is hereby granted, free of charge, to any person obtaining a copy
72 Permission is hereby granted, free of charge, to any person
/external/webkit/WebKitTools/simplejson/
DLICENSE.txt3 Permission is hereby granted, free of charge, to any person obtaining a copy of
/external/elfutils/po/
DMakevars17 # expected to transfer the copyright for their translations to this person
/external/elfutils/libelf-po/
DMakevars17 # expected to transfer the copyright for their translations to this person
/external/libffi/
DNOTICE4 Permission is hereby granted, free of charge, to any person obtaining
DLICENSE4 Permission is hereby granted, free of charge, to any person obtaining
/external/expat/
DNOTICE5 Permission is hereby granted, free of charge, to any person obtaining
/external/giflib/
DNOTICE3 Permission is hereby granted, free of charge, to any person obtaining a copy
/external/zlib/contrib/dotzlib/
DLICENSE_1_0.txt3 Permission is hereby granted, free of charge, to any person or organization
/external/embunit/src/
DNOTICE1 Permission is hereby granted, free of charge, to any person obtaining
/external/webkit/JavaScriptGlue/icu/
DLICENSE7 Permission is hereby granted, free of charge, to any person obtaining a copy of this
/external/webkit/JavaScriptCore/icu/
DLICENSE7 Permission is hereby granted, free of charge, to any person obtaining a copy of this
/external/libxml2/
DNOTICE7 Permission is hereby granted, free of charge, to any person obtaining a copy
/external/webkit/WebCore/icu/
DLICENSE7 Permission is hereby granted, free of charge, to any person obtaining a copy of this
/external/icu4c/
DNOTICE9 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and a…
40 Permission is hereby granted, free of charge, to any person obtaining a copy

123