Searched refs:root (Results 51 - 75 of 145) sorted by relevance

123456

/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfoCache.java211 * @param rootNodeId The root id.
269 // Get the root.
275 // which node we start to search for the root.
276 AccessibilityNodeInfo root = mCacheImpl.valueAt(0);
277 AccessibilityNodeInfo parent = root;
279 root = parent;
284 final int windowId = root.getWindowId();
289 fringe.add(root);
H A DAccessibilityNodeInfo.java409 * Sets the source to be a virtual descendant of the given <code>root</code>.
410 * If <code>virtualDescendantId</code> is {@link View#NO_ID} the root
424 * @param root The root of the virtual subtree.
427 public void setSource(View root, int virtualDescendantId) { argument
429 mWindowId = (root != null) ? root.getAccessibilityWindowId() : UNDEFINED;
431 (root != null) ? root.getAccessibilityViewId() : UNDEFINED;
549 * Adds a virtual child which is a descendant of the given <code>root</cod
562 addChild(View root, int virtualDescendantId) argument
771 setParent(View root, int virtualDescendantId) argument
1266 setLabelFor(View root, int virtualDescendantId) argument
1323 setLabeledBy(View root, int virtualDescendantId) argument
1508 obtain(View root, int virtualDescendantId) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java38 public Object obtain(View root, int virtualDescendantId); argument
40 public void setSource(Object info, View root, int virtualDescendantId); argument
56 public void setParent(Object info, View root, int virtualDescendantId); argument
109 public Object obtain(View root, int virtualDescendantId) { argument
369 public void setSource(Object info, View root, int virtualDescendantId) { argument
394 public void setParent(Object info, View root, int virtualDescendantId) { argument
638 public Object obtain(View root, int virtualDescendantId) { argument
639 return AccessibilityNodeInfoCompatJellyBean.obtain(root, virtualDescendantId);
658 public void setSource(Object info, View root, int virtualDescendantId) { argument
659 AccessibilityNodeInfoCompatJellyBean.setSource(info, root, virtualDescendantI
698 setParent(Object info, View root, int virtualDescendantId) argument
962 obtain(View root, int virtualDescendantId) argument
1015 setSource(View root, int virtualDescendantId) argument
1116 addChild(View root, int virtualDescendantId) argument
1278 setParent(View root, int virtualDescendantId) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewDebug.java428 private static View findView(View root, String parameter) { argument
435 View view = root.getRootView();
441 final int id = root.getResources().getIdentifier(parameter, null, null);
442 return root.getRootView().findViewById(id);
448 private static void invalidate(View root, String parameter) { argument
449 final View view = findView(root, parameter);
455 private static void requestLayout(View root, String parameter) { argument
456 final View view = findView(root, parameter);
458 root.post(new Runnable() {
466 private static void profile(View root, OutputStrea argument
496 profileViewAndChildren(final View view, BufferedWriter out, boolean root) argument
626 captureLayers(View root, final DataOutputStream clientStream) argument
693 outputDisplayList(View root, String parameter) argument
698 capture(View root, final OutputStream clientStream, String parameter) argument
755 dump(View root, OutputStream clientStream) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java194 public abstract void apply(View root, ViewGroup rootParent, argument
303 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { argument
304 final View view = root.findViewById(viewId);
309 final View emptyView = root.findViewById(emptyViewId);
338 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) { argument
339 final View target = root.findViewById(viewId);
347 if (target == root) {
422 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) { argument
423 final View target = root.findViewById(viewId);
508 public void apply(View root, ViewGrou argument
581 apply(View root, ViewGroup rootParent, final OnClickHandler handler) argument
691 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
753 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
889 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1114 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1216 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1290 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1335 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
1382 apply(View root, ViewGroup rootParent, OnClickHandler handler) argument
[all...]
/frameworks/av/services/audioflinger/
H A DAudioPolicyService.h291 status_t loadEffects(cnode *root, Vector <EffectDesc *>& effects);
292 EffectDesc *loadEffect(cnode *root);
293 status_t loadInputSources(cnode *root, const Vector <EffectDesc *>& effects);
295 InputSourceDesc *loadInputSource(cnode *root, const Vector <EffectDesc *>& effects);
296 void loadEffectParameters(cnode *root, Vector <effect_param_t *>& params);
297 effect_param_t *loadEffectParameter(cnode *root);
H A DAudioPolicyService.cpp1137 effect_param_t *AudioPolicyService::loadEffectParameter(cnode *root) argument
1145 param = config_find(root, PARAM_TAG);
1146 value = config_find(root, VALUE_TAG);
1149 param = root->first_child;
1163 ALOGW("loadEffectParameter() invalid parameter description %s", root->name);
1201 void AudioPolicyService::loadEffectParameters(cnode *root, Vector <effect_param_t *>& params) argument
1203 cnode *node = root->first_child;
1217 cnode *root,
1220 cnode *node = root->first_child;
1222 ALOGW("loadInputSource() empty element %s", root
1216 loadInputSource( cnode *root, const Vector <EffectDesc *>& effects) argument
1253 loadInputSources(cnode *root, const Vector <EffectDesc *>& effects) argument
1279 loadEffect(cnode *root) argument
1293 loadEffects(cnode *root, Vector <EffectDesc *>& effects) argument
1315 cnode *root; local
[all...]
/frameworks/base/cmds/am/
H A DAndroid.mk19 # the installation root
/frameworks/base/cmds/content/
H A DAndroid.mk21 # the installation root
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java1369 public static void addToTrie(TrieNode root, String str, String value) { argument
1372 root = root.getOrCreateChild(str.charAt(index++));
1374 root.setValue(value);
1381 private static boolean matches(TrieNode root, String str) { argument
1384 root = root.getChild(str.charAt(index++));
1385 if (root == null) {
1387 } else if (root.exists()) {
1399 TrieNode root, AbstractMessageParse
1398 longestMatch( TrieNode root, AbstractMessageParser p, int start) argument
1408 longestMatch( TrieNode root, AbstractMessageParser p, int start, boolean smiley) argument
[all...]
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A Dlevels.rsh24 uchar4 __attribute__((kernel)) root(uchar4 in, uint32_t x, uint32_t y) {
H A Dconvolve3x3.fs27 uchar4 __attribute__((kernel)) root(uint32_t x, uint32_t y) {
H A Dfisheye.rsh45 uchar4 __attribute__((kernel)) root(uint32_t x, uint32_t y) {
H A Dfisheye_approx.rsh45 uchar4 __attribute__((kernel)) root(uint32_t x, uint32_t y) {
H A Dvignette.rsh47 uchar4 __attribute__((kernel)) root(uchar4 in, uint32_t x, uint32_t y) {
H A Dvignette_approx.rsh47 uchar4 __attribute__((kernel)) root(uchar4 in, uint32_t x, uint32_t y) {
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A Dlevels.rsh24 void root(const uchar4 *in, uchar4 *out, uint32_t x, uint32_t y) {
H A Dvignette.rsh47 void root(const uchar4 *in, uchar4 *out, uint32_t x, uint32_t y) {
H A Dconvolve3x3.rs27 void root(uchar4 *out, uint32_t x, uint32_t y) {
H A Dfisheye.rsh45 void root(uchar4 *out, uint32_t x, uint32_t y) {
H A Dfisheye_approx.rsh45 void root(uchar4 *out, uint32_t x, uint32_t y) {
/frameworks/base/tools/preload/
H A DPrintCsv.java40 Root root = Root.fromFile(args[0]);
46 for (LoadedClass loadedClass : root.loadedClasses.values()) {
H A DMemoryUsage.java289 Root root = Root.fromFile(args[0]);
290 root.baseline = baseline();
291 for (LoadedClass loadedClass : root.loadedClasses.values()) {
296 root.toFile(args[0]);
/frameworks/compile/libbcc/tests/
H A Dtest.py95 for root, dirs, files in os.walk("data"):
97 adb(["shell", "mkdir", os.path.join(root, d)])
99 adb(["push", os.path.join(root, f), os.path.join("/system/bin/bccdata", root, f)])
/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);

Completed in 350 milliseconds

123456