Searched refs:child (Results 101 - 125 of 128) sorted by relevance

123456

/frameworks/base/media/libdrm/mobile1/include/xml/
H A Dxml_tinyParser.h159 XML_TREE *child; member in struct:_XML_TREE
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiSelector.java480 * Adds a child UiSelector criteria to this selector.
483 * child widgets under a specific parent widget.
502 * Adds a child UiSelector criteria to this selector which is used to
506 * sibling widgets as well all child widgets under a parent.
554 * Selectors may have a hierarchy defined by specifying child nodes to be matched.
559 * @return a child selector if one exists. Else null if this selector does not
560 * reference child node.
769 * Leaf selector indicates no more child or parent selectors
818 UiSelector child = (UiSelector)mSelectorAttributes.get(UiSelector.SELECTOR_CHILD);
819 if(child
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.cpp732 sp<XMLNode> child = mChildren.itemAt(i);
733 if (child->getType() == XMLNode::TYPE_ELEMENT
734 && child->mNamespaceUri == tagNamespace
735 && child->mElementName == tagName) {
736 return child;
743 status_t XMLNode::addChild(const sp<XMLNode>& child)
746 SourcePos(mFilename, child->getStartLineNumber()).error("Child to CDATA node.");
749 //printf("Adding child %p to parent %p\n", child.get(), this);
750 mChildren.add(child);
[all...]
H A DResource.cpp813 sp<XMLNode> child = children.editItemAt(i); local
814 String8 tag(child->getElementName());
816 fullyQualifyClassName(origPackage, child, String16("name"));
818 fullyQualifyClassName(origPackage, child, String16("name"));
819 fullyQualifyClassName(origPackage, child, String16("targetActivity"));
831 sp<XMLNode> child = children.editItemAt(i); local
832 String8 tag(child->getElementName());
834 XMLNode::attribute_entry* attr = child->editAttribute(
/frameworks/compile/libbcc/runtime/make/
H A Dsubdir.mk19 # Include child makefile fragments
/frameworks/base/core/java/android/app/
H A DActivity.java443 * <p>If a child activity fails for any reason (such as crashing), the parent
790 /** Return the parent activity if this view is an embedded child. */
1596 * it should return either a mapping from child activity id strings to arbitrary objects,
1598 * set of child activities, such as ActivityGroup. The same guarantees and restrictions apply
2754 * This is called when a child activity of this one attempts to navigate up.
2757 * @param child The activity making the call.
2759 public boolean onNavigateUpFromChild(Activity child) { argument
3412 throw new RuntimeException("Called be called from a child");
3701 * called from a child activity, a runtime exception will be thrown.
3808 * @param child Th
3817 startActivityFromChild(Activity child, Intent intent, int requestCode) argument
3841 startActivityFromChild(Activity child, Intent intent, int requestCode, Bundle options) argument
3909 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
3923 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
4198 finishFromChild(Activity child) argument
4232 finishActivityFromChild(Activity child, int requestCode) argument
5002 navigateUpToFromChild(Activity child, Intent upIntent) argument
[all...]
H A DSearchDialog.java640 public ActionMode startActionModeForChild(View child, ActionMode.Callback callback) { argument
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java135 VCardEntry child = entries.get(0);
137 assertEquals("test2", child.getDisplayName());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java977 View child = mPile.getChildAt(i);
978 if (!toShow.contains(child)) {
979 toRemove.add(child);
1028 View child = mNotificationIcons.getChildAt(i);
1029 if (!toShow.contains(child)) {
1030 toRemove.add(child);
1645 * more children than necessary to get a layer (at most one extra child with the
2156 final View child = mPile.getChildAt(i);
2157 if (mPile.canChildBeDismissed(child) && child
[all...]
H A DPanelView.java471 protected void onViewAdded(View child) { argument
472 if (DEBUG) LOG("onViewAdded: " + child);
/frameworks/base/core/java/android/webkit/
H A DWebView.java65 * <p>This must be a child of the <a
1076 * a child node. If a phone number is found, the HitTestResult type is set
1604 public void onChildViewAdded(View parent, View child) {} argument
1613 public void onChildViewRemoved(View p, View child) {} argument
2126 public boolean requestChildRectangleOnScreen(View child, Rect rect, boolean immediate) { argument
2127 return mProvider.getViewDelegate().requestChildRectangleOnScreen(child, rect, immediate);
H A DWebViewProvider.java339 public boolean requestChildRectangleOnScreen(View child, Rect rect, boolean immediate); argument
/frameworks/base/core/java/android/widget/
H A DFastScroller.java653 final View child = mList.getChildAt(0);
654 final float incrementalPos = child == null ? 0 : firstVisibleItem +
655 (float) (mList.getPaddingTop() - child.getTop()) / child.getHeight();
H A DListPopupWindow.java728 final View child = list.getChildAt(position - list.getFirstVisiblePosition());
730 mItemClickListener.onItemClick(list, child, position, adapter.getItemId(position));
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTransformsAndAnimationsActivity.java193 protected boolean getChildStaticTransformation(View child, Transformation t) { argument
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardHostView.java784 for (int child = 0; child < children; child++) {
785 if (mSecurityViewContainer.getChildAt(child).getId() == securityViewIdForMode) {
786 view = ((KeyguardSecurityView)mSecurityViewContainer.getChildAt(child));
849 // Find and show this child.
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java462 * We have one child
849 public void invalidateChild(View child, Rect dirty) { argument
855 if (DEBUG_DRAW) Log.v(TAG, "Invalidate child: " + dirty);
914 public boolean getChildVisibleRect(View child, Rect r, android.graphics.Point offset) { argument
915 if (child != mView) {
916 throw new RuntimeException("child is not mine, honest!");
923 public void bringChildToFront(View child) { argument
1898 public void requestTransparentRegion(View child) { argument
1901 if (mView == child) {
2251 // need to clear it before drawing so that the child wil
2552 requestChildFocus(View child, View focused) argument
2565 clearChildFocus(View child) argument
2609 recomputeViewAttributes(View child) argument
2704 isViewDescendantOf(View child, View parent) argument
4662 childDrawableStateChanged(View child) argument
4665 requestSendAccessibilityEvent(View child, AccessibilityEvent event) argument
4705 childAccessibilityStateChanged(View child) argument
4755 requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) argument
4770 childHasTransientStateChanged(View child, boolean hasTransientState) argument
[all...]
H A DView.java387 * its children. For example, the parent may measure each child once with
413 * child. A MeasureSpec can be in one of three modes:
416 * of a child view. For example, a LinearLayout may call measure() on its child
418 * tall the child view wants to be given a width of 240 pixels.
420 * child. The child must use this size, and guarantee that all of its
423 * child. The child must gurantee that it and all of its descendants will fit
1730 * child vie
18320 onRequestSendAccessibilityEvent(ViewGroup host, View child, AccessibilityEvent event) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java880 final View child = getChildAt(i);
881 if (child.getVisibility() != GONE &&
882 !(child == mMenuView && mMenuView.getChildCount() == 0) &&
883 child != mUpGoerFive) {
890 final View child = mUpGoerFive.getChildAt(i);
891 if (child.getVisibility() != GONE) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java1415 View child = mIconLayout.getChildAt(i);
1416 if (!toShow.contains(child)) {
1417 toRemove.add(child);
1450 View child = mPile.getChildAt(i);
1451 if (!toShow.contains(child)) {
1452 toRemove.add(child);
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java694 for (String child : children) {
695 rv += countTests(c, child);
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java63 public void addItemFromInflater(T child); argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java501 * @return The child count.
508 * Get the child at given index.
515 * @param index The child index.
516 * @return The child node.
533 * Adds a child.
540 * @param child The child.
544 public void addChild(View child) { argument
545 addChild(child, UNDEFINED);
549 * Adds a virtual child whic
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DUserManagerService.java865 File child = new File(parent, filename);
866 removeDirectoryRecursive(child);
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css661 .fieldtable tr:last-child td {

Completed in 795 milliseconds

123456