Lines Matching full:entrya
561 Entry entryA(&rtrans, syncable::GET_BY_ID, ids_.FromNumber(1));
562 ASSERT_TRUE(entryA.good());
563 EXPECT_TRUE(entryA.GetIsUnsynced());
572 Entry entryA(&rtrans, syncable::GET_BY_ID, ids_.FromNumber(1));
573 ASSERT_TRUE(entryA.good());
574 EXPECT_FALSE(entryA.GetIsUnsynced());
582 Entry entryA(rtrans, syncable::GET_BY_ID, id_fac.FromNumber(id)); \
583 ASSERT_TRUE(entryA.good()); \
586 EXPECT_TRUE(is_unsynced == entryA.GetIsUnsynced()); \
587 EXPECT_TRUE(is_unapplied == entryA.GetIsUnappliedUpdate()); \
590 entryA.GetBaseServerSpecifics()))); \
592 entryA.GetParentId()== id_fac.FromNumber(parent_id)); \
593 EXPECT_EQ(version, entryA.GetBaseVersion()); \
594 EXPECT_EQ(server_version, entryA.GetServerVersion()); \