/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 | 236 public View getChildView(int groupPosition, int childPosition, boolean isLastChild, 247 v = newChildView(mContext, cursor, isLastChild, parent); 251 bindChildView(v, mContext, cursor, isLastChild); 261 * @param isLastChild Whether the child is the last child within its group. 265 protected abstract View newChildView(Context context, Cursor cursor, boolean isLastChild, 275 * @param isLastChild Whether the child is the last child within its group. 278 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 | 44 boolean isLastChild, View convertView, ViewGroup parent) {
|
DateSortedExpandableListAdapter.java | 286 boolean isLastChild, View convertView, ViewGroup parent) {
|
/cts/tests/tests/widget/src/android/widget/cts/ |
BaseExpandableListAdapterTest.java | 215 boolean isLastChild, View convertView, ViewGroup parent) {
|
SimpleCursorTreeAdapterTest.java | 279 protected void bindChildView(View v, Context context, Cursor cursor, boolean isLastChild) { 280 super.bindChildView(v, context, cursor, isLastChild);
|
ResourceCursorTreeAdapterTest.java | 225 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/selectcalendars/ |
SelectSyncedCalendarsMultiAccountAdapter.java | 286 protected void bindChildView(View view, Context context, Cursor cursor, boolean isLastChild) { 340 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,
|
/packages/apps/Browser/src/com/android/browser/ |
DateSortedExpandableListAdapter.java | 297 boolean isLastChild, View convertView, ViewGroup parent) {
|
BrowserHistoryPage.java | 632 public View getChildView(int groupPosition, int childPosition, boolean isLastChild,
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/ |
ClusteredSuggestionsAdapter.java | 178 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...] |
/packages/apps/Browser/src/com/android/browser/view/ |
BookmarkExpandableView.java | 383 boolean isLastChild, View convertView, ViewGroup parent) {
|
/external/webkit/Source/WebCore/rendering/ |
RenderInline.cpp | 258 bool isLastChild = (beforeChild == lastChild()); 261 if (isLastChild && beforeChild != lastChild()) [all...] |
RenderBlock.cpp | 731 bool isLastChild = (beforeChild == lastChild()); 734 if (isLastChild && beforeChild != lastChild()) [all...] |
/packages/apps/Contacts/src/com/android/contacts/list/ |
CustomContactListFilterActivity.java | 594 public View getChildView(int groupPosition, int childPosition, boolean isLastChild, [all...] |