OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Person
(Results
1 - 8
of
8
) 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"
15
const char kKeyId[] = "
person
.id";
16
const char kKeyNames[] = "
person
.names";
18
const char kKeyEmails[] = "
person
.emails";
20
const char kKeyInteractionRank[] = "
person
.sortKeys.interactionRank";
21
const char kKeyImages[] = "
person
.images";
23
const char kKeyOwnerId[] = "
person
.metadata.ownerId";
67
scoped_ptr<
Person
>
Person
::Create(const base::DictionaryValue& dict) {
68
scoped_ptr<
Person
> person(new Person())
[
all
...]
/external/javassist/sample/reflect/
Person.java
10
public class
Person
{
17
public
Person
(String name, int birthYear) {
41
Person
p = new
Person
(name, 1960);
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_structures.py
212
class
Person
(Structure):
216
self.assertRaises(TypeError,
Person
, 42)
217
self.assertRaises(ValueError,
Person
, "asldkjaslkdjaslkdj")
218
self.assertRaises(TypeError,
Person
, "Name", "HI")
221
self.assertEqual(
Person
("12345", 5).name, "12345")
223
self.assertEqual(
Person
("123456", 5).name, "123456")
225
self.assertRaises(ValueError,
Person
, "1234567", 5)
282
class
Person
(Structure):
287
p =
Person
("Someone", ("1234", "5678"), 5)
319
class
Person
(Structure)
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_structures.py
212
class
Person
(Structure):
216
self.assertRaises(TypeError,
Person
, 42)
217
self.assertRaises(ValueError,
Person
, "asldkjaslkdjaslkdj")
218
self.assertRaises(TypeError,
Person
, "Name", "HI")
221
self.assertEqual(
Person
("12345", 5).name, "12345")
223
self.assertEqual(
Person
("123456", 5).name, "123456")
225
self.assertRaises(ValueError,
Person
, "1234567", 5)
282
class
Person
(Structure):
287
p =
Person
("Someone", ("1234", "5678"), 5)
319
class
Person
(Structure)
[
all
...]
/prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar
/prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar
/prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar
Completed in 557 milliseconds