Searched defs:root (Results 1 - 25 of 83) sorted by last modified time

1234

/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DBaseMenuPresenter.java72 public MenuView getMenuView(ViewGroup root) { argument
74 mMenuView = (MenuView) mSystemInflater.inflate(mMenuLayoutRes, root, false);
H A DListMenuPresenter.java100 public MenuView getMenuView(ViewGroup root) { argument
103 R.layout.abc_expanded_menu_layout, root, false);
H A DMenuPopupHelper.java252 public MenuView getMenuView(ViewGroup root) { argument
H A DMenuPresenter.java70 * @param root Intended parent of the MenuView.
73 public MenuView getMenuView(ViewGroup root); argument
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuPresenter.java160 public MenuView getMenuView(ViewGroup root) { argument
161 MenuView result = super.getMenuView(root);
H A DToolbar.java1918 public MenuView getMenuView(ViewGroup root) { argument
/frameworks/rs/
H A DrsFont.cpp761 const char * root = getenv("ANDROID_ROOT"); local
762 rsAssert(strlen(root) < 256);
763 strcpy(fullPath, root);
H A DrsScript.h78 int (* root)(); member in struct:android::renderscript::Script::Hal::DriverInfo
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/tests/java/android/support/v4/provider/
H A DDocumentFileTest.java43 private File root; field in class:DocumentFileTest
70 root = Environment.getExternalStorageDirectory();
71 rootFoo = new File(root, FOO);
72 rootMeow = new File(root, MEOW);
81 final File tmp = new File(root, "bark.pdf");
111 test.exec(DocumentFile.fromFile(root));
143 test.exec(DocumentFile.fromFile(root));
174 test.exec(DocumentFile.fromFile(root));
199 test.exec(DocumentFile.fromFile(root));
243 test.exec(DocumentFile.fromFile(root));
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DItemBridgeAdapter.java54 public abstract View createWrapper(View root); argument
/frameworks/support/v4/api21/android/support/v4/app/
H A DFragmentTransitionCompat21.java47 public static Object captureExitingViews(Object exitTransition, View root, argument
50 captureTransitioningViews(viewList, root);
/frameworks/support/v4/api22/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatApi22.java35 public static void setTraversalBefore(Object info, View root, int virtualDescendantId) { argument
36 ((AccessibilityNodeInfo) info).setTraversalBefore(root, virtualDescendantId);
47 public static void setTraversalAfter(Object info, View root, int virtualDescendantId) { argument
48 ((AccessibilityNodeInfo) info).setTraversalAfter(root, virtualDescendantId);
/frameworks/support/v4/java/android/support/v4/content/
H A DFileProvider.java142 * Represents files in the root of your app's external storage area. The path
144 * <code>files/</code> subdirectory of this this root.
152 * Represents files in the cache subdirectory of your app's internal storage area. The root path
309 private static final String TAG_ROOT_PATH = "root-path";
639 * Add a mapping from a name to a filesystem root. The provider only offers
642 public void addRoot(String name, File root) { argument
649 root = root.getCanonicalFile();
652 "Failed to resolve canonical path for " + root, e);
655 mRoots.put(name, root);
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java193 public Object obtain(View root, int virtualDescendantId); argument
195 public void setSource(Object info, View root, int virtualDescendantId); argument
214 public void setParent(Object info, View root, int virtualDescendantId); argument
278 public void setTraversalBefore(Object info, View root, int virtualDescendantId); argument
281 public void setTraversalAfter(Object info, View root, int virtualDescendantId); argument
301 public Object obtain(View root, int virtualDescendantId) { argument
576 public void setSource(Object info, View root, int virtualDescendantId) { argument
601 public void setParent(Object info, View root, int virtualDescendantId) { argument
720 public void setTraversalBefore(Object info, View root, int virtualDescendantId) { argument
733 public void setTraversalAfter(Object info, View root, in argument
976 obtain(View root, int virtualDescendantId) argument
996 setSource(Object info, View root, int virtualDescendantId) argument
1036 setParent(Object info, View root, int virtualDescendantId) argument
1208 setTraversalBefore(Object info, View root, int virtualDescendantId) argument
1228 setTraversalAfter(Object info, View root, int virtualDescendantId) argument
1622 obtain(View root, int virtualDescendantId) argument
1675 setSource(View root, int virtualDescendantId) argument
1776 addChild(View root, int virtualDescendantId) argument
1953 setParent(View root, int virtualDescendantId) argument
[all...]
H A DAccessibilityRecordCompat.java37 public void setSource(Object record, View root, int virtualDescendantId); argument
259 public void setSource(Object record, View root, int virtualDescendantId) { argument
500 public void setSource(Object record, View root, int virtualDescendantId) { argument
501 AccessibilityRecordCompatJellyBean.setSource(record, root, virtualDescendantId);
575 * Sets the source to be a virtual descendant of the given <code>root</code>.
576 * If <code>virtualDescendantId</code> equals to {@link View#NO_ID} the root
585 * @param root The root of the virtual subtree.
588 public void setSource(View root, int virtualDescendantId) { argument
589 IMPL.setSource(mRecord, root, virtualDescendantI
[all...]
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellyBean.java32 public static void setSource(Object info, View root, int virtualDescendantId) { argument
33 ((AccessibilityNodeInfo) info).setSource(root, virtualDescendantId);
56 public static Object obtain(View root, int virtualDescendantId) { argument
57 return AccessibilityNodeInfo.obtain(root, virtualDescendantId);
68 public static void setParent(Object info, View root, int virtualDescendantId) { argument
69 ((AccessibilityNodeInfo) info).setParent(root, virtualDescendantId);
H A DAccessibilityRecordCompatJellyBean.java27 public static void setSource(Object record, View root, int virtualDescendantId) { argument
28 ((AccessibilityRecord) record).setSource(root, virtualDescendantId);
/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/compile/mclinker/include/mcld/ADT/
H A DBinTree.h47 m_pNode = m_pNode->right; // should be root
82 m_pNode = m_pNode->right; // should be root
254 * \brief BinaryTreeBase gives root node and memory management.
268 /// TreeImpl - TreeImpl records the root node and the number of nodes
294 /// summon - change the final edges of pClient to our root
312 // - the pointer of root
414 iterator root() function in class:mcld::BinaryTree
417 const_iterator root() const function in class:mcld::BinaryTree
/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h147 iterator root() function in class:mcld::BinaryTree
150 const_iterator root() const function in class:mcld::BinaryTree
/frameworks/compile/mclinker/unittests/
H A DPathTest.cpp46 std::string root(TOPDIR);
47 root += "/test/lit.cfg";
48 m_pTestee->assign(root);
52 m_pTestee = new Path(root);
57 const std::string root = "/luck"; local
58 m_pTestee->assign(root);
62 m_pTestee = new Path(root);
67 const std::string root = "../././.."; local
68 m_pTestee->assign(root);
72 m_pTestee = new Path(root);
78 const std::string root = "/luck"; local
89 const std::string root = "aaa/bbb/../../ccc/"; local
103 const std::string root = "aa/"; local
117 const std::string root = "aa/"; local
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DDisplayListLayersActivity.java43 LinearLayout root = createContainer();
44 addChild(root, new LayerView(this, 0xffff0000, LAYER_TYPE_HARDWARE, "hardware"),
46 addChild(root, new LayerView(this, 0xff0000ff, LAYER_TYPE_SOFTWARE, "software"),
48 addChild(root, createButton(root), WRAP_CONTENT, WRAP_CONTENT);
50 setContentView(root);
53 private Button createButton(final LinearLayout root) { argument
59 for (int i = 0; i < root.getChildCount(); i++) {
60 View child = root.getChildAt(i);
71 private void addChild(LinearLayout root, Vie argument
[all...]
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp66 static bool isHidden(const char *root, const char *path) argument
99 String8 fullPath(root);
934 String8 root, remain(filePath), partialPath; local
936 root = remain.walkPath(&remain);
937 partialPath.appendPath(root);
939 const String8 rootStr(root);
1007 // place at root of zip.
H A DResource.cpp768 status_t massageManifest(Bundle* bundle, sp<XMLNode> root) argument
770 root = root->searchElement(String16(), String16("manifest"));
771 if (root == NULL) {
779 if (!addTagAttribute(root, RESOURCES_ANDROID_NAMESPACE, "versionCode",
783 const XMLNode::attribute_entry* attr = root->getAttribute(
790 if (!addTagAttribute(root, RESOURCES_ANDROID_NAMESPACE, "versionName",
794 const XMLNode::attribute_entry* attr = root->getAttribute(
801 sp<XMLNode> vers = root->getChildElement(String16(), String16("uses-sdk"));
806 vers = XMLNode::newElement(root
1064 sp<XMLNode> root = XMLNode::newNamespace(filename, androidPrefix, androidNSUri); local
[all...]

Completed in 1784 milliseconds

1234