Searched defs:root (Results 51 - 75 of 120) sorted by relevance

12345

/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h145 iterator root() { return iterator(&(BinaryTreeBase<Input>::m_Root.node)); } function in class:mcld::BinaryTree
147 const_iterator root() const { function in class:mcld::BinaryTree
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DLayoutFileParser.java108 XMLParser.ElementContext root = expr.element();
109 if (!"layout".equals(root.elmName.getText())) {
112 XMLParser.ElementContext data = getDataNode(root);
113 XMLParser.ElementContext rootView = getViewNode(original, root);
316 private XMLParser.ElementContext getDataNode(XMLParser.ElementContext root) { argument
317 final List<XMLParser.ElementContext> data = filter(root, "data");
325 private XMLParser.ElementContext getViewNode(File xml, XMLParser.ElementContext root) { argument
326 final List<XMLParser.ElementContext> view = filterNot(root, "data");
327 Preconditions.check(view.size() == 1, "XML layout %s must have 1 view but has %s. root"
328 + " children count %s", xml, view.size(), root
332 filter(XMLParser.ElementContext root, String name) argument
350 filterNot(XMLParser.ElementContext root, String name) argument
446 attributeMap(XMLParser.ElementContext root) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMOTree.java52 public MOTree(String urn, String rev, OMAConstructed root) { argument
55 mRoot = root;
220 OMAConstructed root = OMANode.unmarshal(in);
222 return new MOTree(urn, version, root);
/frameworks/rs/
H A DrsScript.h93 int (* root)(); member in struct:android::renderscript::Script::Hal::DriverInfo
/frameworks/support/v4/api21/android/support/v4/app/
H A DFragmentTransitionCompat21.java43 public static Object captureExitingViews(Object exitTransition, View root, argument
46 captureTransitioningViews(viewList, root);
/frameworks/support/v4/api21/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatApi21.java78 public static boolean removeChild(Object info, View root, int virtualDescendantId) { argument
79 return ((AccessibilityNodeInfo) info).removeChild(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/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);
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
H A DParameterManagerWrapper.cpp140 void ParameterManagerWrapper::loadCriterionType(cnode *root, bool isInclusive) argument
142 ALOG_ASSERT(root != NULL, "error in parsing file");
144 for (node = root->first_child; node != NULL; node = node->next) {
185 void ParameterManagerWrapper::loadInclusiveCriterionType(cnode *root) argument
187 ALOG_ASSERT(root != NULL, "error in parsing file");
188 cnode *node = config_find(root, gInclusiveCriterionTypeTag.c_str());
195 void ParameterManagerWrapper::loadExclusiveCriterionType(cnode *root) argument
197 ALOG_ASSERT(root != NULL, "error in parsing file");
198 cnode *node = config_find(root, gExclusiveCriterionTypeTag.c_str());
205 void ParameterManagerWrapper::parseChildren(cnode *root, strin argument
240 loadCriteria(cnode *root) argument
275 loadCriterion(cnode *root) argument
293 loadConfig(cnode *root) argument
311 cnode *root; local
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManagerGlobal.java223 final ViewRootImpl root = mRoots.get(i);
224 if (name.equals(getWindowName(root))) return root.getView();
257 ViewRootImpl root;
278 // Don't wait for MSG_DIE to make it's way through root's queue.
299 root = new ViewRootImpl(view.getContext(), display);
304 mRoots.add(root);
310 root.setView(view, wparams, panelParentView);
337 ViewRootImpl root = mRoots.get(index);
340 root
406 doRemoveView(ViewRootImpl root) argument
539 getWindowName(ViewRootImpl root) argument
[all...]
H A DAccessibilityInteractionController.java149 View root = null;
151 root = mViewRootImpl.mView;
153 root = findViewByAccessibilityId(accessibilityViewId);
155 if (root != null && isShown(root)) {
156 mPrefetcher.prefetchAccessibilityNodeInfos(root, virtualDescendantId, flags, infos);
233 View root = null;
235 root = findViewByAccessibilityId(accessibilityViewId);
237 root = mViewRootImpl.mView;
239 if (root !
1000 prefetchDescendantsOfRealNode(View root, List<AccessibilityNodeInfo> outInfos) argument
1053 prefetchPredecessorsOfVirtualNode(AccessibilityNodeInfo root, View providerHost, AccessibilityNodeProvider provider, List<AccessibilityNodeInfo> outInfos) argument
1128 prefetchDescendantsOfVirtualNode(AccessibilityNodeInfo root, AccessibilityNodeProvider provider, List<AccessibilityNodeInfo> outInfos) argument
[all...]
H A DLayoutInflater.java368 * @param root Optional view to be the parent of the generated hierarchy.
369 * @return The root View of the inflated hierarchy. If root was supplied,
370 * this is the root View; otherwise it is the root of the inflated
373 public View inflate(@LayoutRes int resource, @Nullable ViewGroup root) { argument
374 return inflate(resource, root, root != null);
388 * @param root Optional view to be the parent of the generated hierarchy.
389 * @return The root Vie
393 inflate(XmlPullParser parser, @Nullable ViewGroup root) argument
414 inflate(@ayoutRes int resource, @Nullable ViewGroup root, boolean attachToRoot) argument
451 inflate(XmlPullParser parser, @Nullable ViewGroup root, boolean attachToRoot) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTimePickerSpinnerDelegate.java539 private void trySetContentDescription(View root, int viewId, int contDescResId) { argument
540 View target = root.findViewById(viewId);
/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java97 BrowserRoot root; field in class:MediaBrowserService.ConnectionRecord
186 connection.root = MediaBrowserService.this.onGetRoot(pkg, uid, rootHints);
189 if (connection.root == null) {
190 Log.i(TAG, "No root for client " + pkg + " from service "
202 callbacks.onConnect(connection.root.getRootId(),
203 mSession, connection.root.getExtras());
308 * Called to get the root information for browsing by a particular client.
311 * to access browse media information before returning the root id; it
322 * root id for browsing, or null if none. The contents of this
389 connection.callbacks.onConnect(connection.root
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDocumentsActivity.java158 // Hide roots when we're managing a specific root
282 protected void onPostExecute(RootInfo root) { argument
286 if (root != null) {
287 onRootPicked(root);
289 Log.w(TAG, "Failed to find root: " + mRootUri);
465 final RootInfo root = getCurrentRoot();
502 && (root.flags & Root.FLAG_HAS_SETTINGS) != 0);
532 // TODO: open root drawer once we can capture back key
547 final RootInfo root = getCurrentRoot();
570 DirectoryFragment.showSearch(fm, root, mStat
603 onRootPicked(RootInfo root) argument
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.cpp558 sp<XMLNode> root = XMLNode::parse(file); local
559 if (root == NULL) {
562 root->removeWhitespace(stripAll, cDataTags);
566 root->print();
569 status_t err = root->flatten(rsc, !keepComments, false);
625 if (state.root == NULL) {
629 return state.root;
1209 st->root = node;
1232 st->root = node;
/frameworks/base/tools/aapt2/
H A DXmlDom.cpp34 std::unique_ptr<xml::Node> root; member in struct:aapt::xml::Stack
65 stack->root = std::move(node);
184 stack.root = {};
190 stack.root = {};
198 return std::move(stack.root);
228 std::unique_ptr<Node> root; local
302 if (!root) {
304 root = std::move(newNode);
315 return std::move(root);
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h42 m_pNode = m_pNode->right; // should be root
72 m_pNode = m_pNode->right; // should be root
244 * \brief BinaryTreeBase gives root node and memory management.
258 /// TreeImpl - TreeImpl records the root node and the number of nodes
279 /// summon - change the final edges of pClient to our root
297 // - the pointer of root
402 iterator root() { return iterator(&(BinaryTreeBase<DataType>::m_Root.node)); } function in class:mcld::BinaryTree
404 const_iterator root() const { function in class:mcld::BinaryTree
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DItemBridgeAdapter.java54 public abstract View createWrapper(View root); argument
/frameworks/support/v4/java/android/support/v4/view/accessibility/
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/av/media/libeffects/factory/
H A DEffectsFactory.c54 static int loadLibraries(cnode *root);
55 static int loadLibrary(cnode *root, const char *name);
56 static int loadEffects(cnode *root);
59 static int addSubEffect(cnode *root);
474 cnode *root; local
481 root = config_node("", "");
482 config_load(root, data);
483 loadLibraries(root);
484 loadEffects(root);
485 config_free(root);
492 loadLibraries(cnode *root) argument
508 loadLibrary(cnode *root, const char *name) argument
589 addSubEffect(cnode *root) argument
645 loadEffects(cnode *root) argument
661 loadEffect(cnode *root) argument
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioPort.cpp288 void AudioPort::loadGain(cnode *root, int index) argument
290 cnode *node = root->first_child;
334 void AudioPort::loadGains(cnode *root) argument
336 cnode *node = root->first_child;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuPopupHelper.java279 public MenuView getMenuView(ViewGroup root) { argument
/frameworks/base/media/java/android/media/browse/
H A DMediaBrowser.java89 * to the media browse service when connecting and retrieving the root id
242 * Gets the root id.
244 * Note that the root id may become invalid or change when when the
443 final String root, final MediaSession.Token session, final Bundle extra) {
458 mRootId = root;
874 public void onConnect(final String root, final MediaSession.Token session, argument
878 mediaBrowser.onServiceConnected(this, root, session, extras);
442 onServiceConnected(final IMediaBrowserServiceCallbacks callback, final String root, final MediaSession.Token session, final Bundle extra) argument

Completed in 1717 milliseconds

12345