HomeSort by relevance Sort by last modified time
    Searched refs:ORGANIZATION (Results 1 - 25 of 49) sorted by null

1 2

  /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...]
TokenTypes.java 82 public static final int ORGANIZATION = START + 45;
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
address_field.h 34 ORGANIZATION, // Organization, company, firm, institution, etc.
  /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...]
NameMap.java 139 putNameMap(ORGANIZATION, Organization.class.getName()); //31
SIPHeaderNames.java 81 public static final String ORGANIZATION = OrganizationHeader.NAME; //31
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
address_ui_test.cc 40 using i18n::addressinput::ORGANIZATION;
224 LanguageTestCase("CH", "de", "de", ORGANIZATION),
225 LanguageTestCase("CH", "de-DE", "de", ORGANIZATION),
226 LanguageTestCase("CH", "de-Latn-DE", "de", ORGANIZATION),
227 LanguageTestCase("CH", "fr", "fr", ORGANIZATION),
228 LanguageTestCase("CH", "it", "it", ORGANIZATION),
229 LanguageTestCase("CH", "en", "de", ORGANIZATION),
address_field_util_test.cc 36 using i18n::addressinput::ORGANIZATION;
44 expected.push_back(FormatElement(ORGANIZATION));
address_data_test.cc 35 using i18n::addressinput::ORGANIZATION;
46 address.organization = "ooo";
61 EXPECT_EQ(address.organization,
62 address.GetFieldValue(ORGANIZATION));
85 EXPECT_TRUE(address.IsFieldEmpty(ORGANIZATION));
95 address.organization = "ooo";
105 EXPECT_FALSE(address.IsFieldEmpty(ORGANIZATION));
159 address.organization = "O";
170 "organization: \"O\"\n"
185 address.organization = "O"
    [all...]
localization_test.cc 44 using i18n::addressinput::ORGANIZATION;
186 other_fields.push_back(ORGANIZATION);
217 address.organization = "bad organization";
315 EXPECT_EQ("bad organization "
318 address, ORGANIZATION, UNKNOWN_VALUE, true, true));
319 EXPECT_EQ("bad organization "
322 address, ORGANIZATION, UNKNOWN_VALUE, true, false));
323 EXPECT_EQ("bad organization "
326 address, ORGANIZATION, UNKNOWN_VALUE, false, false))
    [all...]
validation_task_test.cc 60 ORGANIZATION,
217 address_.organization = "ooo";
224 filter_.insert(std::make_pair(ORGANIZATION, MISSING_REQUIRED_FIELD));
  /external/chromium_org/components/autofill/core/browser/
address_i18n_unittest.cc 29 using ::i18n::addressinput::ORGANIZATION;
48 {true, COMPANY_NAME, ORGANIZATION},
57 {false, COMPANY_NAME, ORGANIZATION},
121 expected.organization = "Underworld";
address_i18n.cc 37 address_data->organization = base::UTF16ToUTF8(
86 case ::i18n::addressinput::ORGANIZATION:
138 *field = ::i18n::addressinput::ORGANIZATION;
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
AddressField.java 30 ORGANIZATION('O'),
StandardChecks.java 54 addToMap(map, AddressField.ORGANIZATION, AddressProblemType.USING_UNUSED_FIELD,
AddressData.java 44 * <p>organization: Google</p>
97 // The firm or organization. This goes at a finer granularity than
119 mOrganization = builder.mValues.get(AddressField.ORGANIZATION);
178 * Returns the firm or organization.
225 case ORGANIZATION:
344 return set(AddressField.ORGANIZATION, value);
StandardAddressVerifier.java 23 import static com.android.i18n.addressinput.AddressField.ORGANIZATION;
155 verifyField(script, v, ORGANIZATION, mAddress.getOrganization(), mProblems);
FormatInterpreter.java 193 case ORGANIZATION:
  /external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
FormatInterpreterTest.java 61 AddressField.ORGANIZATION,
84 AddressField.ORGANIZATION,
101 AddressField.ORGANIZATION,
131 AddressField.ORGANIZATION,
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_i18n_input.cc 63 // Interactive autofill dialog does not display organization.
64 if (component.field == ::i18n::addressinput::ORGANIZATION)
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
address_field_util.cc 43 fields.insert(std::make_pair('O', ORGANIZATION));
address_ui.cc 66 case ORGANIZATION:
validation_task.cc 113 ORGANIZATION,
137 // ORGANIZATION is never required.
  /external/chromium_org/net/tools/testserver/
minica.py 99 ORGANIZATION, o,
166 ORGANIZATION = asn1.OID([2, 5, 4, 10])
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDisplayUtils.java 116 * Returns the organization of the contact. If several organizations are given,
121 == DisplayNameSources.ORGANIZATION;
125 OrganizationDataItem organization = (OrganizationDataItem) dataItem; local
126 final String company = organization.getCompany();
127 final String title = organization.getTitle();
130 // DisplayName is already the organization, it mirrors company or (if company

Completed in 2322 milliseconds

1 2