Searched defs:guid2 (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/base/
H A Dguid_unittest.cc54 std::string guid2 = base::GenerateGUID(); local
56 EXPECT_EQ(36U, guid2.length());
57 EXPECT_NE(guid1, guid2);
60 EXPECT_TRUE(IsGUIDv4(guid2));
/external/chromium_org/components/webdata/common/
H A Dweb_database_migration_unittest.cc886 std::string guid2 = s.ColumnString(0); local
887 EXPECT_TRUE(base::IsValidGUID(guid2));
889 EXPECT_NE(guid1, guid2);
/external/chromium_org/sync/syncable/
H A Ddirectory_backing_store_unittest.cc3950 const std::string& guid2 = TestDirectoryBackingStore::GenerateCacheGUID(); local
3952 EXPECT_EQ(24U, guid2.size());
3955 EXPECT_NE(guid1, guid2);
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dwindows_usb.c123 static inline BOOLEAN guid_eq(const GUID *guid1, const GUID *guid2) { argument
124 if ((guid1 != NULL) && (guid2 != NULL)) {
125 return (memcmp(guid1, guid2, sizeof(GUID)) == 0);

Completed in 643 milliseconds