HomeSort by relevance Sort by last modified time
    Searched defs:Contact (Results 1 - 16 of 16) sorted by null

  /external/guice/examples/src/example/xml/
Contact.java 3 public class Contact {
  /developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/
Contact.java 23 public class Contact {
28 public static final Contact[] CONTACTS = {
29 new Contact("Tereasa"),
30 new Contact("Chang"),
31 new Contact("Kory"),
32 new Contact("Clare"),
33 new Contact("Landon"),
34 new Contact("Kyle"),
35 new Contact("Deana"),
36 new Contact("Daria")
    [all...]
  /developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/
Contact.java 23 public class Contact {
28 public static final Contact[] CONTACTS = {
29 new Contact("Tereasa"),
30 new Contact("Chang"),
31 new Contact("Kory"),
32 new Contact("Clare"),
33 new Contact("Landon"),
34 new Contact("Kyle"),
35 new Contact("Deana"),
36 new Contact("Daria")
    [all...]
  /development/samples/browseable/DirectShare/src/com.example.android.directshare/
Contact.java 23 public class Contact {
28 public static final Contact[] CONTACTS = {
29 new Contact("Tereasa"),
30 new Contact("Chang"),
31 new Contact("Kory"),
32 new Contact("Clare"),
33 new Contact("Landon"),
34 new Contact("Kyle"),
35 new Contact("Deana"),
36 new Contact("Daria")
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 17 """Represents user's contact information"""
22 class Contact(db.Model):
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
UsbHid.java 53 0x09, 0x55, // USAGE (Contact Count Maximum)
59 0x09, 0x54, // USAGE (Contact Count)
77 0x09, 0x51, // USAGE (Contact Identifier)
100 public void generateReport(ByteBuffer buffer, Contact[] contacts, int contactCount) {
103 // Contact Count
107 final Contact contact = contacts[i]; local
108 // Tip Switch, In Range, Contact Identifier
109 buffer.put((byte)((contact.id << 2) | 0x03));
111 buffer.put((byte)contact.x).put((byte)(contact.x >> 8))
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
Contact.java 21 /** The class manages contact between two shapes. A contact exists for each overlapping AABB in the broad-phase (except if
22 * filtered). Therefore a contact object may exist that has no contact points.
24 public class Contact {
26 org.jbox2d.dynamics.contacts.Contact contact; field in class:Contact
30 Contact (World world) {
34 protected Contact (World world, org.jbox2d.dynamics.contacts.Contact contact)
    [all...]
  /packages/apps/EmergencyInfo/src/com/android/emergency/
EmergencyContactManager.java 34 * Returns a {@link Contact} that contains all the relevant information of the contact indexed
37 public static Contact getContact(Context context, Uri contactUri) {
86 return new Contact(contactLookupUri, contactUri, name, phoneNumber, phoneType, photo);
89 /** Returns whether the contact uri is not null and corresponds to an existing contact. */
108 /** Wrapper for a contact with a phone number. */
109 public static class Contact {
110 /** The lookup uri is necessary to display the contact. */
113 * The contact uri is associated to a particular phone number and can be used to reload tha
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
Contact.java 21 /** The class manages contact between two shapes. A contact exists for each overlapping AABB in the broad-phase (except if
22 * filtered). Therefore a contact object may exist that has no contact points.
24 public class Contact {
39 protected Contact (World world, long addr) {
64 b2Contact* contact = (b2Contact*)addr;
66 contact->GetWorldManifold(&manifold);
67 int numPoints = contact->GetManifold()->pointCount;
89 b2Contact* contact = (b2Contact*)addr
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Contact.java 45 * Contact Item.
55 public final class Contact
77 public Contact() {
126 /** get the Contact list.
178 /** set the Contact List
215 "JAIN-SIP Exception, Contact, setQValue(), "
221 Contact retval = (Contact) super.clone();
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/contacts/
Contact.java 40 * The class manages contact between two shapes. A contact exists for each overlapping AABB in the
41 * broad-phase (except if filtered). Therefore a contact object may exist that has no contact
46 public abstract class Contact {
49 // Used when crawling contact graph when forming islands.
53 // This contact can be disabled (by user)
55 // This contact needs filtering because a fixture filter was changed.
57 // This bullet contact had a TOI event
65 public Contact m_prev
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
Contact.java 39 * A Contact represents a single person or logical entity as perceived by the user. The information
40 * about a contact can come from multiple data sources, which are each represented by a RawContact
41 * object. Thus, a Contact is associated with a collection of RawContact objects.
43 * The aggregation of raw contacts into a single contact is performed automatically, and it is
46 * Only the {@link ContactLoader} class can create a Contact object with various flags to allow
47 * partial loading of contact data. Thus, an instance of this class should be treated as
50 public class Contact {
52 /** Contact is successfully loaded */
54 /** There was an error loading the contact */
56 /** Contact is not found *
    [all...]
  /packages/services/Car/car-cluster-demo-renderer/src/android/car/cluster/demorenderer/
PhoneBook.java 53 * Class that provides contact information.
74 private HashMap<String, Contact> mContactByNumber;
103 * Loads contact details for a given phone number asynchronously. It may call listener's
169 void onContactLoaded(String number, @Nullable Contact contact);
203 static class Contact {
209 Contact(Resources resources, String number, int id, String name, String label, int type) {
306 Contact contact = null; local
316 contact = new Contact(resources, mNumber, id, name, label, type)
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSoftBody.h 185 /* sCti is Softbody contact info */
266 sCti m_cti; // Contact infos
489 Contact
561 eType::_ Type() const { return(eType::Contact); }
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/
btSoftBody.java     [all...]
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 652 milliseconds