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

1 2

  /external/chromium/chrome/browser/sync/syncable/
syncable_enum_conversions.cc 91 ASSERT_ENUM_BOUNDS(IS_DEL, IS_DEL,
94 ENUM_CASE(IS_DEL);
102 IS_DEL + 1, BIT_FIELDS_END - 1);
syncable_enum_conversions_unittest.cc 56 GetIsDelFieldString, INDEXED_BIT_FIELDS_END, IS_DEL);
61 GetBitFieldString, IS_DEL + 1, BIT_FIELDS_END - 1);
syncable_unittest.cc 176 e.Put(IS_DEL, true);
238 me.Put(IS_DEL, true);
255 EXPECT_TRUE(me.Get(IS_DEL));
410 bool is_del);
702 ASSERT_TRUE(e1.Put(IS_DEL, true));
705 ASSERT_TRUE(e2.Put(IS_DEL, true));
708 ASSERT_TRUE(e3.Put(IS_DEL, true));
710 ASSERT_TRUE(e1.Put(IS_DEL, false));
711 ASSERT_TRUE(e2.Put(IS_DEL, false));
712 ASSERT_TRUE(e3.Put(IS_DEL, false))
    [all...]
  /external/chromium_org/sync/syncable/
syncable_enum_conversions.cc 100 ASSERT_ENUM_BOUNDS(IS_DEL, IS_DEL,
103 ENUM_CASE(IS_DEL);
111 IS_DEL + 1, BIT_FIELDS_END - 1);
syncable_enum_conversions_unittest.cc 62 GetIsDelFieldString, INDEXED_BIT_FIELDS_END, IS_DEL);
67 GetBitFieldString, IS_DEL + 1, BIT_FIELDS_END - 1);
mutable_entry.cc 49 kernel->put(IS_DEL, true);
51 kernel->put(IS_DEL, false);
93 kernel->put(IS_DEL, true);
123 bool MutableEntry::PutIsDel(bool is_del) {
126 if (is_del == kernel_->ref(IS_DEL)) {
129 if (is_del) {
150 kernel_->put(IS_DEL, is_del);
191 if (!Get(IS_DEL)) {
    [all...]
parent_child_index.cc 53 return !entry->ref(IS_DEL) && !entry->ref(ID).IsRoot();
entry_kernel.cc 167 INDEXED_BIT_FIELDS_END, IS_DEL);
170 IS_DEL + 1, BIT_FIELDS_END - 1);
entry_kernel.h 101 IS_DEL = INDEXED_BIT_FIELDS_END,
105 IS_DIR = IS_DEL + 1,
  /external/chromium_org/sync/internal_api/
read_node.cc 46 if (entry_->Get(syncable::IS_DEL))
67 if (entry_->Get(syncable::IS_DEL))
89 if (entry_->Get(syncable::IS_DEL))
write_node.cc 300 if (entry_->Get(syncable::IS_DEL))
321 if (entry_->Get(syncable::IS_DEL))
335 if (entry_->Get(syncable::IS_DEL))
404 if (existing_entry->Get(syncable::IS_DEL)) {
409 // IS_DEL: Must be set to false, will cause reindexing.
410 // This one is weird because IS_DEL is true for "update only"
420 existing_entry->Put(syncable::IS_DEL, false);
497 // These lines must be in this order. The call to Put(IS_DEL) might choose to
501 entry_->Put(syncable::IS_DEL, true);
506 entry_->Put(syncable::IS_DEL, true)
    [all...]
  /external/chromium/chrome/browser/sync/engine/
build_and_process_conflict_sets_command.cc 111 if (!entry.Put(syncable::IS_DEL, backup->ref(syncable::IS_DEL)))
117 if (!backup->ref(syncable::IS_DEL)) {
129 entry.Put(syncable::IS_DEL, backup->ref(syncable::IS_DEL));
240 (entry.Get(syncable::IS_DEL) || entry.Get(syncable::SERVER_IS_DEL))) {
269 if (parent.Get(syncable::IS_DEL))
304 CHECK(!e.Get(syncable::IS_DEL)) << " Inconsistency in local tree. "
308 CHECK(!e.Get(syncable::IS_DEL)) << " Deleted entry has children. "
333 return e.good() && e.Get(syncable::IS_DEL) && e.Get(syncable::IS_UNSYNCED)
    [all...]
get_commit_ids_command.cc 95 if (item->Get(syncable::IS_DEL))
141 if (!entry.Get(syncable::IS_DEL)) {
167 if (entry.Get(syncable::IS_DEL)) {
177 parent.Get(syncable::IS_DEL) &&
228 if (entry.Get(syncable::IS_DEL)) {
syncer_util.cc 36 using syncable::IS_DEL;
162 // The SyncAPI equivalent of this function will return !good if IS_DEL.
163 // The syncable version will return good even if IS_DEL.
164 // TODO(chron): Unit test the case with IS_DEL and make sure.
220 if (local_entry.good() && !local_entry.Get(IS_DEL)) {
269 if (!parent.good() || parent.Get(IS_DEL) || !parent.Get(IS_DIR)) {
273 if (!entry->Get(IS_DEL) && !IsLegalNewParent(trans, id, new_parent)) {
469 if (!local_prev.good() || local_prev.Get(IS_DEL))
489 if (entry->Get(IS_DEL) && entry->Get(SERVER_IS_DEL))
499 entry->Get(IS_DEL) != entry->Get(SERVER_IS_DEL))
    [all...]
conflict_resolver.cc 87 if (entry.Get(syncable::IS_DEL) && entry.Get(syncable::SERVER_IS_DEL)) {
108 bool entry_deleted = entry.Get(syncable::IS_DEL);
218 if (!entry.Get(syncable::IS_UNSYNCED) || entry.Get(syncable::IS_DEL))
268 if (!parent.good() || !parent.Get(syncable::IS_DEL) ||
298 if (parent.Get(syncable::IS_DEL))
302 if (!parent.Get(syncable::IS_DEL) ||
332 entry.Put(syncable::IS_DEL, false);
build_commit_command.cc 22 using syncable::IS_DEL;
133 if (meta_entry.Get(syncable::IS_DEL) &&
171 if (meta_entry.Get(IS_DEL)) {
syncer_unittest.cc 70 using syncable::IS_DEL;
215 EXPECT_FALSE(entry->Get(IS_DEL));
224 EXPECT_FALSE(entry->Get(IS_DEL));
317 entry.Put(syncable::IS_DEL, true);
    [all...]
syncer_proto_util.cc 25 using syncable::IS_DEL;
269 if (local_entry.Get(IS_DEL) && server_entry.deleted())
291 if (local_entry.Get(IS_DEL) != server_entry.deleted()) {
  /external/chromium_org/sync/engine/
syncer_util.cc 47 using syncable::IS_DEL;
107 // The SyncAPI equivalent of this function will return !good if IS_DEL.
108 // The syncable version will return good even if IS_DEL.
109 // TODO(chron): Unit test the case with IS_DEL and make sure.
165 if (local_entry.good() && !local_entry.Get(IS_DEL)) {
233 if (!parent.good() || parent.Get(IS_DEL) || !parent.Get(IS_DIR)) {
238 if (!entry->Get(IS_DEL) && !IsLegalNewParent(trans, id, new_parent)) {
445 // This strange dance around the IS_DEL flag avoids problems when setting
449 entry->Put(IS_DEL, true);
454 CHECK(entry->Put(IS_DEL, false))
    [all...]
get_commit_ids_command.cc 137 if (entry.Get(syncable::IS_DEL) && !entry.Get(syncable::ID).ServerKnows()) {
250 if (item.Get(syncable::IS_DEL))
305 if (!entry.Get(syncable::IS_DEL)) {
344 if (entry.Get(syncable::IS_DEL)) {
354 parent.Get(syncable::IS_DEL) &&
404 if (entry.Get(syncable::IS_DEL)) {
conflict_resolver.cc 55 if (entry.Get(syncable::IS_DEL) && entry.Get(syncable::SERVER_IS_DEL)) {
96 bool entry_deleted = entry.Get(syncable::IS_DEL);
build_commit_command.cc 34 using syncable::IS_DEL;
163 if (meta_entry.Get(syncable::IS_DEL) &&
200 if (meta_entry.Get(IS_DEL)) {
syncer_unittest.cc 88 using syncable::IS_DEL;
253 EXPECT_FALSE(entry->Get(IS_DEL));
262 EXPECT_FALSE(entry->Get(IS_DEL));
370 entry.Put(syncable::IS_DEL, true);
    [all...]
  /external/chromium/chrome/browser/sync/
abstract_profile_sync_service_test.cc 27 using syncable::IS_DEL;
89 node.Put(IS_DEL, false);
  /external/chromium_org/sync/test/engine/
test_syncable_utils.cc 85 node.Put(syncable::IS_DEL, false);

Completed in 223 milliseconds

1 2