HomeSort by relevance Sort by last modified time
    Searched full:newview (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /cts/tests/tests/view/src/android/view/animation/cts/
GridLayoutAnimCtsActivity.java 94 ImageView newView = new ImageView(GridLayoutAnimCtsActivity.this);
97 newView.setLayoutParams(params);
98 newView.setImageResource(R.drawable.size_48x48);
99 return newView;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
CursorFactoryListAdapter.java 34 public View newView(Context context, ViewGroup parent);
49 public View newView(Context context, ViewGroup parent) {
67 public View newView(Context context, Cursor cursor, ViewGroup parent) {
68 View view = mViewFactory.newView(context, parent);
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
LayoutChangesActivity.java 81 final ViewGroup newView = (ViewGroup) LayoutInflater.from(this).inflate(
85 ((TextView) newView.findViewById(android.R.id.text1)).setText(
89 newView.findViewById(R.id.delete_button).setOnClickListener(new View.OnClickListener() {
95 mContainerView.removeView(newView);
106 mContainerView.addView(newView, 0);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedMap.java 73 return newView(unmodifiableSortedMap(delegate), comparator);
152 return newView(unmodifiableSortedMap(delegate), comparator);
213 return newView(unmodifiableSortedMap(delegate), comparator);
259 return newView(sortedDelegate.headMap(toKey));
278 return newView(sortedDelegate.subMap(fromKey, toKey));
290 return newView(sortedDelegate.tailMap(fromKey));
304 private ImmutableSortedMap<K, V> newView(SortedMap<K, V> delegate) {
305 return newView(delegate, comparator);
308 private static <K, V> ImmutableSortedMap<K, V> newView(
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorAdapterTest.java 91 View result = mResourceCursorAdapter.newView(null, null, mParent);
97 result = mResourceCursorAdapter.newView(null, null, mParent);
122 result = mResourceCursorAdapter.newView(null, null, mParent);
150 View result = mResourceCursorAdapter.newView(null, null, mParent);
156 result = mResourceCursorAdapter.newView(null, null, mParent);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
AutoSizingList.java 95 View newView = mAdapter.getView(i, v, this);
96 if (newView != v) {
100 addView(newView, i);
PseudoGridView.java 180 View newView = mAdapter.getView(i, oldView, viewGroup);
183 viewGroup.addView(newView);
184 } else if (oldView != newView) {
187 viewGroup.addView(newView, i);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/applications/manageapplications/
ApplicationViewHolderTest.java 47 mView = ApplicationViewHolder.newView(new FrameLayout(mContext));
105 mView = ApplicationViewHolder.newView(new FrameLayout(mContext), true);
113 mView = ApplicationViewHolder.newView(new FrameLayout(mContext), true);
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
CollapsedAlarmViewHolder.java 198 final View newView = newHolder.itemView;
199 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView)
221 final View newView = itemView;
222 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView)
229 ((ViewGroup) newView).offsetDescendantRectToMyCoords(arrow, newArrowRect);
  /packages/apps/TV/src/com/android/tv/menu/
MenuView.java 254 View newView = super.focusSearch(focused, direction);
256 MenuRowView newFocusedParent = getParentMenuRowView(newView);
267 return newView;
269 View newView = super.focusSearch(focused, direction);
271 MenuRowView newFocusedParent = getParentMenuRowView(newView);
283 return newView;
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastCursorAdapter.java 46 public View newView(Context context, Cursor cursor, ViewGroup parent) {
59 * @param view Existing view, returned earlier by newView
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
memoryobject.c 544 Py_buffer newview; local
545 memset(&newview, 0, sizeof(newview));
547 return PyMemoryView_FromBuffer(&newview);
593 Py_buffer newview; local
601 if (PyObject_GetBuffer(view->obj, &newview, newflags) == -1)
605 newview = *view;
607 newview.buf = newbuf;
608 newview.len = slicelength * newview.itemsize;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
memoryobject.c 544 Py_buffer newview; local
545 memset(&newview, 0, sizeof(newview));
547 return PyMemoryView_FromBuffer(&newview);
593 Py_buffer newview; local
601 if (PyObject_GetBuffer(view->obj, &newview, newflags) == -1)
605 newview = *view;
607 newview.buf = newbuf;
608 newview.len = slicelength * newview.itemsize;
    [all...]
  /external/python/cpython2/Objects/
memoryobject.c 544 Py_buffer newview; local
545 memset(&newview, 0, sizeof(newview));
547 return PyMemoryView_FromBuffer(&newview);
593 Py_buffer newview; local
601 if (PyObject_GetBuffer(view->obj, &newview, newflags) == -1)
605 newview = *view;
607 newview.buf = newbuf;
608 newview.len = slicelength * newview.itemsize
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
QuickContactsDemo.java 88 public View newView(Context context, Cursor cursor, ViewGroup parent) {
89 View view = super.newView(context, cursor, parent);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResourceCursorAdapter.java 79 * @see android.widget.CursorAdapter#newView(android.content.Context,
83 public View newView(Context context, Cursor cursor, ViewGroup parent) {
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowCursorAdapterTest.java 117 public View newView(Context context, Cursor cursor, ViewGroup parent) {
127 @Override public View newView(Context context, Cursor cursor, ViewGroup parent) {
  /frameworks/support/cursoradapter/api/
current.txt 19 method public abstract android.view.View newView(android.content.Context, android.database.Cursor, android.view.ViewGroup);
32 method public android.view.View newView(android.content.Context, android.database.Cursor, android.view.ViewGroup);
  /frameworks/support/cursoradapter/api_legacy/
0.0.0.txt 19 method public abstract android.view.View newView(android.content.Context, android.database.Cursor, android.view.ViewGroup);
32 method public android.view.View newView(android.content.Context, android.database.Cursor, android.view.ViewGroup);
28.0.0-alpha1.txt 19 method public abstract android.view.View newView(android.content.Context, android.database.Cursor, android.view.ViewGroup);
32 method public android.view.View newView(android.content.Context, android.database.Cursor, android.view.ViewGroup);
current.txt 19 method public abstract android.view.View newView(android.content.Context, android.database.Cursor, android.view.ViewGroup);
32 method public android.view.View newView(android.content.Context, android.database.Cursor, android.view.ViewGroup);
  /packages/apps/Contacts/src/com/android/contacts/list/
LegacyPhoneNumberListAdapter.java 77 protected ContactListItemView newView(
80 super.newView(context, partition, cursor, position, parent);
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/
GalleryGridAdapter.java 66 view = newView(context, getCursor(), parent);
91 public View newView(Context context, Cursor cursor, ViewGroup parent) {
  /development/samples/ApiDemos/res/layout/
redirect_main.xml 41 <Button android:id="@+id/newView"
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyguardUserSwitcher.java 213 View newView = mAdapter.getView(i, oldView, mUserSwitcher);
216 mUserSwitcher.addView(newView);
217 } else if (oldView != newView) {
220 mUserSwitcher.addView(newView, i);

Completed in 1033 milliseconds

1 2 3 4 5 6