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

  /external/iptables/extensions/
libxt_pkttype.c 24 static const struct pkttypes supported_types[] = { variable in typeref:struct:pkttypes
43 for (i = 0; i < ARRAY_SIZE(supported_types); ++i)
44 if(supported_types[i].printhelp == 1)
45 printf("\t%-14s\t\t%s\n", supported_types[i].name, supported_types[i].help);
67 for (i = 0; i < ARRAY_SIZE(supported_types); ++i)
68 if(strcasecmp(pkttype, supported_types[i].name)==0)
70 info->pkttype=supported_types[i].pkttype;
91 for (i = 0; i < ARRAY_SIZE(supported_types); ++i)
92 if(supported_types[i].pkttype==info->pkttype
    [all...]
  /external/chromium_org/components/autofill/core/browser/
address.cc 198 void Address::GetSupportedTypes(ServerFieldTypeSet* supported_types) const {
199 supported_types->insert(ADDRESS_HOME_LINE1);
200 supported_types->insert(ADDRESS_HOME_LINE2);
201 supported_types->insert(ADDRESS_HOME_STREET_ADDRESS);
202 supported_types->insert(ADDRESS_HOME_DEPENDENT_LOCALITY);
203 supported_types->insert(ADDRESS_HOME_CITY);
204 supported_types->insert(ADDRESS_HOME_STATE);
205 supported_types->insert(ADDRESS_HOME_ZIP);
206 supported_types->insert(ADDRESS_HOME_SORTING_CODE);
207 supported_types->insert(ADDRESS_HOME_COUNTRY)
    [all...]
contact_info.cc 37 void NameInfo::GetSupportedTypes(ServerFieldTypeSet* supported_types) const {
38 supported_types->insert(NAME_FIRST);
39 supported_types->insert(NAME_MIDDLE);
40 supported_types->insert(NAME_LAST);
41 supported_types->insert(NAME_MIDDLE_INITIAL);
42 supported_types->insert(NAME_FULL);
157 void EmailInfo::GetSupportedTypes(ServerFieldTypeSet* supported_types) const {
158 supported_types->insert(EMAIL_ADDRESS);
189 void CompanyInfo::GetSupportedTypes(ServerFieldTypeSet* supported_types) const {
190 supported_types->insert(COMPANY_NAME)
    [all...]
contact_info.h 34 ServerFieldTypeSet* supported_types) const OVERRIDE;
73 ServerFieldTypeSet* supported_types) const OVERRIDE;
94 ServerFieldTypeSet* supported_types) const OVERRIDE;
form_group.h 62 // data. This method is additive on |supported_types|.
63 virtual void GetSupportedTypes(ServerFieldTypeSet* supported_types) const = 0;
phone_number.cc 62 void PhoneNumber::GetSupportedTypes(ServerFieldTypeSet* supported_types) const {
63 supported_types->insert(PHONE_HOME_WHOLE_NUMBER);
64 supported_types->insert(PHONE_HOME_NUMBER);
65 supported_types->insert(PHONE_HOME_CITY_CODE);
66 supported_types->insert(PHONE_HOME_CITY_AND_NUMBER);
67 supported_types->insert(PHONE_HOME_COUNTRY_CODE);
address.h 43 ServerFieldTypeSet* supported_types) const OVERRIDE;
autofill_data_model_unittest.cc 28 ServerFieldTypeSet* supported_types) const OVERRIDE {}
phone_number.h 82 ServerFieldTypeSet* supported_types) const OVERRIDE;
credit_card.cc 596 void CreditCard::GetSupportedTypes(ServerFieldTypeSet* supported_types) const {
597 supported_types->insert(CREDIT_CARD_NAME);
598 supported_types->insert(CREDIT_CARD_NUMBER);
599 supported_types->insert(CREDIT_CARD_TYPE);
600 supported_types->insert(CREDIT_CARD_EXP_MONTH);
601 supported_types->insert(CREDIT_CARD_EXP_2_DIGIT_YEAR);
602 supported_types->insert(CREDIT_CARD_EXP_4_DIGIT_YEAR);
603 supported_types->insert(CREDIT_CARD_EXP_DATE_2_DIGIT_YEAR);
604 supported_types->insert(CREDIT_CARD_EXP_DATE_4_DIGIT_YEAR);
credit_card.h 120 ServerFieldTypeSet* supported_types) const OVERRIDE;
autofill_profile.h 140 ServerFieldTypeSet* supported_types) const OVERRIDE;
autofill_profile.cc 615 ServerFieldTypeSet* supported_types) const {
618 (*it)->GetSupportedTypes(supported_types);
  /external/chromium_org/content/public/renderer/
key_system_info.h 47 std::vector<ContainerCodecsPair> supported_types; member in struct:content::KeySystemInfo
  /external/chromium_org/android_webview/renderer/
aw_key_systems.cc 43 info.supported_types.push_back(std::make_pair(kAudioMp4, kMp4a));
44 info.supported_types.push_back(std::make_pair(kVideoMp4, kMp4aAvc1Avc3));
  /external/chromium_org/chrome/renderer/media/
chrome_key_systems.cc 84 info.supported_types.push_back(std::make_pair(kAudioWebM, kVorbis));
85 info.supported_types.push_back(std::make_pair(kVideoWebM, kVorbisVP8));
87 info.supported_types.push_back(std::make_pair(kAudioMp4, kMp4a));
88 info.supported_types.push_back(std::make_pair(kVideoMp4, kMp4aAvc1Avc3));
183 info.supported_types.push_back(std::make_pair(kAudioWebM, kVorbis));
184 info.supported_types.push_back(std::make_pair(kVideoWebM, kVorbisVP8));
197 info.supported_types.push_back(std::make_pair(kAudioMp4, audio_codecs));
198 info.supported_types.push_back(std::make_pair(kVideoMp4, video_codecs));
  /external/chromium_org/content/renderer/media/crypto/
key_systems.cc 64 info.supported_types.push_back(std::make_pair(kAudioWebM, kVorbis));
65 info.supported_types.push_back(std::make_pair(kVideoWebM, kVorbisVP8));
67 info.supported_types.push_back(std::make_pair(kAudioMp4, kMp4a));
68 info.supported_types.push_back(std::make_pair(kVideoMp4, kMp4aAvc1Avc3));
107 const std::vector<KeySystemInfo::ContainerCodecsPair>& supported_types,
185 key_system_info.supported_types,
198 const std::vector<KeySystemInfo::ContainerCodecsPair>& supported_types,
217 for (size_t i = 0; i < supported_types.size(); ++i) {
218 const KeySystemInfo::ContainerCodecsPair& pair = supported_types[i];
key_systems_unittest.cc 86 aes.supported_types.push_back(std::make_pair(kAudioWebM, kWebMAudioCodecs));
87 aes.supported_types.push_back(std::make_pair(kVideoWebM, kWebMVideoCodecs));
89 aes.supported_types.push_back(std::make_pair(kAudioFoo, kFooAudioCodecs));
90 aes.supported_types.push_back(std::make_pair(kVideoFoo, kFooVideoCodecs));
98 ext.supported_types.push_back(std::make_pair(kAudioWebM, kWebMAudioCodecs));
99 ext.supported_types.push_back(std::make_pair(kVideoWebM, kWebMVideoCodecs));
101 ext.supported_types.push_back(std::make_pair(kAudioFoo, kFooAudioCodecs));
102 ext.supported_types.push_back(std::make_pair(kVideoFoo, kFooVideoCodecs));
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 110 TNC_MessageTypeList supported_types; member in struct:tnc_if_imc
175 os_free(imc->supported_types);
176 imc->supported_types =
178 if (imc->supported_types == NULL)
180 os_memcpy(imc->supported_types, supportedTypes,
505 os_free(imc->supported_types);
515 if (imc == NULL || imc->supported_types == NULL)
523 svendor = imc->supported_types[i] >> 8;
524 ssubtype = imc->supported_types[i] & 0xff;
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 109 TNC_MessageTypeList supported_types; member in struct:tnc_if_imv
229 os_free(imv->supported_types);
230 imv->supported_types =
232 if (imv->supported_types == NULL)
234 os_memcpy(imv->supported_types, supportedTypes,
541 os_free(imv->supported_types);
560 if (imv == NULL || imv->supported_types == NULL)
568 svendor = imv->supported_types[i] >> 8;
569 ssubtype = imv->supported_types[i] & 0xff;

Completed in 677 milliseconds