Searched defs:root (Results 1 - 25 of 53) sorted by relevance

123

/frameworks/compile/llvm-ndk-cc/tests/F_asm/
H A Dasm.c1 void root() { function
/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/compile/mclinker/unittests/
H A DPathTest.cpp46 const std::string root = "/etc/hosts"; local
47 m_pTestee->assign(root);
51 m_pTestee = new Path(root);
56 const std::string root = "/luck"; local
57 m_pTestee->assign(root);
61 m_pTestee = new Path(root);
66 // const std::string root = "/proj/mtk03931/temp/pndk-luba/../";
67 const std::string root = "../././.."; local
68 m_pTestee->assign(root);
72 m_pTestee = new Path(root);
78 const std::string root = "/luck"; local
89 const std::string root = "aaa/bbb/../../ccc/"; local
103 const std::string root = "aa/"; local
117 const std::string root = "aa/"; local
[all...]
/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/base/services/java/com/android/server/am/
H A DTaskAccessInfo.java30 public ActivityRecord root; field in class:TaskAccessInfo
/frameworks/base/tools/preload/
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()) {
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DLinearRegression.cpp87 float root = sqrt(T * T * 0.25 - D); local
89 float L1 = T * 0.5 - root;
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DHorizontalFocusSearch.java102 private Button addShort(LinearLayout root, String label, boolean atBottom) { argument
126 root.addView(ll);
130 root.addView(ll);
H A DVerticalFocusSearch.java113 * @param root The layout to add the button to.
118 private Button addSkinny(LinearLayout root, String label, boolean atRight) { argument
142 root.addView(ll);
146 root.addView(ll);
H A DVerticalFocusSearchTest.java49 View findNextFocus(ViewGroup root, View focused, int direction); argument
55 public View findNextFocus(ViewGroup root, View focused, int direction) { argument
57 .findNextFocus(root, focused, direction);
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DBridgeInflater.java155 public View inflate(int resource, ViewGroup root) { argument
184 return inflate(bridgeParser, root);
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoDumper.java66 * @param root The root accessibility node.
69 public static void dumpWindowToFile(AccessibilityNodeInfo root, File dumpFile) { argument
70 if (root == null) {
84 dumpNodeRec(root, serializer, 0);
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Doper_32b.c235 if ((0x40000000l >> shift) + root <= value) \
237 value -= (0x40000000l >> shift) + root; \
238 root = (root >> 1) | (0x40000000l >> shift); \
240 root = root >> 1; \
243 Word32 rsqrt(Word32 value, /*!< Operand to square root (0.0 ... 1) */
246 Word32 root = 0; local
263 if (root < value)
264 ++root;
[all...]
/frameworks/base/core/java/android/util/
H A DJsonWriter.java492 * @param root true if the value is a new array or object, the two values
495 private void beforeValue(boolean root) throws IOException { argument
498 if (!lenient && !root) {
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuPresenter.java66 * @param root Intended parent of the MenuView.
69 public MenuView getMenuView(ViewGroup root); argument
H A DBaseMenuPresenter.java68 public MenuView getMenuView(ViewGroup root) { argument
70 mMenuView = (MenuView) mSystemInflater.inflate(mMenuLayoutRes, root, false);
H A DListMenuPresenter.java97 public MenuView getMenuView(ViewGroup root) { argument
100 com.android.internal.R.layout.expanded_menu_layout, root, false);
/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/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/compile/mclinker/lib/CodeGen/
H A DSectLinker.cpp248 // root : the parent node who being inserted.
252 // insert the options in current root.
257 InputTree::iterator root = info.inputs().root(); local
271 info.inputs().insert(root, *move,
276 info.setBitcode(**root);
278 // move root on the new created node.
279 move->move(root);
291 info.inputs().insert(root, *move,
295 // move root o
[all...]
/frameworks/rs/
H A DrsScript.h74 int (* root)(); member in struct:android::renderscript::Script::Hal::DriverInfo
/frameworks/support/renderscript/v8/rs_support/
H A DrsScript.h69 int (* root)(); member in struct:android::renderscript::Script::Hal::DriverInfo
/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
190 setFocusBottomRight(ViewGroup root, Rect focusedRect) argument
196 setFocusTopLeft(ViewGroup root, Rect focusedRect) argument
202 findNextFocusInAbsoluteDirection(ArrayList<View> focusables, ViewGroup root, View focused, Rect focusedRect, int direction) argument
242 getForwardFocusable(ViewGroup root, View focused, ArrayList<View> focusables, int count) argument
262 getBackwardFocusable(ViewGroup root, View focused, ArrayList<View> focusables, int count) argument
526 findNearestTouchable(ViewGroup root, int x, int y, int direction, int[] deltas) argument
627 setRoot(ViewGroup root) argument
[all...]

Completed in 5473 milliseconds

123