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

1234

/frameworks/rs/
H A DrsScript.h78 int (* root)(); member in struct:android::renderscript::Script::Hal::DriverInfo
/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/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);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuPresenter.java70 * @param root Intended parent of the MenuView.
73 public MenuView getMenuView(ViewGroup root); argument
H A DBaseMenuPresenter.java72 public MenuView getMenuView(ViewGroup root) { argument
74 mMenuView = (MenuView) mSystemInflater.inflate(mMenuLayoutRes, root, false);
/frameworks/av/services/audiopolicy/
H A DAudioPolicyEffects.cpp438 effect_param_t *AudioPolicyEffects::loadEffectParameter(cnode *root) argument
446 param = config_find(root, PARAM_TAG);
447 value = config_find(root, VALUE_TAG);
450 param = root->first_child;
464 ALOGW("loadEffectParameter() invalid parameter description %s", root->name);
502 void AudioPolicyEffects::loadEffectParameters(cnode *root, Vector <effect_param_t *>& params) argument
504 cnode *node = root->first_child;
519 cnode *root,
522 cnode *node = root->first_child;
524 ALOGW("loadInputSource() empty element %s", root
518 loadEffectConfig( cnode *root, const Vector <EffectDesc *>& effects) argument
556 loadInputEffectConfigurations(cnode *root, const Vector <EffectDesc *>& effects) argument
583 loadStreamEffectConfigurations(cnode *root, const Vector <EffectDesc *>& effects) argument
610 loadEffect(cnode *root) argument
624 loadEffects(cnode *root, Vector <EffectDesc *>& effects) argument
646 cnode *root; local
[all...]
/frameworks/base/core/java/android/ddm/
H A DDdmHandleViewDebug.java50 /** Operation on view root, first parameter in packet should be one of VURT_* constants */
140 return createFailChunk(ERR_INVALID_OP, "Unknown view root operation: " + op);
206 private View getTargetView(View root, ByteBuffer in) { argument
217 return ViewDebug.findView(root, viewName);
226 * TODO: Currently this only returns views starting at the root, need to fix so that
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java214 * @param root Optional parent of the generated hierarchy.
215 * @return The root of the inflated hierarchy. If root was supplied,
216 * this is the root item; otherwise it is the root of the inflated
219 public T inflate(int resource, P root) { argument
220 return inflate(resource, root, root != null);
234 * @param root Optional parent of the generated hierarchy.
235 * @return The root o
239 inflate(XmlPullParser parser, P root) argument
259 inflate(int resource, P root, boolean attachToRoot) argument
290 inflate(XmlPullParser parser, P root, boolean attachToRoot) argument
[all...]
/frameworks/base/core/java/android/view/
H A DFocusFinder.java57 * Find the next view to take focus in root's descendants, starting from the view
59 * @param root Contains focused. Cannot be null.
64 public final View findNextFocus(ViewGroup root, View focused, int direction) { argument
65 return findNextFocus(root, focused, null, direction);
69 * Find the next view to take focus in root's descendants, searching from
70 * a particular rectangle in root's coordinates.
71 * @param root Contains focusedRect. Cannot be null.
76 public View findNextFocusFromRect(ViewGroup root, Rect focusedRect, int direction) { argument
78 return findNextFocus(root, null, mFocusedRect, direction);
81 private View findNextFocus(ViewGroup root, Vie argument
102 findNextUserSpecifiedFocus(ViewGroup root, View focused, int direction) argument
113 findNextFocus(ViewGroup root, View focused, Rect focusedRect, int direction, ArrayList<View> focusables) argument
170 findNextFocusInRelativeDirection(ArrayList<View> focusables, ViewGroup root, View focused, Rect focusedRect, int direction) argument
191 setFocusBottomRight(ViewGroup root, Rect focusedRect) argument
197 setFocusTopLeft(ViewGroup root, Rect focusedRect) argument
203 findNextFocusInAbsoluteDirection(ArrayList<View> focusables, ViewGroup root, View focused, Rect focusedRect, int direction) argument
513 findNearestTouchable(ViewGroup root, int x, int y, int direction, int[] deltas) argument
615 setRoot(ViewGroup root) argument
[all...]
H A DLayoutInflater.java359 * @param root Optional view to be the parent of the generated hierarchy.
360 * @return The root View of the inflated hierarchy. If root was supplied,
361 * this is the root View; otherwise it is the root of the inflated
364 public View inflate(int resource, ViewGroup root) { argument
365 return inflate(resource, root, root != null);
379 * @param root Optional view to be the parent of the generated hierarchy.
380 * @return The root Vie
384 inflate(XmlPullParser parser, ViewGroup root) argument
405 inflate(int resource, ViewGroup root, boolean attachToRoot) argument
442 inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) argument
[all...]
H A DWindowManagerGlobal.java196 final ViewRootImpl root = mRoots.get(i);
197 if (name.equals(getWindowName(root))) return root.getView();
229 ViewRootImpl root;
250 // Don't wait for MSG_DIE to make it's way through root's queue.
271 root = new ViewRootImpl(view.getContext(), display);
276 mRoots.add(root);
282 root.setView(view, wparams, panelParentView);
309 ViewRootImpl root = mRoots.get(index);
312 root
378 doRemoveView(ViewRootImpl root) argument
511 getWindowName(ViewRootImpl root) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DBaseMenuPresenter.java68 public MenuView getMenuView(ViewGroup root) { argument
70 mMenuView = (MenuView) mSystemInflater.inflate(mMenuLayoutRes, root, false);
H A DListMenuPresenter.java96 public MenuView getMenuView(ViewGroup root) { argument
99 com.android.internal.R.layout.expanded_menu_layout, root, false);
/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java89 BrowserRoot root; field in class:MediaBrowserService.ConnectionRecord
177 connection.root = MediaBrowserService.this.onGetRoot(pkg, uid, rootHints);
180 if (connection.root == null) {
181 Log.i(TAG, "No root for client " + pkg + " from service "
193 callbacks.onConnect(connection.root.getRootId(),
194 mSession, connection.root.getExtras());
285 * Called to get the root information for browsing by a particular client.
289 * the root id; it should return null if the client is not
298 * to the media browse service when connecting and retrieving the root id
341 connection.callbacks.onConnect(connection.root
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsCache.java103 // Special root for recents
263 final RootInfo root = RootInfo.fromRootsCursor(authority, cursor);
264 roots.add(root);
282 RootInfo root = getRootLocked(authority, rootId);
283 if (root == null) {
286 root = getRootLocked(authority, rootId);
288 return root;
301 for (RootInfo root : mRoots.get(authority)) {
302 if (Objects.equals(root.rootId, rootId)) {
303 return root;
309 isIconUniqueBlocking(RootInfo root) argument
331 isRecentsRoot(RootInfo root) argument
[all...]
H A DRootsFragment.java156 final RootInfo root = ((DocumentsActivity) getActivity()).getCurrentRoot();
160 final RootInfo testRoot = ((RootItem) item).root;
161 if (Objects.equals(testRoot, root)) {
182 activity.onRootPicked(((RootItem) item).root, true);
186 throw new IllegalStateException("Unknown root: " + item);
224 public final RootInfo root; field in class:RootsFragment.RootItem
226 public RootItem(RootInfo root) { argument
228 this.root = root;
238 icon.setImageDrawable(root
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.h151 sp<XMLNode> root; member in struct:XMLNode::ParseState
/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/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/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/base/core/java/android/widget/
H A DTimePickerSpinnerDelegate.java551 private void trySetContentDescription(View root, int viewId, int contDescResId) { argument
552 View target = root.findViewById(viewId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSignalClusterView.java329 ViewGroup root = (ViewGroup) LayoutInflater.from(context)
331 setViews(root);
335 public void setViews(ViewGroup root) { argument
336 mMobileGroup = root;
337 mMobile = (ImageView) root.findViewById(R.id.mobile_signal);
338 mMobileType = (ImageView) root.findViewById(R.id.mobile_type);
/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/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...]

Completed in 4733 milliseconds

1234