HomeSort by relevance Sort by last modified time
    Searched defs:other_node (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/components/bookmarks/browser/
bookmark_model.h 93 const BookmarkNode* other_node() const { return other_node_; } function in class:BookmarkModel
bookmark_model.cc 718 case BookmarkNode::OTHER_NODE:
905 type == BookmarkNode::OTHER_NODE ||
917 case BookmarkNode::OTHER_NODE:
1002 BookmarkPermanentNode* other_node = local
1003 CreatePermanentNode(BookmarkNode::OTHER_NODE);
1008 other_node,
bookmark_model_unittest.cc 316 const BookmarkNode* other_node = model_->other_node(); local
317 ASSERT_TRUE(other_node != NULL);
318 EXPECT_EQ(0, other_node->child_count());
319 EXPECT_EQ(BookmarkNode::OTHER_NODE, other_node->type());
326 EXPECT_TRUE(bb_node->id() != other_node->id());
328 EXPECT_TRUE(other_node->id() != mobile_node->id());
347 new_node->id() != model_->other_node()->id() &&
368 new_node->id() != model_->other_node()->id() &
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
bookmark_provider_unittest.cc 95 const BookmarkNode* other_node = model_->other_node(); local
99 model_->AddURL(other_node, other_node->child_count(),
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_editor_view_unittest.cc 143 model_->AddURL(model_->other_node(), 0, ASCIIToUTF16("oa"),
146 model_->AddFolder(model_->other_node(), 1, ASCIIToUTF16("OF1"));
178 BookmarkEditorView::EditorNode* other_node = editor_root->GetChild(1); local
180 ASSERT_EQ(1, other_node->child_count());
181 ASSERT_EQ(ASCIIToUTF16("OF1"), other_node->GetChild(0)->GetTitle());
228 const BookmarkNode* other_node = local
229 BookmarkModelFactory::GetForProfile(profile_.get())->other_node();
230 ASSERT_EQ(ASCIIToUTF16("a"), other_node->GetChild(2)->GetTitle());
231 ASSERT_TRUE(GURL(base_path() + "a") == other_node->GetChild(2)->url());
246 const BookmarkNode* other_node local
322 const BookmarkNode* other_node = local
343 const BookmarkNode* other_node = local
    [all...]
  /external/chromium_org/chrome/browser/android/bookmarks/
bookmarks_bridge.cc 213 env, j_result_obj, bookmark_model_->other_node()->id(),
214 GetBookmarkType(bookmark_model_->other_node()));
250 const BookmarkNode* other_node = bookmark_model_->other_node(); local
251 for (int i = 0; i < other_node->child_count(); ++i) {
252 const BookmarkNode* node = other_node->GetChild(i);
287 const BookmarkNode* other_node = bookmark_model_->other_node(); local
288 for (int i = 0; i < other_node->child_count(); ++i) {
289 const BookmarkNode* node = other_node->GetChild(i)
381 const BookmarkNode* other_node = bookmark_model_->other_node(); local
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 702 EXPECT_EQ(root->GetIndexOf(model_->other_node()), 2);
705 EXPECT_EQ(root->GetIndexOf(model_->other_node()), 1);
738 model_associator_->GetSyncIdFromChromeId(model_->other_node()->id());
812 model_->AddFolder(model_->other_node(), 0, base::ASCIIToUTF16("foobar"));
1739 const BookmarkNode* other_node = model_->other_node(); local
    [all...]

Completed in 1566 milliseconds