Searched refs:root (Results 1 - 25 of 261) sorted by relevance

1234567891011

/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DAssignableFrom.java23 private final Class root; field in class:AssignableFrom
25 AssignableFrom(Class root) { argument
26 this.root = root;
30 return root.isAssignableFrom(testMethod.getEnclosingClass());
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A Dcopy.rs20 uchar4 RS_KERNEL root(uchar4 v_in) {
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A Dcopy.rs20 uchar4 RS_KERNEL root(uchar4 v_in) {
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A Dcopy.rs20 uchar4 RS_KERNEL root(uchar4 v_in) {
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDocumentStack.java40 public RootInfo root; field in class:DocumentStack
43 if (size() == 1 && root != null) {
44 return root.title;
57 for (RootInfo root : matchingRoots) {
58 if (root.equals(this.root)) {
59 this.root = root;
63 throw new FileNotFoundException("Failed to find matching root for " + root);
[all...]
H A DRootInfo.java129 final RootInfo root = new RootInfo();
130 DurableUtils.readFromParcel(in, root);
131 return root;
141 final RootInfo root = new RootInfo();
142 root.authority = authority;
143 root.rootId = getCursorString(cursor, Root.COLUMN_ROOT_ID);
144 root.flags = getCursorInt(cursor, Root.COLUMN_FLAGS);
145 root.icon = getCursorInt(cursor, Root.COLUMN_ICON);
146 root.title = getCursorString(cursor, Root.COLUMN_TITLE);
147 root
[all...]
/frameworks/base/tests/backup/
H A Dtest_backup_common.sh22 # restart adb as root and wait for it to come back again
25 root_status=$(a root)
26 if [ "$root_status" != "adbd is already running as root" ]; then
27 echo -n "Restarting adb as root..."
/frameworks/compile/mclinker/unittests/
H A DPathTest.cpp41 std::string root(TOPDIR);
42 root += "/test/lit.cfg";
43 m_pTestee->assign(root);
47 m_pTestee = new Path(root);
52 const std::string root = "/luck"; local
53 m_pTestee->assign(root);
57 m_pTestee = new Path(root);
62 const std::string root = "../././.."; local
63 m_pTestee->assign(root);
67 m_pTestee = new Path(root);
73 const std::string root = "/luck"; local
84 const std::string root = "aaa/bbb/../../ccc/"; local
98 const std::string root = "aa/"; local
111 const std::string root = "aa/"; local
[all...]
/frameworks/av/services/audioflinger/tests/
H A Drun_all_unit_tests.sh9 adb root && adb wait-for-device remount
/frameworks/native/opengl/libs/GLES_trace/
H A Ddev.make5 adb root
/frameworks/rs/tests/latency/
H A Dlatency.rs21 void root(const uint32_t *v_in, uint32_t *v_out) {
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompatJellyBean.java27 public static void setSource(Object record, View root, int virtualDescendantId) { argument
28 ((AccessibilityRecord) record).setSource(root, virtualDescendantId);
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/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualActivity.java34 View root = getLayoutInflater().inflate(R.layout.gldual_activity, null);
35 mGLView = (GLSurfaceView) root.findViewById(R.id.gl1);
38 mGL2View = (GLDualGL2View) root.findViewById(R.id.gl2);
39 setContentView(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/jellybean-mr1/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellybeanMr1.java28 public static void setLabelFor(Object info, View root, int virtualDescendantId) { argument
29 ((AccessibilityNodeInfo) info).setLabelFor(root, virtualDescendantId);
40 public static void setLabeledBy(Object info, View root, int virtualDescendantId) { argument
41 ((AccessibilityNodeInfo) info).setLabeledBy(root, virtualDescendantId);
/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/aapt2/
H A DXmlFlattener.h35 bool flatten(Node* root, const std::u16string& defaultPackage, BigBuffer* outBuffer);
61 Maybe<size_t> flattenAndLink(const Source& source, Node* root,
/frameworks/base/services/tests/servicestests/src/com/android/server/content/
H A DObserverNodeTest.java40 ObserverNode root = new ObserverNode("");
55 root.addObserverLocked(uris[0], new TestObserver().getContentObserver(), false, root,
58 root.addObserverLocked(uris[i], new TestObserver().getContentObserver(), true, root,
65 root.collectObserversLocked(uris[i], 0, null, false, myUserHandle, calls);
74 ObserverNode root = new ObserverNode("");
88 root.addObserverLocked(uris[i], new TestObserver().getContentObserver(), false, root,
95 root
[all...]
/frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/
H A DDpiTestActivity.java82 LinearLayout root = new LinearLayout(this);
83 root.setOrientation(LinearLayout.VERTICAL);
89 addLabelToRoot(root, "Prescaled bitmap in drawable");
90 addChildToRoot(root, layout);
96 addLabelToRoot(root, "Autoscaled bitmap in drawable");
97 addChildToRoot(root, layout);
103 addLabelToRoot(root, "Prescaled resource drawable");
104 addChildToRoot(root, layout);
107 addLabelToRoot(root, "Inflated layout");
108 addChildToRoot(root, layou
152 addLabelToRoot(LinearLayout root, String text) argument
159 addChildToRoot(LinearLayout root, LinearLayout layout) argument
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DViewWithTagTest.java34 ViewGroup root = (ViewGroup) binder.getRoot();
35 View view1 = root.getChildAt(0);
36 View view2 = root.getChildAt(1);
/frameworks/base/packages/DocumentsUI/
H A Dwrap_alpha.py7 for root, dirs, files in os.walk('.'):
8 if "res/drawable-" not in root: continue
14 os.rename(os.path.join(root, before), os.path.join(root, after))
18 for root, dirs, files in os.walk('.'):
19 if "res/drawable-" not in root: continue
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintProgressFragment.java36 public View onCreateView(LayoutInflater inflater, ViewGroup root, Bundle state) { argument
37 return inflater.inflate(R.layout.print_progress_fragment, root, false);
/frameworks/base/tools/preload/
H A DPrintPsTree.java38 Root root = (Root) oin.readObject();
40 for (Proc proc : root.processes.values()) {
H A DWritePreloadedClassFile.java49 Root root = Root.fromFile(rootFile);
52 for (LoadedClass loadedClass : root.loadedClasses.values()) {
80 for (LoadedClass loadedClass : root.loadedClasses.values()) {
98 for (Proc proc : root.processes.values()) {
118 addAllClassesFrom("zygote", root, toPreload);
130 root.toFile(rootFile);
133 private static void addAllClassesFrom(String processName, Root root, argument
135 for (Proc proc : root.processes.values()) {

Completed in 2890 milliseconds

1234567891011