Searched defs:expanded (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DCallLogGroupBuilder.java33 public void addGroup(int cursorPosition, int size, boolean expanded); argument
H A DCallLogAdapter.java440 boolean expanded) {
721 public void addGroup(int cursorPosition, int size, boolean expanded) { argument
722 super.addGroup(cursorPosition, size, expanded);
439 bindGroupView(View view, Context context, Cursor cursor, int groupSize, boolean expanded) argument
/packages/apps/Contacts/tests/src/com/android/contacts/calllog/
H A DCallLogGroupBuilderTest.java313 private void assertGroupIs(int cursorPosition, int size, boolean expanded, GroupSpec group) { argument
316 assertEquals(expanded, group.expanded);
325 /** Whether the group should be initially expanded. */
326 public final boolean expanded; field in class:CallLogGroupBuilderTest.GroupSpec
328 public GroupSpec(int cursorPosition, int size, boolean expanded) { argument
331 this.expanded = expanded;
341 public void addGroup(int cursorPosition, int size, boolean expanded) { argument
342 groups.add(new GroupSpec(cursorPosition, size, expanded));
[all...]

Completed in 4257 milliseconds