HomeSort by relevance Sort by last modified time
    Searched defs:guids (Results 1 - 5 of 5) sorted by null

  /external/chromium/chrome/browser/autofill/
personal_data_manager_unittest.cc 287 // Determine uniqueness by inserting all of the GUIDs into a set and verifying
288 // the size of the set matches the number of GUIDs.
289 std::set<std::string> guids; local
290 guids.insert(profile0.guid());
291 guids.insert(profile1.guid());
292 guids.insert(creditcard0.guid());
293 guids.insert(creditcard1.guid());
294 EXPECT_EQ(4U, guids.size());
    [all...]
  /external/chromium/chrome/browser/webdata/
autofill_table_unittest.cc 985 std::vector<std::string> guids; local
1008 std::vector<std::string> guids; local
    [all...]
web_data_service.cc 1115 std::vector<std::string> guids; local
    [all...]
  /external/chromium_org/components/autofill/core/browser/
personal_data_manager_unittest.cc 403 // Determine uniqueness by inserting all of the GUIDs into a set and verifying
404 // the size of the set matches the number of GUIDs.
405 std::set<std::string> guids; local
406 guids.insert(profile0.guid());
407 guids.insert(profile1.guid());
408 guids.insert(credit_card0.guid());
409 guids.insert(credit_card1.guid());
410 EXPECT_EQ(4U, guids.size());
413 // Test for http://crbug.com/50047. Makes sure that guids are populated
444 // Make sure the two profiles have different GUIDs, both valid
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table_unittest.cc 740 std::vector<std::string> guids; local
741 table_->GetAutofillProfilesInTrash(&guids);
742 EXPECT_TRUE(guids.empty());
748 ASSERT_TRUE(table_->GetAutofillProfilesInTrash(&guids));
749 EXPECT_EQ(2UL, guids.size());
750 EXPECT_EQ("00000000-0000-0000-0000-000000000000", guids[0]);
751 EXPECT_EQ("00000000-0000-0000-0000-000000000001", guids[1]);
754 ASSERT_TRUE(table_->GetAutofillProfilesInTrash(&guids));
755 EXPECT_TRUE(guids.empty());
759 std::vector<std::string> guids; local
    [all...]

Completed in 84 milliseconds