Searched defs:parent (Results 1 - 25 of 114) sorted by relevance

12345

/frameworks/base/core/java/android/widget/
H A DSpinnerAdapter.java38 * @param parent the parent that this view will eventually be attached to
42 public View getDropDownView(int position, View convertView, ViewGroup parent); argument
H A DAdapter.java85 * parent View (GridView, ListView...) will apply default layout parameters unless you use
94 * @param parent The parent that this view will eventually be attached to
97 View getView(int position, View convertView, ViewGroup parent); argument
H A DBaseAdapter.java65 public View getDropDownView(int position, View convertView, ViewGroup parent) { argument
66 return getView(position, convertView, parent);
H A DResourceCursorAdapter.java78 public View newView(Context context, Cursor cursor, ViewGroup parent) { argument
79 return mInflater.inflate(mLayout, parent, false);
83 public View newDropDownView(Context context, Cursor cursor, ViewGroup parent) { argument
84 return mInflater.inflate(mDropDownLayout, parent, false);
H A DResourceCursorTreeAdapter.java99 ViewGroup parent) {
100 return mInflater.inflate((isLastChild) ? mLastChildLayout : mChildLayout, parent, false);
104 public View newGroupView(Context context, Cursor cursor, boolean isExpanded, ViewGroup parent) { argument
106 parent, false);
98 newChildView(Context context, Cursor cursor, boolean isLastChild, ViewGroup parent) argument
/frameworks/base/core/java/android/app/
H A DApplicationLoaders.java31 public ClassLoader getClassLoader(String zip, String libPath, ClassLoader parent) argument
34 * This is the parent we use if they pass "null" in. In theory
42 if (parent == null) {
43 parent = baseParent;
51 if (parent == baseParent) {
58 new PathClassLoader(zip, libPath, parent);
64 return new PathClassLoader(zip, parent);
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListItemFocusableAboveUnfocusable.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
43 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
45 return super.createView(position, parent, desiredHeight);
H A DListItemFocusablesFarApart.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
42 position, parent.getContext(), desiredHeight);
H A DListItemISVAndButton.java42 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
43 Context context = parent.getContext();
H A DListOfTouchables.java41 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
H A DListButtonsDiagonalAcrossItems.java50 protected View createView(int position, ViewGroup parent, argument
55 parent.getContext(), desiredHeight, slot);
H A DListHeterogeneous.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
44 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
47 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
50 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
57 public View convertView(int position, View convertView, ViewGroup parent) { argument
H A DListHorizontalFocusWithinItemWins.java51 protected View createView(int position, ViewGroup parent, argument
53 final Context context = parent.getContext();
H A DListInterleaveFocusables.java43 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
46 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
48 return super.createView(position, parent, desiredHeight);
H A DListItemFocusablesClose.java50 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
52 position, parent.getContext(), desiredHeight);
H A DListItemsExpandOnSelection.java41 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
42 TextView result = new ExpandWhenSelectedView(parent.getContext(), desiredHeight);
55 public View convertView(int position, View convertView, ViewGroup parent) { argument
H A DListManagedCursor.java55 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
H A DListSimple.java45 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
46 View view = super.createView(position, parent, desiredHeight);
H A DListTakeFocusFromSide.java63 public View getView(int position, View convertView, ViewGroup parent) { argument
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DLayoutInflater_Delegate.java50 XmlPullParser parser, View parent, AttributeSet attrs)
55 if (parent instanceof ViewGroup) {
93 thisInflater.rInflate(childParser, parent, childAttrs);
102 final ViewGroup group = (ViewGroup) parent;
49 parseInclude(LayoutInflater thisInflater, XmlPullParser parser, View parent, AttributeSet attrs) argument
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListOfButtons.java63 public View getView(int position, View convertView, ViewGroup parent) { argument
66 Button button = new Button(parent.getContext());
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
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridSimple.java49 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
50 View view = super.createView(position, parent, desiredHeight);
/frameworks/base/sax/java/android/sax/
H A DChildren.java30 Element getOrCreate(Element parent, String uri, String localName) { argument
37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
56 current = new Child(parent, uri, localName, parent.depth + 1, hash);
91 Child(Element parent, String uri, String localName, int depth, argument
93 super(parent, uri, localName, depth);

Completed in 386 milliseconds

12345