Home | History | Annotate | Download | only in webdata

Lines Matching defs:table_

25     table_.reset(new TokenServiceTable);
27 db_->AddTable(table_.get());
33 scoped_ptr<TokenServiceTable> table_;
57 EXPECT_TRUE(table_->GetAllTokens(&out_map));
61 EXPECT_TRUE(table_->SetTokenForService(service, "pepperoni"));
62 EXPECT_TRUE(table_->SetTokenForService(service2, "steak"));
63 EXPECT_TRUE(table_->GetAllTokens(&out_map));
69 EXPECT_TRUE(table_->RemoveAllTokens());
70 EXPECT_TRUE(table_->GetAllTokens(&out_map));
74 EXPECT_TRUE(table_->SetTokenForService(service, "cheese"));
75 EXPECT_TRUE(table_->GetAllTokens(&out_map));
84 EXPECT_TRUE(table_->GetAllTokens(&out_map));
87 EXPECT_TRUE(table_->SetTokenForService(service, "pepperoni"));
88 EXPECT_TRUE(table_->GetAllTokens(&out_map));
93 EXPECT_TRUE(table_->SetTokenForService(service, std::string()));
94 EXPECT_TRUE(table_->GetAllTokens(&out_map));
99 EXPECT_TRUE(table_->SetTokenForService(service, "ham"));
100 EXPECT_TRUE(table_->GetAllTokens(&out_map));
111 EXPECT_TRUE(table_->SetTokenForService(service, "pepperoni"));
112 EXPECT_TRUE(table_->SetTokenForService(service2, "steak"));
113 EXPECT_TRUE(table_->RemoveTokenForService(service));
114 EXPECT_TRUE(table_->GetAllTokens(&out_map));