/external/chromium_org/chrome_frame/ |
find_dialog.cc | 9 #include "base/guid.h" 29 std::string guid(base::GenerateGUID()); 30 automation_client_->FindInPage(ASCIIToWide(guid), FWD, CASE_SENSITIVE, false);
|
/external/chromium_org/components/autofill/core/browser/android/ |
auxiliary_profiles_android.cc | 10 #include "base/guid.h" 29 // Randomly generated guid. The Autofillprofile class requires a consistent 30 // unique guid or else things break.
|
/external/chromium_org/media/video/capture/win/ |
sink_input_pin_win.cc | 87 GUID type = media_type->majortype; 91 GUID format_type = media_type->formattype; 96 GUID sub_type = media_type->subtype;
|
/external/chromium_org/net/tools/quic/test_tools/ |
quic_test_client.h | 90 // If the given GUID is nonzero, configures client_ to use a specific GUID 92 void UseGuid(QuicGuid guid);
|
quic_test_utils.cc | 40 MockConnection::MockConnection(QuicGuid guid, 42 : QuicConnection(guid,
|
/external/markdown/markdown/extensions/ |
rss.py | 88 guid = ''.join([x for x in heading if x.isalnum()]) 89 guidElem = etree.SubElement(item, "guid") 90 guidElem.text = guid
|
/external/chromium/chrome/browser/autofill/ |
autofill_profile.h | 37 explicit AutofillProfile(const std::string& guid); 67 // This guid is the primary identifier for |AutofillProfile| objects. 68 const std::string guid() const { return guid_; } function in class:AutofillProfile 69 void set_guid(const std::string& guid) { guid_ = guid; } 164 // The guid of this profile.
|
/external/chromium-trace/trace-viewer/build/ |
parse_deps_test.py | 267 module = parse_deps.Module('guid') 268 module.load_and_parse(os.path.join(srcdir, 'base', 'guid.js')) 279 module = parse_deps.Module('base.guid') 280 module.load_and_parse(os.path.join(srcdir, 'base', 'guid.js')) 297 [os.path.join(srcdir, 'base', 'guid.js')], srcdir) 299 self.assertEquals(['base.guid'], name_sequence)
|
/external/chromium_org/components/test/data/web_database/ |
version_53.sql | 20 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 ''); 22 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 ''); 27 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR); 32 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR); 37 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR); 43 CREATE TABLE autofill_profiles_trash ( guid VARCHAR);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/ |
test_subpicture.c | 33 static void PrintGUID(const char *guid) 38 printf("%C,", guid[i] == 0 ? '0' : guid[i]); 40 printf("%x,", (unsigned char)guid[i]); 41 printf("%x\n", (unsigned int)guid[15]); 109 PrintGUID(subpics[i].guid);
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
MSVSProject.py | 54 def __init__(self, project_path, version, name, guid=None, platforms=None): 61 guid: GUID to use for project, if not None. 67 self.guid = guid 196 'ProjectGUID': self.guid,
|
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
test_subpicture.c | 33 static void PrintGUID(const char *guid) 38 printf("%C,", guid[i] == 0 ? '0' : guid[i]); 40 printf("%x,", (unsigned char)guid[i]); 41 printf("%x\n", (unsigned int)guid[15]); 109 PrintGUID(subpics[i].guid);
|
/external/chromium/base/ |
logging_win.h | 22 extern const GUID kLogEventId; 60 static void Initialize(const GUID& provider_name);
|
/external/chromium/chrome/browser/policy/ |
device_policy_identity_strategy.cc | 16 #include "chrome/common/guid.h" 73 device_id_ = guid::GenerateGUID();
|
/external/chromium/chrome/browser/webdata/ |
autofill_change.h | 52 // which is expected to be the GUID identifying the |profile|. 73 // which is expected to be the GUID identifying the |credit_card|.
|
/external/chromium/chrome/common/ |
child_process_logging.h | 42 // Sets the Client ID that is used as GUID if a Chrome process crashes. 45 // Gets the Client ID to be used as GUID for crash reporting. Returns the client
|
/external/chromium_org/base/ |
logging_win.h | 21 EXTERN_C BASE_EXPORT const GUID kLogEventId; 59 static void Initialize(const GUID& provider_name);
|
/external/chromium_org/chrome/browser/google/ |
google_update_settings_posix.cc | 16 CR_DEFINE_STATIC_LOCAL(std::string, guid, ()); 17 return guid;
|
/external/chromium_org/chrome/installer/util/ |
google_chrome_distribution.h | 97 void set_product_guid(const string16& guid) { product_guid_ = guid; }
|
google_update_constants.h | 12 // The GUID Google Update uses to keep track of Chrome upgrades. 15 // The GUID Google Update uses to keep track of Google Update self-upgrades.
|
helper.cc | 73 // package's app guid rather than the browser's or Chrome Frame's app guid.
|
/external/chromium_org/chromeos/network/ |
network_ui_data.h | 71 void set_policy_guid(const std::string& guid) { 72 policy_guid_ = guid;
|
/external/chromium_org/chromeos/test/data/network/ |
network_configs_with_resolved_certs.json | 88 "GUID": "{a3860e83-f03d-4cb1-bafa-789oij}", 113 "GUID": "{a3860e83-f03d-4cb1-bafa-789oij}",
|
/external/lzma/CPP/7zip/ |
ICoder.h | 132 STDMETHOD(CreateDecoder)(UInt32 index, const GUID *iid, void **coder) PURE;
133 STDMETHOD(CreateEncoder)(UInt32 index, const GUID *iid, void **coder) PURE;
|
/external/chromium_org/components/webdata/common/ |
web_database_migration_unittest.cc | 9 #include "base/guid.h" 68 EXPECT_TRUE(base::IsValidGUID(profile->guid())); 77 EXPECT_TRUE(base::IsValidGUID(profile->guid())); 115 EXPECT_TRUE(base::IsValidGUID(credit_card->guid())); 126 EXPECT_TRUE(base::IsValidGUID(credit_card->guid())); 306 ASSERT_FALSE(connection.DoesColumnExist("credit_cards", "guid")); 323 EXPECT_TRUE(connection.DoesColumnExist("credit_cards", "guid")); 368 EXPECT_TRUE(connection.DoesColumnExist("credit_cards", "guid")); 461 "SELECT guid, name_on_card, expiration_month, expiration_year, " 530 "SELECT guid, name_on_card, expiration_month, expiration_year, [all...] |