Home | History | Annotate | Download | only in calllog

Lines Matching defs:expanded

269     private void assertGroupIs(int cursorPosition, int size, boolean expanded, GroupSpec group) {
272 assertEquals(expanded, group.expanded);
281 /** Whether the group should be initially expanded. */
282 public final boolean expanded;
284 public GroupSpec(int cursorPosition, int size, boolean expanded) {
287 this.expanded = expanded;
297 public void addGroup(int cursorPosition, int size, boolean expanded) {
298 groups.add(new GroupSpec(cursorPosition, size, expanded));