HomeSort by relevance Sort by last modified time
    Searched full:organization (Results 26 - 50 of 230) sorted by null

12 3 4 5 6 7 8 910

  /packages/apps/Contacts/src/com/android/contacts/
ContactsUtils.java 38 import android.provider.ContactsContract.CommonDataKinds.Organization;
77 } else if (Organization.CONTENT_ITEM_TYPE.equals(mimeType)) {
78 colType = cursor.getColumnIndex(Organization.TYPE);
79 colLabel = cursor.getColumnIndex(Organization.LABEL);
109 } else if (Organization.CONTENT_ITEM_TYPE.equals(mimetype)) {
110 defaultType = Organization.TYPE_WORK;
111 customType = Organization.TYPE_CUSTOM;
  /frameworks/base/core/java/android/pim/vcard/
VCardEntry.java 37 import android.provider.ContactsContract.CommonDataKinds.Organization;
62 private final static int DEFAULT_ORGANIZATION_TYPE = Organization.TYPE_WORK;
277 OrganizationData organization = (OrganizationData)obj; local
278 return (type == organization.type &&
279 TextUtils.equals(companyName, organization.companyName) &&
280 TextUtils.equals(departmentName, organization.departmentName) &&
281 TextUtils.equals(titleName, organization.titleName) &&
282 isPrimary == organization.isPrimary);
589 // Create new first organization entry, with "null" title which may be
621 // Create new first organization entry, with "null" other info, which may b
    [all...]
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/
VCardImporterTests.java 24 import android.provider.ContactsContract.CommonDataKinds.Organization;
485 elem.addExpected(Organization.CONTENT_ITEM_TYPE)
486 .put(Organization.COMPANY, "Company")
487 .put(Organization.DEPARTMENT, "Organization Devision Room Sheet No.")
488 .put(Organization.TITLE, "Excellent Janitor")
489 .put(Organization.TYPE, Organization.TYPE_WORK);
    [all...]
  /dalvik/libcore/luni/src/main/java/java/net/
Inet4Address.java 206 * Returns whether the address is a organization-local multicast address or
207 * not. The valid range for IPv4 organization-local addresses is:
211 * @return {@code true} if this instance represents a organization-local
  /frameworks/base/core/java/android/net/http/
SslCertificate.java 239 * - organization (O),
254 * Organization (O) component of the name
313 * @return The Organization (O) component of this name
  /development/pdk/docs/porting/
gps.jd 22 <p>To implement a GPS driver, create a shared library that implements the interface defined in <code>gps.h</code>. You must name your shared library <code>libgps.so</code> so that it will get loaded from <code>/system/lib</code> at runtime. Place GPS sources and Android.mk in <code>vendor/acme/chipset_or_board/gps/</code> (where "acme" is your organization name and "chipset_or_board" is your hardware target).</p>
  /external/e2fsprogs/e2fsck/
profile.h 17 * responsibility of any person or organization contemplating export to
  /external/kernel-headers/original/linux/sunrpc/
gss_asn1.h 21 * It is the responsibility of any person or organization contemplating
  /external/opencore/
README 9 structure to make it easier to understand the organization.
  /packages/apps/Email/src/com/android/exchange/adapter/
ContactsSyncAdapter.java 52 import android.provider.ContactsContract.CommonDataKinds.Organization;
614 ops.addOrganization(entity, Organization.TYPE_WORK, companyName, title, department,
    [all...]
  /dalvik/libcore/xml/src/main/java/javax/xml/validation/
package.html 22 RNG is maintained by the <a href="http://www.oasis-open.org">Organization for the Advancement of
24 <a href="http://www.iso.org">ISO (International Organization for Standardization)</a> standard.</li>
  /packages/apps/Contacts/tests/src/com/android/contacts/
EntityModifierTests.java 43 import android.provider.ContactsContract.CommonDataKinds.Organization;
120 // Organization is only one
121 kind = new DataKind(Organization.CONTENT_ITEM_TYPE, -1, -1, 10, true);
124 kind.fieldList.add(new EditField(Organization.COMPANY, -1, -1));
125 kind.fieldList.add(new EditField(Organization.TITLE, -1, -1));
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 43 import android.provider.ContactsContract.CommonDataKinds.Organization;
237 values.put(Data.MIMETYPE, Organization.CONTENT_ITEM_TYPE);
238 values.put(Organization.TYPE, Organization.TYPE_WORK);
    [all...]
ContactsProvider2Test.java 55 import android.provider.ContactsContract.CommonDataKinds.Organization;
    [all...]
  /external/icu4c/tools/ctestfw/unicode/
tstdtmod.h 22 /* This class abstracts the actual organization of the
  /external/libpcap/
wlan_filtering.patch 277 + * SNAP packets with an organization code of
281 + * XXX - check for an organization code of
304 + * in a SNAP frame with an organization code of
309 + * organization code of 0x000000 (encapsulated
  /external/openssl/crypto/dh/
generate 5 Organization: Freelance Information Architect
  /prebuilt/common/jython/
LICENSE_CPython.txt 19 non-profit organization created specifically to own Python-related
84 ("PSF"), and the Individual or Organization ("Licensee") accessing and
137 Individual or Organization ("Licensee") accessing and otherwise using
185 Reston, VA 20191 ("CNRI"), and the Individual or Organization
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
Inet6AddressTest.java 556 "IPv6 organization multicast address "
653 "IPv6 organization multicast address "
715 // IP V6 regular address tests for Mulitcase organization-local
724 assertTrue("IPv6 organization-local mutlicast address " + addrName
729 assertTrue("IPv6 organization-local multicast address " + addrName
736 assertTrue("IPv6 organization-local mutlicast address " + addrName
743 assertTrue("IPv6 organization-local multicast address " + addrName
752 + " incorrectly indicated as an organization-local mulitcast address.",
761 + " incorrectly indicated as an organization-local mulitcast address.",
770 + " incorrectly indicated as an organization-local mulitcast address."
    [all...]
  /packages/apps/Browser/res/layout-land/
ssl_certificate.xml 87 <!-- Organization: -->
160 <!-- Organization: -->
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 56 import android.provider.ContactsContract.CommonDataKinds.Organization;
365 public static final int ORGANIZATION = 5;
2285 String organization = cursor.getString(OrganizationQuery.COMPANY); local
    [all...]
LegacyApiSupport.java 58 import android.provider.ContactsContract.CommonDataKinds.Organization;
122 + " LEFT OUTER JOIN data organization ON (raw_contacts._id = organization.raw_contact_id"
123 + " AND (SELECT mimetype FROM mimetypes WHERE mimetypes._id = organization.mimetype_id)"
124 + "='" + Organization.CONTENT_ITEM_TYPE + "' AND organization.is_primary)"
218 Organization.CONTENT_ITEM_TYPE
576 "organization." + Data._ID
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityModifier.java 37 import android.provider.ContactsContract.CommonDataKinds.Organization;
489 // Organization
492 final DataKind kindOrg = source.getKindForMimetype(Organization.CONTENT_ITEM_TYPE);
498 child.put(Organization.COMPANY, company);
503 child.put(Organization.TITLE, title);
  /external/qemu/hw/
usb-hid.c 111 * USB 2.0, single TT organization (mandatory):
114 * USB 2.0, multiple TT organization (optional):
166 * USB 2.0, single TT organization (mandatory):
169 * USB 2.0, multiple TT organization (optional):
221 * USB 2.0, single TT organization (mandatory):
224 * USB 2.0, multiple TT organization (optional):
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/
Package.java 155 * Returns the name of the vendor or organization that provides this
227 * Returns the name of the vendor or organization that owns and maintains

Completed in 442 milliseconds

12 3 4 5 6 7 8 910