/external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/ |
D | bookmark_manager_private_api.cc | 55 namespace GetMetaInfo = api::bookmark_manager_private::GetMetaInfo; 666 scoped_ptr<GetMetaInfo::Params> params(GetMetaInfo::Params::Create(*args_)); in RunOnReady() 676 if (node->GetMetaInfo(*params->key, &value)) { in RunOnReady() 677 GetMetaInfo::Results::Value result; in RunOnReady() 679 results_ = GetMetaInfo::Results::Create(result); in RunOnReady() 682 GetMetaInfo::Results::Value result; in RunOnReady() 683 result.as_object.reset(new GetMetaInfo::Results::Value::Object); in RunOnReady() 693 results_ = GetMetaInfo::Results::Create(result); in RunOnReady() 704 GetMetaInfo::Results::Value result; in RunOnReady() 705 result.as_object.reset(new GetMetaInfo::Results::Value::Object); in RunOnReady() [all …]
|
/external/chromium_org/components/bookmarks/browser/ |
D | bookmark_codec_unittest.cc | 410 EXPECT_TRUE(model->root_node()->GetMetaInfo("model_info", &meta_value)); in TEST_F() 412 EXPECT_FALSE(model->root_node()->GetMetaInfo("other_key", &meta_value)); in TEST_F() 416 EXPECT_TRUE(child->GetMetaInfo("node_info", &meta_value)); in TEST_F() 418 EXPECT_FALSE(child->GetMetaInfo("other_key", &meta_value)); in TEST_F() 467 model->root_node()->GetMetaInfo(kSyncTransactionVersionKey, &meta_value)); in TEST_F() 469 bbn->GetChild(1)->GetMetaInfo(kSyncTransactionVersionKey, &meta_value)); in TEST_F() 470 EXPECT_TRUE(bbn->GetChild(0)->GetMetaInfo(kNormalKey, &meta_value)); in TEST_F() 472 EXPECT_TRUE(bbn->GetChild(1)->GetMetaInfo(kNormalKey, &meta_value)); in TEST_F() 474 EXPECT_TRUE(bbn->GetChild(0)->GetMetaInfo(kNestedKey, &meta_value)); in TEST_F()
|
D | bookmark_model_unittest.cc | 1179 EXPECT_TRUE(node.GetMetaInfo("key1", &out_value)); in TEST() 1183 EXPECT_FALSE(node.GetMetaInfo("key2.subkey1", &out_value)); in TEST() 1185 EXPECT_TRUE(node.GetMetaInfo("key2.subkey1", &out_value)); in TEST() 1188 EXPECT_FALSE(node.GetMetaInfo("key2.subkey2.leaf", &out_value)); in TEST() 1190 EXPECT_TRUE(node.GetMetaInfo("key2.subkey2.leaf", &out_value)); in TEST() 1197 EXPECT_FALSE(node.GetMetaInfo("key1", &out_value)); in TEST() 1198 EXPECT_FALSE(node.GetMetaInfo("key2.subkey1", &out_value)); in TEST() 1199 EXPECT_FALSE(node.GetMetaInfo("key2.subkey2", &out_value)); in TEST() 1200 EXPECT_FALSE(node.GetMetaInfo("key2.subkey2.leaf", &out_value)); in TEST()
|
D | bookmark_utils_unittest.cc | 348 EXPECT_TRUE(pasted->GetMetaInfo("somekey", &value)); in TEST_F() 350 EXPECT_TRUE(pasted->GetMetaInfo("someotherkey", &value)); in TEST_F() 483 EXPECT_TRUE(clone->GetMetaInfo("somekey", &value)); in TEST_F() 485 EXPECT_TRUE(clone->GetMetaInfo("someotherkey", &value)); in TEST_F()
|
D | bookmark_node.cc | 55 bool BookmarkNode::GetMetaInfo(const std::string& key, in GetMetaInfo() function in BookmarkNode
|
D | bookmark_node.h | 100 bool GetMetaInfo(const std::string& key, std::string* value) const;
|
D | bookmark_model.cc | 390 if (node->GetMetaInfo(key, &old_value) && old_value == value) in SetNodeMetaInfo()
|
/external/chromium_org/chrome/browser/extensions/api/bookmarks/ |
D | bookmark_api_helpers.cc | 137 void GetMetaInfo(const BookmarkNode& node, in GetMetaInfo() function 154 GetMetaInfo(*(node.GetChild(i)), id_to_meta_info_map); in GetMetaInfo()
|
D | bookmark_api_helpers.h | 48 void GetMetaInfo(const BookmarkNode& node,
|
D | bookmark_api_helpers_unittest.cc | 176 TEST_F(ExtensionBookmarksTest, GetMetaInfo) { in TEST_F() argument 178 GetMetaInfo(*model_->other_node(), &id_to_meta_info_map); in TEST_F()
|
/external/chromium_org/components/enhanced_bookmarks/ |
D | enhanced_bookmark_model.cc | 37 if (!node->GetMetaInfo(field, &value)) in DataForMetaInfoField() 148 if (!node->GetMetaInfo(kIdKey, &id)) in GetRemoteId() 169 if (node->GetMetaInfo(kNoteKey, &description) && !description.empty()) in GetDescription()
|
D | enhanced_bookmark_model_unittest.cc | 99 if (!node->GetMetaInfo(name, &value)) in GetMetaInfoField()
|