HomeSort by relevance Sort by last modified time
    Searched refs:has_nodes (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium/chrome/browser/sync/glue/
model_associator_mock.h 21 MOCK_METHOD1(SyncModelHasUserCreatedNodes, bool(bool* has_nodes));
theme_model_associator.h 32 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes);
extension_model_associator.h 38 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes);
model_associator.h 35 // The has_nodes out parameter is set to true if the sync model has
38 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes) = 0;
theme_model_associator.cc 81 bool ThemeModelAssociator::SyncModelHasUserCreatedNodes(bool* has_nodes) {
82 DCHECK(has_nodes);
83 *has_nodes = false;
92 *has_nodes = root.GetFirstChildId() != sync_api::kInvalidId;
extension_model_associator.cc 55 bool ExtensionModelAssociator::SyncModelHasUserCreatedNodes(bool* has_nodes) {
57 return RootNodeHasChildren(traits_.root_node_tag, user_share_, has_nodes);
bookmark_model_associator.h 59 // The has_nodes out param is true if the sync model has nodes other
61 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes);
preference_model_associator.cc 149 bool PreferenceModelAssociator::SyncModelHasUserCreatedNodes(bool* has_nodes) {
150 DCHECK(has_nodes);
151 *has_nodes = false;
169 *has_nodes = sync_api::kInvalidId != preferences_node.GetFirstChildId();
preference_model_associator.h 65 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes);
bookmark_model_associator.cc 232 bool BookmarkModelAssociator::SyncModelHasUserCreatedNodes(bool* has_nodes) {
233 DCHECK(has_nodes);
234 *has_nodes = false;
258 *has_nodes = bookmark_bar_node.GetFirstChildId() != sync_api::kInvalidId ||
password_model_associator.cc 177 bool PasswordModelAssociator::SyncModelHasUserCreatedNodes(bool* has_nodes) {
178 DCHECK(has_nodes);
179 *has_nodes = false;
197 *has_nodes = sync_api::kInvalidId != password_node.GetFirstChildId();
password_model_associator.h 67 // The has_nodes out param is true if the sync model has nodes other
69 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes);
typed_url_model_associator.h 72 // The has_nodes out param is true if the sync model has nodes other
74 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes);
  /external/chromium_org/chrome/browser/sync/glue/
fake_generic_change_processor.cc 34 bool has_nodes) {
35 sync_model_has_user_created_nodes_ = has_nodes;
62 syncer::ModelType type, bool* has_nodes) {
63 *has_nodes = sync_model_has_user_created_nodes_;
fake_generic_change_processor.h 23 void set_sync_model_has_user_created_nodes(bool has_nodes);
36 bool* has_nodes) OVERRIDE;
model_associator_mock.h 28 MOCK_METHOD1(SyncModelHasUserCreatedNodes, bool(bool* has_nodes));
model_associator.h 39 // The has_nodes out parameter is set to true if the sync model has
42 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes) = 0;
generic_change_processor.h 83 bool* has_nodes);
shared_change_processor.h 90 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes);
shared_change_processor.cc 145 bool SharedChangeProcessor::SyncModelHasUserCreatedNodes(bool* has_nodes) {
154 type_, has_nodes);
bookmark_model_associator.h 69 // The has_nodes out param is true if the sync model has nodes other
71 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes) OVERRIDE;
password_model_associator.cc 209 bool PasswordModelAssociator::SyncModelHasUserCreatedNodes(bool* has_nodes) {
210 DCHECK(has_nodes);
211 *has_nodes = false;
230 *has_nodes = password_node.HasChildren();
password_model_associator.h 69 // The has_nodes out param is true if the sync model has nodes other
71 virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes) OVERRIDE;
  /external/chromium/chrome/browser/sync/
profile_sync_service_session_unittest.cc 177 bool has_nodes; local
178 ASSERT_TRUE(model_associator_->SyncModelHasUserCreatedNodes(&has_nodes));
179 ASSERT_TRUE(has_nodes);
204 bool has_nodes; local
205 ASSERT_TRUE(model_associator_->SyncModelHasUserCreatedNodes(&has_nodes));
206 ASSERT_TRUE(has_nodes);
212 ASSERT_TRUE(model_associator_->SyncModelHasUserCreatedNodes(&has_nodes));
213 ASSERT_TRUE(has_nodes);
256 bool has_nodes; local
257 ASSERT_TRUE(model_associator_->SyncModelHasUserCreatedNodes(&has_nodes));
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_session_unittest.cc 273 bool has_nodes; local
274 ASSERT_TRUE(model_associator_->SyncModelHasUserCreatedNodes(&has_nodes));
275 ASSERT_TRUE(has_nodes);
310 bool has_nodes; local
311 ASSERT_TRUE(model_associator_->SyncModelHasUserCreatedNodes(&has_nodes));
312 ASSERT_TRUE(has_nodes);
318 ASSERT_TRUE(model_associator_->SyncModelHasUserCreatedNodes(&has_nodes));
319 ASSERT_TRUE(has_nodes);
363 bool has_nodes; local
364 ASSERT_TRUE(model_associator_->SyncModelHasUserCreatedNodes(&has_nodes));
724 bool has_nodes; local
931 bool has_nodes; local
    [all...]

Completed in 146 milliseconds

1 2