OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetMetaInfo
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/chrome/browser/bookmarks/
bookmark_codec_unittest.cc
385
EXPECT_TRUE(model->root_node()->
GetMetaInfo
("model_info", &meta_value));
387
EXPECT_FALSE(model->root_node()->
GetMetaInfo
("other_key", &meta_value));
391
EXPECT_TRUE(child->
GetMetaInfo
("node_info", &meta_value));
393
EXPECT_FALSE(child->
GetMetaInfo
("other_key", &meta_value));
442
EXPECT_FALSE(model.root_node()->
GetMetaInfo
(kSyncTransactionVersionKey,
444
EXPECT_FALSE(bbn->GetChild(1)->
GetMetaInfo
(kSyncTransactionVersionKey,
446
EXPECT_TRUE(bbn->GetChild(0)->
GetMetaInfo
(kNormalKey, &meta_value));
448
EXPECT_TRUE(bbn->GetChild(1)->
GetMetaInfo
(kNormalKey, &meta_value));
450
EXPECT_TRUE(bbn->GetChild(0)->
GetMetaInfo
(kNestedKey, &meta_value));
bookmark_utils_unittest.cc
161
EXPECT_TRUE(clone->
GetMetaInfo
("somekey", &value));
163
EXPECT_TRUE(clone->
GetMetaInfo
("someotherkey", &value));
bookmark_model_unittest.cc
[
all
...]
bookmark_tag_model.cc
45
if (!bookmark->
GetMetaInfo
(TAG_KEY, &encoded)) {
332
if (!bookmark->
GetMetaInfo
(TAG_KEY, &encoded)) {
bookmark_model.h
128
bool
GetMetaInfo
(const std::string& key, std::string* value) const;
bookmark_model.cc
85
bool BookmarkNode::
GetMetaInfo
(const std::string& key,
478
if (node->
GetMetaInfo
(key, &old_value) && old_value == value)
[
all
...]
/external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/
bookmark_manager_private_api.cc
53
namespace
GetMetaInfo
= api::bookmark_manager_private::
GetMetaInfo
;
523
scoped_ptr<
GetMetaInfo
::Params> params(
GetMetaInfo
::Params::Create(*args_));
531
if (node->
GetMetaInfo
(params->key, &value))
532
results_ =
GetMetaInfo
::Results::Create(value);
Completed in 707 milliseconds