Searched defs:root (Results 26 - 28 of 28) sorted by relevance

12

/frameworks/base/tools/aapt/
H A DResource.cpp651 status_t massageManifest(Bundle* bundle, sp<XMLNode> root) argument
653 root = root->searchElement(String16(), String16("manifest"));
654 if (root == NULL) {
659 addTagAttribute(root, RESOURCES_ANDROID_NAMESPACE, "versionCode",
661 addTagAttribute(root, RESOURCES_ANDROID_NAMESPACE, "versionName",
667 sp<XMLNode> vers = root->getChildElement(String16(), String16("uses-sdk"));
669 vers = XMLNode::newElement(root->getFilename(), String16(), String16("uses-sdk"));
670 root->insertChildAt(vers, 0);
682 sp<XMLNode> application = root
[all...]
H A DResourceTable.cpp22 sp<XMLNode> root = XMLNode::parse(target); local
23 if (root == NULL) {
27 return compileXmlFile(assets, root, target, table, options);
36 sp<XMLNode> root = XMLNode::parse(target); local
37 if (root == NULL) {
41 return compileXmlFile(assets, root, outTarget, table, options);
45 const sp<XMLNode>& root,
51 root->removeWhitespace(true, NULL);
53 root->removeWhitespace(false, NULL);
57 root
44 compileXmlFile(const sp<AaptAssets>& assets, const sp<XMLNode>& root, const sp<AaptFile>& target, ResourceTable* table, int options) argument
[all...]
/frameworks/base/core/java/android/view/
H A DView.java3052 return false; // We are not attached to the view root
3517 * use the root to look up the view. Once a view is found, it is cached
3519 * @param root The root view of the hierarchy containing this view.
3523 View findUserSetNextFocus(View root, int direction) { argument
3527 return findViewShouldExist(root, mNextFocusLeftId);
3530 return findViewShouldExist(root, mNextFocusRightId);
3533 return findViewShouldExist(root, mNextFocusUpId);
3536 return findViewShouldExist(root, mNextFocusDownId);
3541 private static View findViewShouldExist(View root, in argument
8805 inflate(Context context, int resource, ViewGroup root) argument
[all...]

Completed in 16 milliseconds

12