Searched refs:root (Results 26 - 50 of 145) sorted by relevance

123456

/frameworks/native/opengl/libs/GLES_trace/
H A Ddev.make10 adb root
/frameworks/base/sax/java/android/sax/
H A DRootElement.java26 * The root XML element. The entry point for this API. Not safe for concurrent
46 * RootElement root = new RootElement(ATOM_NAMESPACE, "feed");
47 * Element entry = root.getChild(ATOM_NAMESPACE, "entry");
56 * reader.setContentHandler(root.getContentHandler());
71 * Constructs a new root element with the given name.
81 * Constructs a new root element with the given name. Uses an empty string
115 // This is the root element.
142 Element root = RootElement.this;
143 if (root.uri.compareTo(uri) != 0
144 || root
[all...]
/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/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/compile/mclinker/unittests/
H A DBinTreeTest.cpp50 BinaryTree<int>::iterator pos = m_pTestee->root();
60 BinaryTree<int>::iterator pos2 = mergeTree->root();
74 BinaryTree<int>::iterator pos = m_pTestee->root();
93 BinaryTree<int>::iterator pos = m_pTestee->root();
103 BinaryTree<int>::iterator pos2 = mergeTree->root();
113 BinaryTree<int>::iterator pos = m_pTestee->root();
116 BinaryTree<int>::iterator pos2 = mergeTree->root();
128 BinaryTree<int>::iterator pos = m_pTestee->root();
158 BinaryTree<int>::iterator pos = m_pTestee->root();
188 BinaryTree<int>::iterator pos = m_pTestee->root();
[all...]
H A DInputTreeTest.cpp48 InputTree::iterator node = m_pTestee->root();
75 InputTree::iterator node = m_pTestee->root();
100 InputTree::iterator node = m_pTestee->root();
121 InputTree::iterator node = m_pTestee->root();
/frameworks/base/tools/preload/
H A DPrintHtmlDiff.java36 Root root = Root.fromFile(args[0]);
43 for (Proc proc : root.processes.values()) {
55 for (LoadedClass loadedClass : root.loadedClasses.values()) {
64 LoadedClass clazz = root.loadedClasses.get(line);
81 printTable(out, root.baseline, added);
83 printTable(out, root.baseline, removed);
/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java250 ViewRootImpl root = view.getViewRootImpl();
251 if (root != null) {
252 root.dispatchUnhandledKey(event);
/frameworks/base/core/java/android/app/
H A DListFragment.java384 View root = getView();
385 if (root == null) {
388 if (root instanceof ListView) {
389 mList = (ListView)root;
391 mStandardEmptyView = (TextView)root.findViewById(
394 mEmptyView = root.findViewById(android.R.id.empty);
398 mProgressContainer = root.findViewById(com.android.internal.R.id.progressContainer);
399 mListContainer = root.findViewById(com.android.internal.R.id.listContainer);
400 View rawListView = root.findViewById(android.R.id.list);
/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/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A Dcolormatrix.fs32 uchar4 __attribute__((kernel)) root(uchar4 in) {
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A Dcolormatrix.rs32 void root(const uchar4 *in, uchar4 *out) {
/frameworks/base/tests/RenderScriptTests/SurfaceTexture/src/com/example/android/rs/sto/
H A Dsto.rs30 int root() {
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c49 static int loadLibraries(cnode *root);
50 static int loadLibrary(cnode *root, const char *name);
51 static int loadEffects(cnode *root);
410 cnode *root; local
417 root = config_node("", "");
418 config_load(root, data);
419 loadLibraries(root);
420 loadEffects(root);
421 config_free(root);
422 free(root);
428 loadLibraries(cnode *root) argument
444 loadLibrary(cnode *root, const char *name) argument
506 loadEffects(cnode *root) argument
522 loadEffect(cnode *root) argument
[all...]
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java346 * @param root Optional view to be the parent of the generated hierarchy.
347 * @return The root View of the inflated hierarchy. If root was supplied,
348 * this is the root View; otherwise it is the root of the inflated
351 public View inflate(int resource, ViewGroup root) { argument
352 return inflate(resource, root, root != null);
366 * @param root Optional view to be the parent of the generated hierarchy.
367 * @return The root Vie
371 inflate(XmlPullParser parser, ViewGroup root) argument
392 inflate(int resource, ViewGroup root, boolean attachToRoot) argument
424 inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) argument
[all...]
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java91 RootElement root = new RootElement(ATOM_NAMESPACE, "feed");
92 Element entry = root.requireChild(ATOM_NAMESPACE, "entry");
99 root.setElementListener(rootCounter);
103 Xml.parse(xml, root.getContentHandler());
116 RootElement root = new RootElement("feed");
117 root.requireChild("entry");
120 Xml.parse(xml, root.getContentHandler());
131 RootElement root = new RootElement("feed");
132 root.setEndTextElementListener(new EndTextElementListener() {
138 Xml.parse(xml, root
[all...]
/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/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
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
H A DTransformTestActivity.java52 LinearLayout root = new LinearLayout(this);
53 root.setOrientation(LinearLayout.VERTICAL);
60 root.addView(view);
61 setContentView(root);
/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/tests/RenderScriptTests/SampleTest/src/com/android/rs/sample/
H A Dsample.rs31 void root(uchar4 *out, uint32_t x, uint32_t y) {
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java123 * Sets the source to be a virtual descendant of the given <code>root</code>.
124 * If <code>virtualDescendantId</code> equals to {@link View#NO_ID} the root
133 * @param root The root of the virtual subtree.
136 public void setSource(View root, int virtualDescendantId) { argument
140 important = (root != null) ? root.isImportantForAccessibility() : true;
145 mSourceWindowId = (root != null) ? root.getAccessibilityWindowId() : UNDEFINED;
146 final int rootViewId = (root !
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DCameraWidgetFrame.java214 final View root = getRootView();
215 final int width = root.getWidth();
216 final int height = root.getHeight();
265 final ViewGroup root = (ViewGroup) getRootView();
269 root.addView(mFullscreenPreview);
272 root.getWindowVisibleDisplayFrame(mTmpRect);
421 View root = getRootView();
422 ViewGroup.LayoutParams lp = root.getLayoutParams();
431 mWindowManager.updateViewLayout(root, wlp);

Completed in 712 milliseconds

123456