Searched refs:GetMetaInfo (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/chrome/browser/extensions/api/bookmarks/
H A Dbookmark_api_helpers.h48 void GetMetaInfo(const BookmarkNode& node,
H A Dbookmark_api_helpers.cc137 void GetMetaInfo(const BookmarkNode& node, function in namespace:extensions::bookmark_api_helpers
154 GetMetaInfo(*(node.GetChild(i)), id_to_meta_info_map);
H A Dbookmark_api_helpers_unittest.cc176 TEST_F(ExtensionBookmarksTest, GetMetaInfo) {
178 GetMetaInfo(*model_->other_node(), &id_to_meta_info_map);
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_codec_unittest.cc410 EXPECT_TRUE(model->root_node()->GetMetaInfo("model_info", &meta_value));
412 EXPECT_FALSE(model->root_node()->GetMetaInfo("other_key", &meta_value));
416 EXPECT_TRUE(child->GetMetaInfo("node_info", &meta_value));
418 EXPECT_FALSE(child->GetMetaInfo("other_key", &meta_value));
467 model->root_node()->GetMetaInfo(kSyncTransactionVersionKey, &meta_value));
469 bbn->GetChild(1)->GetMetaInfo(kSyncTransactionVersionKey, &meta_value));
470 EXPECT_TRUE(bbn->GetChild(0)->GetMetaInfo(kNormalKey, &meta_value));
472 EXPECT_TRUE(bbn->GetChild(1)->GetMetaInfo(kNormalKey, &meta_value));
474 EXPECT_TRUE(bbn->GetChild(0)->GetMetaInfo(kNestedKey, &meta_value));
H A Dbookmark_node.cc55 bool BookmarkNode::GetMetaInfo(const std::string& key, function in class:BookmarkNode
H A Dbookmark_model_unittest.cc1179 EXPECT_TRUE(node.GetMetaInfo("key1", &out_value));
1183 EXPECT_FALSE(node.GetMetaInfo("key2.subkey1", &out_value));
1185 EXPECT_TRUE(node.GetMetaInfo("key2.subkey1", &out_value));
1188 EXPECT_FALSE(node.GetMetaInfo("key2.subkey2.leaf", &out_value));
1190 EXPECT_TRUE(node.GetMetaInfo("key2.subkey2.leaf", &out_value));
1197 EXPECT_FALSE(node.GetMetaInfo("key1", &out_value));
1198 EXPECT_FALSE(node.GetMetaInfo("key2.subkey1", &out_value));
1199 EXPECT_FALSE(node.GetMetaInfo("key2.subkey2", &out_value));
1200 EXPECT_FALSE(node.GetMetaInfo("key2.subkey2.leaf", &out_value));
H A Dbookmark_node.h100 bool GetMetaInfo(const std::string& key, std::string* value) const;
H A Dbookmark_utils_unittest.cc348 EXPECT_TRUE(pasted->GetMetaInfo("somekey", &value));
350 EXPECT_TRUE(pasted->GetMetaInfo("someotherkey", &value));
483 EXPECT_TRUE(clone->GetMetaInfo("somekey", &value));
485 EXPECT_TRUE(clone->GetMetaInfo("someotherkey", &value));
H A Dbookmark_model.cc390 if (node->GetMetaInfo(key, &old_value) && old_value == value)
/external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/
H A Dbookmark_manager_private_api.cc55 namespace GetMetaInfo = api::bookmark_manager_private::GetMetaInfo;
666 scoped_ptr<GetMetaInfo::Params> params(GetMetaInfo::Params::Create(*args_));
676 if (node->GetMetaInfo(*params->key, &value)) {
677 GetMetaInfo::Results::Value result;
679 results_ = GetMetaInfo::Results::Create(result);
682 GetMetaInfo::Results::Value result;
683 result.as_object.reset(new GetMetaInfo::Results::Value::Object);
693 results_ = GetMetaInfo
[all...]
/external/chromium_org/components/enhanced_bookmarks/
H A Denhanced_bookmark_model.cc37 if (!node->GetMetaInfo(field, &value))
148 if (!node->GetMetaInfo(kIdKey, &id))
169 if (node->GetMetaInfo(kNoteKey, &description) && !description.empty())
H A Denhanced_bookmark_model_unittest.cc99 if (!node->GetMetaInfo(name, &value))

Completed in 159 milliseconds