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

1 2 3 45 6 7 8 91011>>

  /external/chromium/chrome/browser/webdata/
autofill_change.cc 21 DCHECK(type == ADD ? (profile && profile->guid() == key) : true);
22 DCHECK(type == UPDATE ? (profile && profile->guid() == key) : true);
39 DCHECK(type == ADD ? (credit_card && credit_card->guid() == key) : true);
40 DCHECK(type == UPDATE ? (credit_card && credit_card->guid() == key) : true);
autofill_table_unittest.cc 21 #include "chrome/common/guid.h"
679 home_profile.guid(), &db_profile));
683 "FROM autofill_profiles WHERE guid=?"));
684 s_home.BindString(0, home_profile.guid());
694 billing_profile.set_guid(guid::GenerateGUID());
705 billing_profile.guid(), &db_profile));
708 "SELECT date_modified FROM autofill_profiles WHERE guid=?"));
709 s_billing.BindString(0, billing_profile.guid());
724 billing_profile.guid(), &db_profile));
727 "SELECT date_modified FROM autofill_profiles WHERE guid=?"))
    [all...]
  /external/chromium_org/chromeos/test/data/network/
device_policy.onc 0 { "GUID": "123",
managed_toplevel_l2tpipsec.onc 5 "GUID": "{926b84e4-f2c5-0972-b9bbb8f44c4316f5}",
managed_vpn.onc 0 { "GUID": "123",
managed_vpn_without_recommended.onc 0 { "GUID": "123",
repaired_toplevel_partially_invalid.onc 3 [ { "GUID": "123",
35 "GUID": "test-ca",
40 "GUID": "{f998f760-272b-6939-4c2beffe428697ac}",
45 "GUID": "{456}",
shill_wifi_with_state.json 3 "GUID": "{64c4f86b-cf6a-4e4a-8eff-456def}",
toplevel_wifi_eap_clientcert_with_cert_pems.onc 4 "GUID": "{88dc6576-a740-ded0-3c0f16c4c7f5fb51}",
35 "GUID": "{f998f760-272b-6939-4c2beffe428697ac}",
43 "GUID": "{f5f2c9c9-0079-a712-49da21137af62fdd}",
  /external/chromium/chrome/browser/ui/webui/options/
autofill_options_handler.cc 19 #include "chrome/common/guid.h"
255 entry->Append(new StringValue((*i)->guid()));
267 entry->Append(new StringValue((*i)->guid()));
283 std::string guid; local
284 if (!args->GetString(0, &guid)) {
289 personal_data_->RemoveProfile(guid);
295 std::string guid; local
296 if (!args->GetString(0, &guid)) {
301 personal_data_->RemoveCreditCard(guid);
307 std::string guid; local
348 std::string guid; local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_model_associator_unittest.cc 98 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44B"; local
105 profile_specifics->set_guid(guid);
111 AutofillProfile *profile = new AutofillProfile(guid);
124 EXPECT_CALL(associator_, Associate(Pointee(guid), 1));
150 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44A"; local
152 AutofillProfile *profile = new AutofillProfile(guid);
219 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44C"; local
223 profile_specifics.set_guid(guid);
225 bundle.current_profiles.insert(guid);
237 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44D" local
    [all...]
  /external/chromium_org/base/
guid_unittest.cc 5 #include "base/guid.h"
28 std::string guid = base::GenerateGUID(); local
29 EXPECT_TRUE(base::IsValidGUID(guid));
  /external/chromium_org/components/autofill/core/browser/
autofill_data_model_unittest.cc 17 TestAutofillDataModel(const std::string& guid, const std::string& origin)
18 : AutofillDataModel(guid, origin) {}
36 TestAutofillDataModel model("guid", std::string());
  /external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
ChromeDebug.vsct 32 This section uses a Guid to identify the package that provides the command defined inside it.
38 is a unique pair of guid and numeric identifier; the guid part of the identifier is usually
50 <Group guid="guidChromeDebugCmdSet" id="MyMenuGroup" priority="0x0600">
51 <Parent guid="guidVSDebugGroup" id="IDM_DEBUG_MENU"/>
70 <Button guid="guidChromeDebugCmdSet" id="cmdidAttachToProcess" priority="0x0100"
72 <Parent guid="guidChromeDebugCmdSet" id="MyMenuGroup" />
73 <Icon guid="guidImages" id="bmpPic1" />
86 the declaration starts with a guid for the bitmap strip, then there is the resource id
91 <Bitmap guid="guidImages" href="Resources\Images.png
    [all...]
  /frameworks/wilhelm/tests/examples/
slesTestEffectCapabilities.cpp 47 void guidToString(const SLInterfaceID guid, char *str) {
48 if ((NULL == guid) || (NULL == str)) {
52 guid->time_low,
53 guid->time_mid,
54 guid->time_hi_and_version,
55 guid->clock_seq,
56 guid->node[0],
57 guid->node[1],
58 guid->node[2],
59 guid->node[3]
    [all...]
  /external/chromium_org/chromeos/network/onc/
onc_certificate_importer_impl.h 33 // imports) into the certificate store. The GUID of Client certificates is
35 // certificates are identified by their PEM and not by GUID.
53 // (GUID, Certificate) pairs of all succesfully imported Server and CA
85 const std::string& guid,
90 bool ParseClientCertificate(const std::string& guid,
  /external/chromium_org/components/test/data/web_database/
version_37.sql 15 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);
16 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
17 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
18 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
19 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_38.sql 15 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);
16 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
17 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
18 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
19 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_39.sql 15 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);
16 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
17 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
18 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
19 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_49.sql 9 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);
11 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);
12 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
13 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
14 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
15 CREATE TABLE autofill_profiles_trash ( guid VARCHAR);
version_50.sql 9 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, origin VARCHAR DEFAULT '');
11 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, origin VARCHAR DEFAULT '');
12 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
13 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
14 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
15 CREATE TABLE autofill_profiles_trash ( guid VARCHAR);
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table.h 56 // guid A guid string to uniquely identify the profile.
81 // guid The guid string that identifies the profile to which
91 // guid The guid string that identifies the profile to which
99 // guid The guid string that identifies the profile to which the
105 // profiles. When a profile is removed its guid is added
108 // guid The guid string that identifies the trashed profile
    [all...]
  /external/chromium_org/net/quic/
quic_framer_test.cc 40 // Index into the guid offset in the header.
575 // public flags (8 byte guid)
577 // guid
600 visitor_.header_->public_header.guid);
607 // public flags (8 byte guid)
609 // guid
624 visitor_.header_->public_header.guid);
644 expected_error = "Unable to read GUID.";
661 // public flags (4 byte guid)
663 // guid
    [all...]
  /external/chromium_org/base/debug/
trace_event_win.h 94 // The ETW trace provider GUID.
95 BASE_EXPORT extern const GUID kChromeTraceProviderName;
97 // The ETW event class GUID for 32 bit events.
98 BASE_EXPORT extern const GUID kTraceEventClass32;
100 // The ETW event class GUID for 64 bit events.
101 BASE_EXPORT extern const GUID kTraceEventClass64;
  /external/chromium_org/chrome/browser/sync/test/integration/
autofill_helper.h 75 // Removes the autofill profile with guid |guid| from sync profile
77 void RemoveProfile(int profile, const std::string& guid);
79 // Updates the autofill profile with guid |guid| in sync profile |profile|
82 const std::string& guid,

Completed in 1544 milliseconds

1 2 3 45 6 7 8 91011>>