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

12345678

/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
/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);
/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 DListOfButtons.java63 public View getView(int position, View convertView, ViewGroup parent) { argument
66 Button button = new Button(parent.getContext());
/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);
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestGalleryImages.java62 public View getView(int position, View convertView, ViewGroup parent) { argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewLayersActivity.java107 public View getView(int position, View convertView, ViewGroup parent) { argument
108 TextView v = (TextView) super.getView(position, convertView, parent);
H A DViewLayersActivity2.java57 public View getView(int position, View convertView, ViewGroup parent) { argument
58 TextView v = (TextView) super.getView(position, convertView, parent);
H A DViewLayersActivity3.java54 public View getView(int position, View convertView, ViewGroup parent) { argument
55 TextView v = (TextView) super.getView(position, convertView, parent);
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DLayoutInflater_Delegate.java52 XmlPullParser parser, View parent, final AttributeSet attrs,
64 thisInflater.rInflate_Original(parser, parent, attrs, finishInflate);
79 XmlPullParser parser, View parent, AttributeSet attrs)
84 if (parent instanceof ViewGroup) {
116 thisInflater.rInflate(childParser, parent, childAttrs, false);
118 final View view = thisInflater.createViewFromTag(parent, childName, childAttrs);
119 final ViewGroup group = (ViewGroup) parent;
51 rInflate(LayoutInflater thisInflater, XmlPullParser parser, View parent, final AttributeSet attrs, boolean finishInflate) argument
77 parseInclude( LayoutInflater thisInflater, XmlPullParser parser, View parent, AttributeSet attrs) argument
/frameworks/compile/mclinker/include/mcld/Support/
H A DMemoryRegion.h48 Space* parent() function in class:mcld::MemoryRegion
51 const Space* parent() const function in class:mcld::MemoryRegion
/frameworks/av/services/camera/libcameraservice/camera2/
H A DJpegCompressor.h79 JpegCompressor *parent; member in struct:android::camera2::JpegCompressor::JpegError
84 JpegCompressor *parent; member in struct:android::camera2::JpegCompressor::JpegDestination

Completed in 192 milliseconds

12345678