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

  /external/nist-sip/java/gov/nist/javax/sip/parser/
OrganizationParser.java 31 /** Parser for Organization header.
44 * @param organization the header to parse
46 public OrganizationParser(String organization) {
47 super(organization);
60 * @return SIPHeader (Organization object)
67 Organization organization = new Organization(); local
69 headerName(TokenTypes.ORGANIZATION);
71 organization.setHeaderName(SIPHeaderNames.ORGANIZATION)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Organization.java 36 * Organization SIP Header.
47 public class Organization extends SIPHeader implements OrganizationHeader {
54 * Organization field
56 protected String organization; field in class:Organization
63 return organization;
69 public Organization() {
70 super(ORGANIZATION);
74 * Get the organization field.
78 return organization;
82 * Set the organization membe
    [all...]
HeaderFactoryImpl.java 630 * organization value.
632 * @param organization - the new string value of the organization.
634 * unexpectedly while parsing the organization value.
637 public OrganizationHeader createOrganizationHeader(String organization)
639 if (organization == null)
640 throw new NullPointerException("bad organization arg");
641 Organization o = new Organization();
642 o.setOrganization(organization);
    [all...]
  /external/nist-sip/java/javax/sip/header/
OrganizationHeader.java 6 String NAME = "Organization";
9 void setOrganization(String organization) throws ParseException;
HeaderFactory.java 98 OrganizationHeader createOrganizationHeader(String organization)
  /external/chromium/third_party/libjingle/source/talk/base/
pathutils.h 125 inline void SetOrganizationName(const std::string& organization) {
126 Filesystem::SetOrganizationName(organization);
131 inline void GetOrganizationName(std::string* organization) {
132 Filesystem::GetOrganizationName(organization);
fileutils.h 263 void SetOrganizationName(const std::string& organization) {
264 organization_name_ = organization;
266 void GetOrganizationName(std::string* organization) {
267 ASSERT(NULL != organization);
268 *organization = organization_name_;
409 static void SetOrganizationName(const std::string& organization) {
410 EnsureDefaultFilesystem()->SetOrganizationName(organization);
413 static void GetOrganizationName(std::string* organization) {
414 EnsureDefaultFilesystem()->GetOrganizationName(organization);
  /external/smack/src/org/jivesoftware/smackx/packet/
VCard.java 112 private String organization; field in class:VCard
230 return organization;
233 public void setOrganization(String organization) {
234 this.organization = organization;
635 return organization != null || organizationUnit != null;
667 if (organization != null ?
668 !organization.equals(vCard.organization) : vCard.organization != null)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509ObjectIdentifiers.java 16 static final ASN1ObjectIdentifier organization = new ASN1ObjectIdentifier(id + ".10"); field in interface:X509ObjectIdentifiers
23 // {iso(1) identified-organization(3) oiw(14) secsig(3) algorithms(2) 26 } //
28 // {iso(1) identified-organization(3) TeleTrust(36) algorithm(3) hashAlgorithm(2) RIPEMD-160(1)}
34 // {iso(1) identified-organization(3) TeleTrust(36) algorithm(3) signatureAlgorithm(3) rsaSignature(1) rsaSignatureWithripemd160(2) }
  /external/openssl/crypto/x509v3/
v3_cpols.c 125 ASN1_SIMPLE(NOTICEREF, organization, DISPLAYTEXT),
289 } else if(!strcmp(cnf->name, "organization")) {
295 if(ia5org) nref->organization->type = V_ASN1_IA5STRING;
296 else nref->organization->type = V_ASN1_VISIBLESTRING;
297 if(!ASN1_STRING_set(nref->organization, cnf->value,
324 (!not->noticeref->noticenos || !not->noticeref->organization)) {
419 ref->organization->data);
x509v3.h 282 ASN1_STRING *organization; member in struct:NOTICEREF_st
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailDisplayUtils.java 141 * Returns the organization of the contact. If several organizations are given,
146 == DisplayNameSources.ORGANIZATION;
150 OrganizationDataItem organization = (OrganizationDataItem) dataItem; local
151 final String company = organization.getCompany();
152 final String title = organization.getTitle();
155 // DisplayName is already the organization, it mirrors company or (if company
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/bin/
i686-linux-gccbug 39 # The default organization.
126 if [ -n "$ORGANIZATION" ]; then
127 if [ -f "$ORGANIZATION" ]; then
128 ORGANIZATION="`cat $ORGANIZATION`"
132 ORGANIZATION="$DEFAULT_ORGANIZATION"
133 elif [ -f $HOME/.organization ]; then
134 ORGANIZATION="`cat $HOME/.organization`"
228 ORGANIZATION_C='<organization of PR author (multiple lines)>
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntry.java 32 import android.provider.ContactsContract.CommonDataKinds.Organization;
70 private static final int DEFAULT_ORGANIZATION_TYPE = Organization.TYPE_WORK;
91 ORGANIZATION,
780 builder.withValueBackReference(Organization.RAW_CONTACT_ID, backReferenceIndex);
781 builder.withValue(Data.MIMETYPE, Organization.CONTENT_ITEM_TYPE);
782 builder.withValue(Organization.TYPE, mType);
784 builder.withValue(Organization.COMPANY, mOrganizationName);
787 builder.withValue(Organization.DEPARTMENT, mDepartmentName);
790 builder.withValue(Organization.TITLE, mTitle);
793 builder.withValue(Organization.PHONETIC_NAME, mPhoneticName)
815 OrganizationData organization = (OrganizationData) obj; local
    [all...]
  /external/libvorbis/doc/
05-comment.tex 130 \item[ORGANIZATION]
131 Name of the organization producing the track (i.e.
  /external/ceres-solver/docs/
changes.tex 211 \item Re-organized documentation. No new content, but better organization.
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
LegacyContactsProviderTest.java 164 // Remove the original primary organization
172 // Remove the remaining organization
759 private void assertSearchSuggestion(boolean name, boolean photo, boolean organization,
783 if (organization) {
    [all...]
  /external/openssl/include/openssl/
x509v3.h 282 ASN1_STRING *organization; member in struct:NOTICEREF_st
  /external/dropbear/libtommath/
bn.tex 354 \section{Function Organization}
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 869 milliseconds