Searched refs:parent (Results 101 - 125 of 210) sorted by relevance

123456789

/frameworks/base/core/java/android/text/method/
H A DCharacterPickerDialog.java88 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
122 public View getView(int position, View convertView, ViewGroup parent) { argument
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java48 * state's hierarchy, starting at its eldest parent. For example given the simple
63 * <p>Each state in the state machine may have a zero or one parent states and if
65 * by its parent by returning false or NOT_HANDLED. If a message is never processed
76 * will exit the current state and its parent and then exit from the controlling thread
84 * the list of states to be entered/exited the common parent closest to
86 * parent's up to but not including the common parent state and then enter all
87 * of the new states below the common parent down to the destination state.
88 * If there is no common parent all states are exited and then the new states
120 * processMessage the state machine runtime will find the common parent,
1059 addState(State state, State parent) argument
1211 addState(State state, State parent) argument
[all...]
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DCameraBrowser.java72 public View getView(int position, View convertView, ViewGroup parent) { argument
76 android.R.layout.simple_list_item_2, parent, false);
H A DObjectBrowser.java79 public View getView(int position, View convertView, ViewGroup parent) { argument
82 view = mInflater.inflate(R.layout.object_list, parent, false);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewLayersActivity.java104 public View getView(int position, View convertView, ViewGroup parent) { argument
105 TextView v = (TextView) super.getView(position, convertView, parent);
/frameworks/base/core/java/android/widget/
H A DTableRow.java32 * TableRow's parent is not a TableLayout, the TableRow will behave as
280 * @param widthMeasureSpec the width constraint imposed by our parent
515 public void onChildViewAdded(View parent, View child) { argument
520 this.listener.onChildViewAdded(parent, child);
524 public void onChildViewRemoved(View parent, View child) { argument
529 this.listener.onChildViewRemoved(parent, child);
H A DRemoteViews.java232 View parent = (View) v.getParent();
233 while (!(parent instanceof AdapterView<?>)
234 && !(parent instanceof AppWidgetHostView)) {
235 parent = (View) parent.getParent();
238 if (parent instanceof AppWidgetHostView) {
240 // and AdapterView as a parent.
241 Log.e("RemoteViews", "Collection item doesn't have AdapterView parent");
246 if (!(parent.getTag() instanceof PendingIntent)) {
248 " calling setPendingIntentTemplate on parent
1570 apply(Context context, ViewGroup parent) argument
1601 performApply(View v, ViewGroup parent) argument
[all...]
H A DRemoteViewsAdapter.java392 ViewGroup parent) {
394 final Context context = parent.getContext();
404 View loadingView = mUserLoadingView.apply(parent.getContext(), parent);
419 View firstView = mFirstView.apply(parent.getContext(), parent);
932 public View getView(int position, View convertView, ViewGroup parent) { argument
962 Context context = parent.getContext();
981 View newView = rv.apply(context, parent);
996 loadingView = metaData.createLoadingView(position, convertView, parent);
391 createLoadingView(int position, View convertView, ViewGroup parent) argument
[all...]
H A DTableLayout.java46 * its parent object. If marked as stretchable, it can expand in width to fit
47 * any extra space. The total width of the table is defined by its parent
188 // make sure to call the parent class method to avoid potential
475 * @param widthMeasureSpec the measure constraint imposed by our parent
544 * by this widget's parent
747 public void onChildViewAdded(View parent, View child) { argument
751 mOnHierarchyChangeListener.onChildViewAdded(parent, child);
758 public void onChildViewRemoved(View parent, View child) { argument
760 mOnHierarchyChangeListener.onChildViewRemoved(parent, child);
/frameworks/base/core/tests/coretests/src/android/widget/layout/frame/
H A DFrameLayoutMarginTest.java45 mParent = activity.findViewById(R.id.parent);
/frameworks/base/media/mtp/
H A DMtpDevice.h84 MtpObjectHandle parent);
H A DMtpServer.cpp549 MtpObjectHandle parent = mRequest.getParameter(3); // 0xFFFFFFFF for objects with no parent local
555 MtpObjectHandleList* handles = mDatabase->getObjectList(storageID, format, parent);
566 MtpObjectHandle parent = mRequest.getParameter(3); // 0xFFFFFFFF for objects with no parent local
571 int count = mDatabase->getNumObjects(storageID, format, parent);
820 MtpObjectHandle parent = mRequest.getParameter(2); local
825 if (parent == MTP_PARENT_ROOT) {
827 parent = 0;
831 int result = mDatabase->getObjectFilePath(parent, pat
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DSingleRecipientArrayAdapter.java42 public View getView(int position, View convertView, ViewGroup parent) { argument
/frameworks/base/core/java/android/accounts/
H A DChooseAccountActivity.java85 public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
86 onListItemClick((ListView)parent, v, position, id);
167 public View getView(int position, View convertView, ViewGroup parent) { argument
/frameworks/base/core/java/com/android/internal/view/menu/
H A DListMenuPresenter.java162 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
251 public View getView(int position, View convertView, ViewGroup parent) { argument
253 convertView = mInflater.inflate(mItemLayoutRes, parent, false);
H A DMenuPopupHelper.java154 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
338 public View getView(int position, View convertView, ViewGroup parent) { argument
340 convertView = mInflater.inflate(ITEM_LAYOUT, parent, false);
/frameworks/ex/common/tests/src/com/android/common/widget/
H A DGroupingListAdapterTests.java92 protected View newChildView(Context context, ViewGroup parent) {
97 protected View newGroupView(Context context, ViewGroup parent) {
102 protected View newStandAloneView(Context context, ViewGroup parent) {
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java47 public void setParent(Object info, View parent); argument
244 public void setParent(Object info, View parent) { argument
475 public void setParent(Object info, View parent) { argument
476 AccessibilityNodeInfoCompatIcs.setParent(info, parent);
719 * Gets the parent.
726 * @return The parent.
733 * Sets the parent.
740 * @param parent The parent.
743 public void setParent(View parent) { argument
[all...]
/frameworks/base/core/java/android/view/animation/
H A DAnimationUtils.java95 AnimationSet parent, AttributeSet attrs) throws XmlPullParserException, IOException {
127 if (parent != null) {
128 parent.addAnimation(anim);
94 createAnimationFromXml(Context c, XmlPullParser parser, AnimationSet parent, AttributeSet attrs) argument
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmGenerator.java263 Class<?> parent;
264 while ((parent = clazz.getEnclosingClass()) != null) {
266 clazz = parent;
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTitleStrip.java118 final ViewParent parent = getParent();
119 if (!(parent instanceof ViewPager)) {
124 final ViewPager pager = (ViewPager) parent;
/frameworks/base/core/java/android/app/
H A DExpandableListActivity.java181 public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, argument
/frameworks/base/core/java/android/content/
H A DSyncActivityTooManyDeletes.java109 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListOfEditTexts.java112 public View getView(int position, View convertView, ViewGroup parent) { argument
H A DListWithFooterViewAndNewLabels.java93 public View getView(int position, View convertView, ViewGroup parent) { argument

Completed in 1823 milliseconds

123456789