Searched defs:root (Results 101 - 125 of 130) sorted by relevance

123456

/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DToolbar.java2322 public MenuView getMenuView(ViewGroup root) { argument
/frameworks/support/compat/src/main/java/androidx/core/view/accessibility/
H A DAccessibilityNodeInfoCompat.java1367 * @param root The root of the virtual subtree.
1373 public static AccessibilityNodeInfoCompat obtain(View root, int virtualDescendantId) { argument
1376 AccessibilityNodeInfo.obtain(root, virtualDescendantId));
1412 * Sets the source to be a virtual descendant of the given <code>root</code>.
1413 * If <code>virtualDescendantId</code> is {@link View#NO_ID} the root
1427 * @param root The root of the virtual subtree.
1430 public void setSource(View root, int virtualDescendantId) { argument
1432 mInfo.setSource(root, virtualDescendantI
1541 addChild(View root, int virtualDescendantId) argument
1579 removeChild(View root, int virtualDescendantId) argument
1794 setParent(View root, int virtualDescendantId) argument
2666 setLabelFor(View root, int virtualDescendantId) argument
2722 setLabeledBy(View root, int virtualDescendantId) argument
3002 setTraversalBefore(View root, int virtualDescendantId) argument
3066 setTraversalAfter(View root, int virtualDescendantId) argument
[all...]
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java320 ViewNode root = win.mRoot;
322 if (DEBUG_PARCEL_TREE) Log.d(TAG, "Writing initial root view " + root);
323 writeView(root, out, pwriter, 0);
490 WindowNode(AssistStructure assist, ViewRootImpl root, boolean forAutoFill, int flags) { argument
491 View view = root.getView();
498 mTitle = root.getTitle();
499 mDisplayId = root.getDisplayId();
503 if ((root.getWindowFlags() & WindowManager.LayoutParams.FLAG_SECURE) != 0) {
596 * Returns the {@link ViewNode} containing the root conten
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java775 * Sets the source to be a virtual descendant of the given <code>root</code>.
776 * If <code>virtualDescendantId</code> is {@link View#NO_ID} the root
790 * @param root The root of the virtual subtree.
793 public void setSource(View root, int virtualDescendantId) { argument
795 mWindowId = (root != null) ? root.getAccessibilityWindowId() : UNDEFINED_ITEM_ID;
797 (root != null) ? root.getAccessibilityViewId() : UNDEFINED_ITEM_ID;
1025 * Adds a virtual child which is a descendant of the given <code>root</cod
1038 addChild(View root, int virtualDescendantId) argument
1042 addChildInternal(View root, int virtualDescendantId, boolean checked) argument
1067 removeChild(View root, int virtualDescendantId) argument
1307 setTraversalBefore(View root, int virtualDescendantId) argument
1367 setTraversalAfter(View root, int virtualDescendantId) argument
1644 setParent(View root, int virtualDescendantId) argument
2720 setLabelFor(View root, int virtualDescendantId) argument
2772 setLabeledBy(View root, int virtualDescendantId) argument
3114 obtain(View root, int virtualDescendantId) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java410 public abstract void apply(View root, ViewGroup rootParent, argument
440 public Action initActionAsync(ViewTree root, ViewGroup rootParent, OnClickHandler handler) { argument
481 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { }
597 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { argument
598 final View view = root.findViewById(viewId);
603 final View emptyView = root.findViewById(emptyViewId);
632 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) { argument
633 final View target = root.findViewById(viewId);
641 if (target == root) {
712 public void apply(View root, ViewGrou argument
790 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
852 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
885 initActionAsync(ViewTree root, ViewGroup rootParent, OnClickHandler handler) argument
923 apply(View root, ViewGroup rootParent, final OnClickHandler handler) argument
1086 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1133 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1233 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1448 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1464 initActionAsync(ViewTree root, ViewGroup rootParent, OnClickHandler handler) argument
1550 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1603 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1616 initActionAsync(ViewTree root, ViewGroup rootParent, OnClickHandler handler) argument
1704 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1720 initActionAsync(ViewTree root, ViewGroup rootParent, OnClickHandler handler) argument
1835 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1865 initActionAsync(ViewTree root, ViewGroup rootParent, OnClickHandler handler) argument
1943 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1987 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
2040 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
2115 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
2150 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
3729 ViewTree(View root) argument
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp857 status_t massageManifest(Bundle* bundle, ResourceTable* table, sp<XMLNode> root) argument
859 root = root->searchElement(String16(), String16("manifest"));
860 if (root == NULL) {
868 if (!addTagAttribute(root, RESOURCES_ANDROID_NAMESPACE, "versionCode",
872 const XMLNode::attribute_entry* attr = root->getAttribute(
879 if (!addTagAttribute(root, RESOURCES_ANDROID_NAMESPACE, "versionName",
883 const XMLNode::attribute_entry* attr = root->getAttribute(
890 sp<XMLNode> vers = root->getChildElement(String16(), String16("uses-sdk"));
895 vers = XMLNode::newElement(root
1204 sp<XMLNode> root = XMLNode::newNamespace(filename, androidPrefix, androidNSUri); local
[all...]
H A DResourceTable.cpp49 sp<XMLNode> root = XMLNode::parse(target); local
50 if (root == NULL) {
54 return compileXmlFile(bundle, assets, resourceName, root, target, table, options);
65 sp<XMLNode> root = XMLNode::parse(target); local
66 if (root == NULL) {
70 return compileXmlFile(bundle, assets, resourceName, root, outTarget, table, options);
76 const sp<XMLNode>& root,
81 if (table->versionForCompat(bundle, resourceName, target, root)) {
93 root->removeWhitespace(true, NULL);
95 root
73 compileXmlFile(const Bundle* bundle, const sp<AaptAssets>& assets, const String16& resourceName, const sp<XMLNode>& root, const sp<AaptFile>& target, ResourceTable* table, int options) argument
4772 versionForCompat(const Bundle* bundle, const String16& resourceName, const sp<AaptFile>& target, const sp<XMLNode>& root) argument
4842 modifyForCompat(const Bundle* bundle, const String16& resourceName, const sp<AaptFile>& target, const sp<XMLNode>& root) argument
5078 processBundleFormat(const Bundle* bundle, const String16& resourceName, const sp<AaptFile>& target, const sp<XMLNode>& root) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java1024 // root namespace means we should consider ourselves the top of the
6498 * <li>The same as the root node's</li>
8558 * a specified root. This enables sorting of views based on their
8559 * coordinates without recomputing the position relative to the root
8583 public static ViewLocationHolder obtain(ViewGroup root, View view) { argument
8588 holder.init(root, view);
8622 * @param holder2 Holder of second view to compare. Must have the same root at holder1.
8704 private void init(ViewGroup root, View view) { argument
8707 root.offsetDescendantRectToMyCoords(view, viewLocation);
8709 mRoot = root;
[all...]
H A DViewRootImpl.java907 * @return the width of the root view. Note that this will return {@code -1} until the first
917 * @return the height of the root view. Note that this will return {@code -1} until the first
1183 * @param displayId The id of the display where this view root is moved to.
2930 * Figures out the measure spec for the root view in a window based on it's
2940 * @return The measure spec to use to measure the root view.
2947 // Window can't resize. Force root view to be windowSize.
2951 // Window can resize. Set max size for root view.
2955 // Window wants to be an exact size. Force root view to be that size.
3273 // If accessibility focus moved, always invalidate the root.
3537 * Requests that the root rende
8466 dispatch(View root, KeyEvent event) argument
[all...]
/frameworks/base/tests/TouchLatency/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/base/tests/UiBench/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/compiler/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/extensions/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/App With Spaces/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/IndependentLibrary/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/MultiModuleTestApp/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/TestApp/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/samples/BindingDemo/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/developmentPlugins/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/app-toolkit/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/development/checkstyle/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...

Completed in 1213 milliseconds

123456