Home | History | Annotate | Download | only in calllog

Lines Matching defs:groups

40     /** Records the created groups. */
63 assertEquals(0, mFakeGroupCreator.groups.size());
69 assertEquals(0, mFakeGroupCreator.groups.size());
76 assertEquals(0, mFakeGroupCreator.groups.size());
84 assertEquals(1, mFakeGroupCreator.groups.size());
85 assertGroupIs(0, 3, false, mFakeGroupCreator.groups.get(0));
93 assertEquals(1, mFakeGroupCreator.groups.size());
94 assertGroupIs(0, 3, false, mFakeGroupCreator.groups.get(0));
107 // Groups with one or more missed calls.
117 // Groups with one or more incoming or outgoing.
128 // Groups with one or more incoming or outgoing.
152 assertEquals(2, mFakeGroupCreator.groups.size());
153 assertGroupIs(1, 4, false, mFakeGroupCreator.groups.get(0));
154 assertGroupIs(8, 3, false, mFakeGroupCreator.groups.get(1));
221 mFakeGroupCreator.groups.clear();
230 assertEquals(1, mFakeGroupCreator.groups.size());
231 assertGroupIs(0, types.length, false, mFakeGroupCreator.groups.get(0));
241 assertEquals(0, mFakeGroupCreator.groups.size());
291 /** Fake implementation of a GroupCreator which stores the created groups in a member field. */
293 /** The list of created groups. */
294 public final List<GroupSpec> groups = newArrayList();
298 groups.add(new GroupSpec(cursorPosition, size, expanded));