OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsLegalNewParent
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/sync/syncable/
syncable_util.cc
29
bool
IsLegalNewParent
(BaseTransaction* trans, const Id& entry_id,
syncable_unittest.cc
[
all
...]
/external/chromium/chrome/browser/sync/syncable/
syncable_unittest.cc
899
static inline bool
IsLegalNewParent
(const Entry& a, const Entry& b) {
900
return
IsLegalNewParent
(a.trans(), a.Get(ID), b.Get(ID));
945
ASSERT_TRUE(
IsLegalNewParent
(child, root));
946
ASSERT_TRUE(
IsLegalNewParent
(child, parent));
947
ASSERT_FALSE(
IsLegalNewParent
(child, child));
948
ASSERT_FALSE(
IsLegalNewParent
(child, grandchild));
949
ASSERT_TRUE(
IsLegalNewParent
(child, parent2));
950
ASSERT_TRUE(
IsLegalNewParent
(child, grandchild2));
951
ASSERT_FALSE(
IsLegalNewParent
(parent, grandchild));
952
ASSERT_FALSE(
IsLegalNewParent
(root, grandchild))
[
all
...]
syncable.cc
[
all
...]
Completed in 632 milliseconds