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

1 2

  /frameworks/base/core/java/android/widget/
ResourceCursorTreeAdapter.java 98 public View newChildView(Context context, Cursor cursor, boolean isLastChild,
100 return mInflater.inflate((isLastChild) ? mLastChildLayout : mChildLayout, parent, false);
ExpandableListAdapter.java 134 * @param isLastChild Whether the child is the last child within the group
145 View getChildView(int groupPosition, int childPosition, boolean isLastChild,
SimpleExpandableListAdapter.java 221 public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
225 v = newChildView(isLastChild, parent);
235 * @param isLastChild Whether the child is the last child within its group.
239 public View newChildView(boolean isLastChild, ViewGroup parent) {
240 return mInflater.inflate((isLastChild) ? mLastChildLayout : mChildLayout, parent, false);
CursorTreeAdapter.java 237 public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
248 v = newChildView(mContext, cursor, isLastChild, parent);
252 bindChildView(v, mContext, cursor, isLastChild);
262 * @param isLastChild Whether the child is the last child within its group.
266 protected abstract View newChildView(Context context, Cursor cursor, boolean isLastChild,
276 * @param isLastChild Whether the child is the last child within its group.
279 boolean isLastChild);
SimpleCursorTreeAdapter.java 248 protected void bindChildView(View view, Context context, Cursor cursor, boolean isLastChild) {
ExpandableListConnector.java 448 final boolean isLastChild = posMetadata.groupMetadata.lastChildFlPos == flatListPos;
451 posMetadata.position.childPos, isLastChild, convertView, parent);
    [all...]
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DateSortedDownloadAdapter.java 45 boolean isLastChild, View convertView, ViewGroup parent) {
DateSortedExpandableListAdapter.java 286 boolean isLastChild, View convertView, ViewGroup parent) {
  /frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/
InflatedExpandableListView.java 79 public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
  /cts/tests/tests/widget/src/android/widget/cts/
BaseExpandableListAdapterTest.java 215 boolean isLastChild, View convertView, ViewGroup parent) {
SimpleCursorTreeAdapterTest.java 280 protected void bindChildView(View v, Context context, Cursor cursor, boolean isLastChild) {
281 super.bindChildView(v, context, cursor, isLastChild);
ResourceCursorTreeAdapterTest.java 226 boolean isLastChild) {
CursorTreeAdapterTest.java 761 Cursor cursor, boolean isLastChild) {
819 boolean isLastChild, ViewGroup parent) {
ExpandableListViewTest.java 681 boolean isLastChild, View convertView, ViewGroup parent) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 125 public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
FakeExpandableAdapter.java 126 public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
  /packages/apps/Calendar/src/com/android/calendar/
SelectCalendarsAdapter.java 306 protected void bindChildView(View view, Context context, Cursor cursor, boolean isLastChild) {
381 protected View newChildView(Context context, Cursor cursor, boolean isLastChild,
  /cts/tests/src/android/widget/cts/util/
ExpandableListScenario.java 316 public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
  /frameworks/base/core/tests/coretests/src/android/util/
ExpandableListScenario.java 316 public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
  /packages/apps/Browser/src/com/android/browser/
DateSortedExpandableListAdapter.java 279 boolean isLastChild, View convertView, ViewGroup parent) {
BrowserHistoryPage.java 305 public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
  /packages/apps/Music/src/com/android/music/
ArtistAlbumBrowserActivity.java 652 public View newChildView(Context context, Cursor cursor, boolean isLastChild,
654 View v = super.newChildView(context, cursor, isLastChild, parent);
    [all...]
  /external/webkit/WebCore/rendering/
RenderInline.cpp 201 bool isLastChild = (beforeChild == lastChild());
204 if (isLastChild && beforeChild != lastChild())
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
ContactsPreferencesActivity.java 679 public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
AccountFolderList.java 784 private void bindMailboxItem(View view, Context context, Cursor cursor, boolean isLastChild)
    [all...]

Completed in 530 milliseconds

1 2