HomeSort by relevance Sort by last modified time
    Searched refs:Person (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/chrome/browser/ui/app_list/search/people/
person.h 19 // Person holds information about a search result retrieved from the People
21 struct Person {
22 // Parses the dictionary from the people search result and creates a person
24 static scoped_ptr<Person> Create(const base::DictionaryValue& dict);
26 Person();
27 ~Person();
29 scoped_ptr<Person> Duplicate();
31 // This is a unique id for this person. In the case of a result with an
34 // unique for this person search result.
42 // you interact with the person
    [all...]
person.cc 5 #include "chrome/browser/ui/app_list/search/people/person.h"
14 const char kKeyId[] = "person.id";
15 const char kKeyNames[] = "person.names";
17 const char kKeyEmails[] = "person.emails";
19 const char kKeyInteractionRank[] = "person.sortKeys.interactionRank";
20 const char kKeyImages[] = "person.images";
22 const char kKeyOwnerId[] = "person.metadata.ownerId";
66 scoped_ptr<Person> Person::Create(const base::DictionaryValue& dict) {
67 scoped_ptr<Person> person(new Person())
    [all...]
people_result.h 19 struct Person;
23 PeopleResult(Profile* profile, scoped_ptr<Person> person);
46 scoped_ptr<Person> person_;
people_provider.cc 21 #include "chrome/browser/ui/app_list/search/people/person.h"
189 scoped_ptr<Person> person = Person::Create(dict); local
190 if (!person)
193 result.reset(new PeopleResult(profile_, person.Pass()));
people_result.cc 16 #include "chrome/browser/ui/app_list/search/people/person.h"
63 PeopleResult::PeopleResult(Profile* profile, scoped_ptr<Person> person)
64 : profile_(profile), person_(person.Pass()), weak_factory_(this) {
  /external/javassist/sample/reflect/
Person.java 10 public class Person {
17 public Person(String name, int birthYear) {
41 Person p = new Person(name, 1960);
  /external/nanopb-c/tests/basic_buffer/
encode_buffer.c 1 /* A very simple encoding test case using person.proto.
8 #include "person.pb.h"
17 Person person = {"Test Person 99", 99, true, "test@person.com", local
26 if (pb_encode(&stream, Person_fields, &person))
decode_buffer.c 1 /* A very simple decoding test case, using person.proto.
11 #include "person.pb.h"
19 Person person; local
21 if (!pb_decode(stream, Person_fields, &person))
26 printf("name: \"%s\"\n", person.name);
27 printf("id: %ld\n", (long)person.id);
29 if (person.has_email)
30 printf("email: \"%s\"\n", person.email);
32 for (i = 0; i < person.phone_count; i++
    [all...]
  /external/nanopb-c/tests/basic_stream/
encode_stream.c 6 #include "person.pb.h"
19 Person person = {"Test Person 99", 99, true, "test@person.com", local
31 if (pb_encode(&stream, Person_fields, &person))
decode_stream.c 6 #include "person.pb.h"
15 Person person; local
17 if (!pb_decode(stream, Person_fields, &person))
22 printf("name: \"%s\"\n", person.name);
23 printf("id: %ld\n", (long)person.id);
25 if (person.has_email)
26 printf("email: \"%s\"\n", person.email);
28 for (i = 0; i < person.phone_count; i++)
30 Person_PhoneNumber *phone = &person.phone[i]
    [all...]
  /external/chromium_org/chrome/browser/resources/user_manager/
user_manager.js 36 * @param {bool} showAddPerson Whether the 'Add Person' button is displayed.
  /external/chromium_org/third_party/dom_distiller_js/package/js/
domdistiller.js 448 function De(){De=Gu;ze=new Ee('IMAGE',0);ye=new Ee(Uv,1);Be=new Ee('PERSON',2);Ae=new Ee('ORGANIZATION',3);Ce=new Ee('UNSUPPORTED',4);xe=ki(Tk,Ou,15,[ze,ye,Be,Ae,Ce])}
    [all...]

Completed in 1162 milliseconds