HomeSort by relevance Sort by last modified time
    Searched refs:isExpanded (Results 1 - 25 of 38) sorted by null

1 2

  /packages/apps/Calendar/src/com/android/calendar/
SelectCalendarsActivity.java 99 boolean[] isExpanded;
103 isExpanded = new boolean[count];
105 isExpanded[i] = mList.isGroupExpanded(i);
108 isExpanded = null;
110 outState.putBooleanArray(EXPANDED_KEY, isExpanded);
118 boolean[] isExpanded = state.getBooleanArray(EXPANDED_KEY);
119 if(mList != null && isExpanded != null && mList.getCount() >= isExpanded.length) {
120 for(int i = 0; i < isExpanded.length; i++) {
121 if(isExpanded[i] && !mList.isGroupExpanded(i))
    [all...]
SelectCalendarsAdapter.java 359 protected void bindGroupView(View view, Context context, Cursor cursor, boolean isExpanded) {
387 protected View newGroupView(Context context, Cursor cursor, boolean isExpanded,
  /frameworks/base/core/java/android/widget/
ResourceCursorTreeAdapter.java 104 public View newGroupView(Context context, Cursor cursor, boolean isExpanded, ViewGroup parent) {
105 return mInflater.inflate((isExpanded) ? mExpandedGroupLayout : mCollapsedGroupLayout,
ExpandableListAdapter.java 114 * @param isExpanded whether the group is expanded or collapsed
125 View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent);
SimpleExpandableListAdapter.java 270 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
274 v = newGroupView(isExpanded, parent);
284 * @param isExpanded Whether the group is currently expanded.
288 public View newGroupView(boolean isExpanded, ViewGroup parent) {
289 return mInflater.inflate((isExpanded) ? mExpandedGroupLayout : mCollapsedGroupLayout,
CursorTreeAdapter.java 195 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
204 v = newGroupView(mContext, cursor, isExpanded, parent);
208 bindGroupView(v, mContext, cursor, isExpanded);
218 * @param isExpanded Whether the group is expanded.
222 protected abstract View newGroupView(Context context, Cursor cursor, boolean isExpanded,
232 * @param isExpanded Whether the group is expanded.
235 boolean isExpanded);
SimpleCursorTreeAdapter.java 258 protected void bindGroupView(View view, Context context, Cursor cursor, boolean isExpanded) {
ExpandableListView.java 354 (pos.isExpanded() ? 1 : 0) | // Expanded?
395 if ((pos.position.type == ExpandableListPosition.CHILD) || (pos.isExpanded() &&
556 if (posMetadata.isExpanded()) {
    [all...]
ExpandableListConnector.java 446 posMetadata.isExpanded(), convertView, parent);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/
InflatedExpandableListView.java 98 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
  /packages/apps/Contacts/src/com/android/contacts/
GroupingListAdapter.java 54 boolean isExpanded;
341 metadata.isExpanded = expanded;
400 if (mPositionMetadata.isExpanded) {
466 mPositionMetadata.isExpanded);
  /packages/apps/Contacts/tests/src/com/android/contacts/
GroupingListAdapterTests.java 306 private void assertPositionMetadata(int position, int itemType, boolean isExpanded,
312 assertEquals(isExpanded, metadata.isExpanded);
  /external/webkit/WebKitTools/DumpRenderTree/
AccessibilityUIElement.h 123 bool isExpanded() const;
  /cts/tests/tests/widget/src/android/widget/cts/
BaseExpandableListAdapterTest.java 239 public View getGroupView(int groupPosition, boolean isExpanded,
SimpleCursorTreeAdapterTest.java 152 // The param context and isExpanded is never readed.
284 protected void bindGroupView(View v, Context context, Cursor cursor, boolean isExpanded) {
285 super.bindGroupView(v, context, cursor, isExpanded);
ResourceCursorTreeAdapterTest.java 231 boolean isExpanded) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 144 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
  /cts/tests/src/android/widget/cts/util/
ExpandableListScenario.java 334 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
  /external/webkit/WebCore/accessibility/
AccessibilityRenderObject.h 106 virtual bool isExpanded() const;
AccessibilityObject.h 315 virtual bool isExpanded() const { return false; }
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
AccessibilityUIElementGtk.cpp 362 bool AccessibilityUIElement::isExpanded() const
  /frameworks/base/core/tests/coretests/src/android/util/
ExpandableListScenario.java 334 public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
  /packages/apps/Browser/src/com/android/browser/
DateSortedExpandableListAdapter.java 264 public View getGroupView(int groupPosition, boolean isExpanded,
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DateSortedExpandableListAdapter.java 271 public View getGroupView(int groupPosition, boolean isExpanded,
  /external/webkit/WebKitTools/DumpRenderTree/win/
AccessibilityUIElementWin.cpp 308 bool AccessibilityUIElement::isExpanded() const

Completed in 436 milliseconds

1 2