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

1234567891011

/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.java30 public ClassLoader getClassLoader(String zip, String libPath, ClassLoader parent) argument
33 * This is the parent we use if they pass "null" in. In theory
41 if (parent == null) {
42 parent = baseParent;
50 if (parent == baseParent) {
58 new PathClassLoader(zip, libPath, parent);
66 PathClassLoader pathClassloader = 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/packages/SystemUI/src/com/android/systemui/
H A DFontSizeUtils.java30 public static void updateFontSize(View parent, int viewId, int dimensId) { argument
31 updateFontSize((TextView) parent.findViewById(viewId), dimensId);
/frameworks/support/v4/ics/android/support/v4/view/
H A DViewParentCompatICS.java28 ViewParent parent, View child, AccessibilityEvent event) {
29 return parent.requestSendAccessibilityEvent(child, event);
27 requestSendAccessibilityEvent( ViewParent parent, View child, AccessibilityEvent event) 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/java/android/hardware/camera2/
H A DTotalCaptureResult.java60 public TotalCaptureResult(CameraMetadataNative results, CaptureRequest parent, argument
62 super(results, parent, extras);
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimatorRT.java48 public boolean startAnimation(ViewPropertyAnimator parent) { argument
49 cancelAnimators(parent.mPendingAnimations);
50 if (!canHandleAnimator(parent)) {
53 doStartAnimation(parent);
66 private void doStartAnimation(ViewPropertyAnimator parent) { argument
67 int size = parent.mPendingAnimations.size();
69 long startDelay = parent.getStartDelay();
70 long duration = parent.getDuration();
71 TimeInterpolator interpolator = parent.getInterpolator();
80 NameValuesHolder holder = parent
97 canHandleAnimator(ViewPropertyAnimator parent) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DNavItemSelectedListener.java36 public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { argument
43 public void onNothingSelected(AdapterView<?> parent) { 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);

Completed in 392 milliseconds

1234567891011