OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EntityDelta
(Results
1 - 3
of
3
) sorted by null
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntitySet.java
19
import com.android.loaderapp.model.
EntityDelta
.ValuesDelta;
38
* Container for multiple {@link
EntityDelta
} objects, usually when editing
42
public class EntitySet extends ArrayList<
EntityDelta
> implements Parcelable {
49
* Create an {@link EntitySet} that contains the given {@link
EntityDelta
},
52
public static EntitySet fromSingle(
EntityDelta
delta) {
74
final
EntityDelta
entity =
EntityDelta
.fromBefore(before);
92
for (
EntityDelta
remoteEntity : remote) {
96
final
EntityDelta
localEntity = local.getByRawContactId(rawContactId);
97
final
EntityDelta
merged = EntityDelta.mergeAfter(localEntity, remoteEntity)
[
all
...]
EntityDelta.java
56
public class
EntityDelta
implements Parcelable {
59
private static final String TAG = "
EntityDelta
";
73
public
EntityDelta
() {
76
public
EntityDelta
(ValuesDelta values) {
81
* Build an {@link
EntityDelta
} using the given {@link Entity} as a
84
public static
EntityDelta
fromBefore(Entity before) {
85
final
EntityDelta
entity = new
EntityDelta
();
95
* Merge the "after" values from the given {@link
EntityDelta
} onto the
96
* "before" state represented by this {@link
EntityDelta
}, discarding an
[
all
...]
GoogleSource.java
20
import com.android.loaderapp.model.
EntityDelta
.ValuesDelta;
161
public static final void attemptMyContactsMembership(
EntityDelta
state, Context context) {
179
private static final void attemptMyContactsMembership(
EntityDelta
state,
Completed in 491 milliseconds