HomeSort by relevance Sort by last modified time
    Searched full:guid (Results 151 - 175 of 804) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/lzma/CPP/7zip/Compress/
CodecExports.cpp 28 static inline HRESULT SetPropGUID(const GUID &guid, PROPVARIANT *value)
30 return SetPropString((const char *)&guid, sizeof(GUID), value);
35 GUID clsId = CLSID_CCodec;
43 static HRESULT FindCodecClassId(const GUID *clsID, UInt32 isCoder2, bool isFilter, bool &encode, int &index)
68 STDAPI CreateCoder2(bool encode, UInt32 index, const GUID *iid, void **outObject)
101 STDAPI CreateCoder(const GUID *clsid, const GUID *iid, void **outObject)
  /external/chromium_org/components/autofill/core/browser/
personal_data_manager.cc 36 explicit FormGroupMatchesByGUIDFunctor(const std::string& guid)
37 : guid_(guid) {
41 return form_group.guid() == guid_;
45 return form_group->guid() == guid_;
54 const std::string& guid) {
57 FormGroupMatchesByGUIDFunctor<T>(guid));
61 bool FindByGUID(const C& container, const std::string& guid) {
62 return FindElementByGUID<T>(container, guid) != container.end();
377 if (FindByGUID<AutofillProfile>(web_profiles_, profile.guid()))
398 AutofillProfile* existing_profile = GetProfileByGUID(profile.guid());
717 std::string guid = new_profile.guid(); local
950 std::string guid = local
967 std::string guid = imported_card.guid(); local
    [all...]
test_personal_data_manager.cc 42 return imported_profile.guid();
48 return imported_credit_card.guid();
  /external/chromium_org/chrome/browser/sync/test/integration/
autofill_helper.cc 270 void RemoveProfile(int profile, const std::string& guid) {
274 if (all_profiles[i]->guid() != guid)
281 const std::string& guid,
288 if (all_profiles[i]->guid() == guid)
321 autofill_profiles_a_map[p->guid()] = *p;
328 if (!autofill_profiles_a_map.count(p->guid())) {
329 LOG(ERROR) << "GUID " << p->guid() << " not found in profile
    [all...]
  /external/chromium_org/chromeos/network/onc/
onc_certificate_importer_impl_unittest.cc 106 std::string* guid) {
108 if (!guid)
109 guid = &guid_temporary;
117 certificate->GetStringWithoutPathExpansion(::onc::certificate::kGUID, guid);
121 EXPECT_TRUE(imported_server_and_ca_certs_[*guid]->Equals(
125 CertificateImporterImpl::ListCertsWithNickname(*guid, &result_list_);
180 std::string guid; local
181 AddCertificateFromFile("certificate-client.onc", net::USER_CERT, &guid);
192 EXPECT_STREQ(guid.c_str(), name);
289 // Now we import the same certificate with a different GUID. In case of
    [all...]
  /external/chromium_org/components/wifi/
fake_wifi_service.cc 23 network_properties.guid = "stub_ethernet";
35 network_properties.guid = "stub_wifi1";
47 network_properties.guid = "stub_vpn1";
56 network_properties.guid = "stub_wifi2";
71 network_properties.guid = "stub_cellular1";
110 " \"GUID\": \"stub_wifi2\","
173 " \"GUID\": \"stub_wifi2\","
203 network_properties.guid = network_properties.ssid;
205 *network_guid = network_properties.guid;
270 if (it->guid == network_guid
    [all...]
  /external/chromium/base/win/
event_trace_provider.h 21 typedef GUID EtwEventClass;
46 header.Guid = event_class;
56 header.Guid = event_class;
78 // registers with ETW by its name which is a GUID. ETW calls back to
89 explicit EtwTraceProvider(const GUID& provider_name);
106 void set_provider_name(const GUID& provider_name) {
109 const GUID& provider_name() const { return provider_name_; }
160 GUID provider_name_;
  /external/chromium_org/base/win/
event_trace_provider.h 20 typedef GUID EtwEventClass;
50 header.Guid = event_class;
60 header.Guid = event_class;
82 // registers with ETW by its name which is a GUID. ETW calls back to
93 explicit EtwTraceProvider(const GUID& provider_name);
110 void set_provider_name(const GUID& provider_name) {
113 const GUID& provider_name() const { return provider_name_; }
164 GUID provider_name_;
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
PersonalDataManagerTest.java 37 "" /* guid */, "https://www.example.com" /* origin */,
44 "" /* guid */, "http://www.example.com" /* origin */,
67 "" /* guid */, "Chrome settings" /* origin */,
81 "" /* guid */, "https://www.example.com" /* origin */,
87 "" /* guid */, "http://www.example.com" /* origin */,
112 "" /* guid */, "Chrome settings" /* origin */,
127 "" /* guid */, "https://www.example.com" /* origin */,
133 "" /* guid */, "https://www.example.com" /* origin */,
  /external/chromium_org/chrome/browser/resources/net_internals/
quic_view.html 20 <th>GUID</th>
33 <td jscontent="guid"></td>
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_change.cc 24 DCHECK(type == ADD ? (profile && profile->guid() == key) : true);
25 DCHECK(type == UPDATE ? (profile && profile->guid() == key) : true);
autofill_webdata_backend_impl.cc 173 // Send GUID-based notification.
175 AutofillProfileChange::ADD, profile.guid(), &profile);
190 if (!AutofillTable::FromWebDatabase(db)->GetAutofillProfile(profile.guid(),
201 // Send GUID-based notification.
203 AutofillProfileChange::UPDATE, profile.guid(), &profile);
212 const std::string& guid, WebDatabase* db) {
215 if (!AutofillTable::FromWebDatabase(db)->GetAutofillProfile(guid, &profile)) {
221 if (!AutofillTable::FromWebDatabase(db)->RemoveAutofillProfile(guid)) {
226 // Send GUID-based notification.
227 AutofillProfileChange change(AutofillProfileChange::REMOVE, guid, NULL)
    [all...]
autofill_table_unittest.cc 9 #include "base/guid.h"
542 ASSERT_TRUE(table_->GetAutofillProfile(home_profile.guid(), &db_profile));
546 "FROM autofill_profiles WHERE guid=?"));
547 s_home.BindString(0, home_profile.guid());
568 ASSERT_TRUE(table_->GetAutofillProfile(billing_profile.guid(), &db_profile));
571 "SELECT date_modified FROM autofill_profiles WHERE guid=?"));
572 s_billing.BindString(0, billing_profile.guid());
585 ASSERT_TRUE(table_->GetAutofillProfile(billing_profile.guid(), &db_profile));
588 "SELECT date_modified FROM autofill_profiles WHERE guid=?"));
589 s_billing_updated.BindString(0, billing_profile.guid());
    [all...]
  /external/chromium_org/media/video/capture/win/
sink_filter_win.cc 10 // Define GUID for I420. This is the color format we would like to support but
14 GUID kMediaSubTypeI420 = {
sink_filter_win.h 19 // Define GUID for I420. This is the color format we would like to support but
23 extern GUID kMediaSubTypeI420;
  /external/chromium-trace/trace-viewer/src/tracing/trace_model/
counter_series.js 7 base.require('base.guid');
15 this.guid_ = base.GUID.allocate();
39 obj[key] = this[key].guid;
49 this.guid_ = base.GUID.allocate();
69 obj[key] = this[key].guid;
  /external/chromium_org/components/test/data/web_database/
version_33.sql 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
19 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
21 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
23 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
25 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
version_40.sql 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
18 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
19 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
20 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
21 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
version_41.sql 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
18 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
19 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
20 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
21 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
version_42.sql 18 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
19 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
20 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
21 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
22 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
version_43.sql 19 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
20 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
21 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
22 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
23 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
  /external/chromium_org/chrome/browser/webdata/
autofill_profile_syncable_service.cc 7 #include "base/guid.h"
120 << p->guid();
152 bundle.profiles_to_delete.push_back(profile_to_merge->second->guid());
156 << "Found similar profile in sync db but with a different guid: "
159 << "New guid " << it->second->guid()
161 << profile_to_merge->second->guid();
249 std::string guid = i->sync_data().GetSpecifics(). local
250 autofill_profile().guid();
251 bundle.profiles_to_delete.push_back(guid);
    [all...]
  /external/chromium_org/chrome/browser/autofill/android/
personal_data_manager_android.cc 43 ConvertUTF8ToJavaString(env, profile.guid()).obj(),
127 ConvertUTF8ToJavaString(env, card.guid()).obj(),
206 std::string guid = ConvertJavaStringToUTF8( local
213 if (guid.empty()) {
216 profile.set_guid(guid);
220 return ConvertUTF8ToJavaString(env, profile.guid());
255 std::string guid = ConvertJavaStringToUTF8( local
262 if (guid.empty()) {
265 card.set_guid(guid);
268 return ConvertUTF8ToJavaString(env, card.guid());
    [all...]
  /external/chromium/chrome/browser/autofill/
personal_data_manager.cc 40 explicit FormGroupMatchesByGUIDFunctor(const std::string& guid)
41 : guid_(guid) {
45 return form_group.guid() == guid_;
49 return form_group->guid() == guid_;
57 bool FindByGUID(const C& container, const std::string& guid) {
61 FormGroupMatchesByGUIDFunctor<T>(guid)) != container.end();
378 if (!FindByGUID<AutofillProfile>(*profiles, (*iter)->guid()))
379 wds->RemoveAutofillProfile((*iter)->guid());
385 if (FindByGUID<AutofillProfile>(web_profiles_, iter->guid()))
392 if (!FindByGUID<AutofillProfile>(web_profiles_, iter->guid()) &
    [all...]
  /external/libvpx/libvpx/
examples.mk 35 vpxdec.GUID = BA5FE66F-38DD-E034-F542-B1578C5FB950
49 vpxenc.GUID = 548DEC74-7A15-4B2B-AFC3-AA102E7C25C1
52 vp8_scalable_patterns.GUID = 0D6A210B-F482-4D6F-8570-4A9C01ACC88C
56 vp9_spatial_scalable_encoder.GUID = 4A38598D-627D-4505-9C7B-D4020C84100D
70 #example_xma.GUID = A955FC4A-73F1-44F7-135E-30D84D32F022
74 simple_decoder.GUID = D3BBF1E9-2427-450D-BBFF-B2843C1D44CC
77 postproc.GUID = 65E33355-F35E-4088-884D-3FD4905881D7
81 decode_to_md5.GUID = 59120B9B-2735-4BFE-B022-146CA340FE42
85 simple_encoder.GUID = 4607D299-8A71-4D2C-9B1D-071899B6FBFD
88 twopass_encoder.GUID = 73494FA6-4AF9-4763-8FBB-265C92402FD
    [all...]

Completed in 1488 milliseconds

1 2 3 4 5 67 8 91011>>