Home | History | Annotate | Download | only in model

Lines Matching refs:after

42      * from "before" to "after". Tries its best to keep operations to
46 public static EntityDiff buildDiff(Entity before, Entity after, Uri targetUri,
54 // Before doesn't exist, so insert "after" values
56 builder.withValues(after.getEntityValues());
59 for (NamedContentValues child : after.getSubValues()) {
69 } else if (after == null) {
70 // After doesn't exist, so delete "before" values
83 values = after.getEntityValues();
94 final HashMap<String, NamedContentValues> afterChildren = buildChildrenMap(after);
102 // After child doesn't exist, so delete "before" child
107 // After child still exists, and is different, so update
115 // Remove the now-handled "after" child
119 // Walk through remaining "after" children, which are inserts