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

123456789

/frameworks/base/core/java/android/widget/
H A DListView.java497 // The parent's resetList() will remove all views from the layout so we need to
2814 * Return true if child is an ancestor of parent, (or equal to the parent).
2816 private boolean isViewAncestorOf(View child, View parent) { argument
2817 if (child == parent) {
2822 return (theParent instanceof ViewGroup) && isViewAncestorOf((View) theParent, parent);
H A DCalendarView.java1090 public View getView(int position, View convertView, ViewGroup parent) { argument
1200 // Quick reference to the width of this view, matches parent
H A DTextView.java9313 // Absolute position of the TextView with respect to its parent window
9421 final ViewParent parent = view.getParent();
9422 if (parent instanceof View) {
9423 view = (View) parent;
9654 public View getView(int position, View convertView, ViewGroup parent) { argument
9658 textView = (TextView) mInflater.inflate(mTextEditSuggestionItemLayout, parent,
9897 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
10408 // Position with respect to the parent TextView
10605 // Update touchToWindow offset in case of parent scrolling while dragging
11358 // Then resolve text direction on the parent
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2739 HorizontalLineSpan parent = getParentSpan();
2741 int start = text.getSpanStart(parent);
2742 int end = text.getSpanEnd(parent);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java3066 ActivityRecord parent, final String annotation) {
3110 if (parent != null && parent.app != null && parent.app.pid > 0) parentPid = parent.app.pid;
3141 if (parent != null && parent != activity) {
3142 info.append("Parent: ").append(parent.shortComponentName).append("\n");
3167 addErrorToDropBox("anr", app, app.processName, activity, parent, annotation,
7618 * @param parent activit
3065 appNotResponding(ProcessRecord app, ActivityRecord activity, ActivityRecord parent, final String annotation) argument
7624 addErrorToDropBox(String eventType, ProcessRecord process, String processName, ActivityRecord activity, ActivityRecord parent, String subject, final String report, final File logFile, final ApplicationErrorReport.CrashInfo crashInfo) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java1035 * @param attrs An AttributeSet passed to our parent.
1044 * @param attrs An AttributeSet passed to our parent.
1054 * @param attrs An AttributeSet passed to our parent.
1068 * @param attrs An AttributeSet passed to our parent.
5703 public void onChildViewAdded(View parent, View child) {} argument
6282 ViewParent parent = getParent();
6283 if (parent != null) {
6284 parent.requestDisallowInterceptTouchEvent(true);
8955 ViewGroup parent) {
8961 convertView = super.getView(position, null, parent);
8954 getView(int position, View convertView, ViewGroup parent) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java1756 private boolean inflateViews(NotificationData.Entry entry, ViewGroup parent) { argument
1766 View row = inflater.inflate(R.layout.status_bar_notification_row, parent, false);
/frameworks/base/include/utils/
H A DResourceTypes.h305 // TYPE_FRACTION: A fraction of the parent size.
1704 * Extended form of a ResTable_entry for map entries, defining a parent map
1709 // Resource identifier of the parent mapping, or 0 if there is none.
1710 ResTable_ref parent; member in struct:android::ResTable_map_entry
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java2319 public View getView(int position, View convertView, ViewGroup parent) { argument
/frameworks/base/tools/aapt/
H A DResourceTable.cpp152 "some parent container." },
1381 // Figure out the parent of this bag...
1383 ssize_t parentIdentIdx = block.indexOfAttribute(NULL, "parent");
1742 // If a parent is explicitly specified, set it.
1789 // If a parent is explicitly specified, set it.
3117 mPos.error("Error retrieving parent for item: %s '%s'.\n",
3225 mapHeader.parent.ident = htodl(mParentId);

Completed in 2473 milliseconds

123456789