Home | History | Annotate | Download | only in webdata

Lines Matching defs:country_code

1264                                             "country_code"));
1292 "country_code"));
1296 "SELECT country_code FROM autofill_profiles"));
1299 std::string country_code = s.ColumnString(0);
1300 EXPECT_EQ("US", country_code);
1316 "country_code"));
1318 // Check that the country_code value is the one we expect.
1320 connection.GetUniqueStatement("SELECT country_code "
1324 std::string country_code = s.ColumnString(0);
1325 EXPECT_EQ("UK", country_code);
1348 "country_code"));
1350 // Check that the country_code code is properly converted.
1352 "SELECT country_code FROM autofill_profiles"));
1355 std::string country_code = s.ColumnString(0);
1356 EXPECT_EQ("GB", country_code);