HomeSort by relevance Sort by last modified time
    Searched defs:root (Results 76 - 100 of 350) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/test/java/tests/xml/
SimpleBuilderTest.java 71 Element root = document.getDocumentElement(); local
72 assertNotNull(root);
73 assertEquals("http://www.foo.bar", root.getNamespaceURI());
74 assertEquals("t", root.getPrefix());
75 assertEquals("stuff", root.getLocalName());
77 NodeList list = root.getElementsByTagName("nestedStuff");
129 Element root = document.getDocumentElement(); local
130 assertNotNull(root);
  /packages/apps/Camera/src/com/android/camera/ui/
AbstractIndicator.java 47 protected void render(GLRootView root, GL11 gl) {
54 Transformation trans = root.pushTransform();
58 icon.draw(root, -icon.getWidth() / 2, -icon.getHeight() / 2);
59 root.popTransform();
61 icon.draw(root,
BasicTexture.java 68 public void draw(GLRootView root, int x, int y) {
69 root.drawTexture(this, x, y, mWidth, mHeight);
72 public void draw(GLRootView root, int x, int y, int w, int h) {
73 root.drawTexture(this, x, y, w, h);
76 abstract protected boolean bind(GLRootView root, GL11 gl);
CameraHeadUpDisplay.java 100 GLRootView root = getGLRootView(); local
101 if (root != null) {
102 synchronized (root) {
111 GLRootView root = getGLRootView(); local
112 if (root != null) {
113 synchronized (root) {
127 GLRootView root = getGLRootView(); local
128 if (root != null) {
129 synchronized(root) {
GLView.java 66 GLRootView root = getGLRootView(); local
67 if (root == null) throw new IllegalStateException();
73 root.registerLaunchedAnimation(animation);
176 GLRootView root = getGLRootView(); local
177 if (root != null) root.requestRender();
186 GLRootView root = getGLRootView(); local
187 if (root != null) root.requestLayoutContentPane();
204 protected void renderChild(GLRootView root, GL11 gl, GLView component)
    [all...]
  /packages/apps/Settings/src/com/android/settings/vpn/
VpnTypeSelection.java 54 PreferenceScreen root = getPreferenceScreen(); local
64 root.addPreference(pref);
  /cts/tools/host/test/com/android/cts/
CtsTestBase.java 32 protected static final String ROOT = "tmp";
33 protected static final String CONFIG_PATH = ROOT + File.separator + "host_config.xml";
42 // create root direcoty for the test
43 new File(ROOT).mkdirs();
46 Log.initLog(ROOT);
53 clearDirectory(ROOT);
63 buf.append("\t<Repository root=\"" + ROOT + "\" >");
70 new File(ROOT + File.separator + PLAN_REPOSITORY).mkdirs();
71 new File(ROOT + File.separator + CASE_REPOSITORY).mkdirs()
151 File root = new File(path); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
DensityActivity.java 52 LinearLayout root = new LinearLayout(this); local
53 root.setOrientation(LinearLayout.VERTICAL);
59 addLabelToRoot(root, "Prescaled bitmap in drawable");
60 addChildToRoot(root, layout);
66 addLabelToRoot(root, "Autoscaled bitmap in drawable");
67 addChildToRoot(root, layout);
73 addLabelToRoot(root, "Prescaled resource drawable");
74 addChildToRoot(root, layout);
77 addLabelToRoot(root, "Inflated layout");
78 addChildToRoot(root, layout)
    [all...]
  /frameworks/base/core/java/android/view/
FocusFinder.java 52 * Find the next view to take focus in root's descendants, starting from the view
54 * @param root Contains focused
59 public final View findNextFocus(ViewGroup root, View focused, int direction) {
63 View userSetNextFocus = focused.findUserSetNextFocus(root, direction);
73 root.offsetDescendantRectToMyCoords(focused, mFocusedRect);
75 // make up a rect at top left or bottom right of root
79 final int rootTop = root.getScrollY();
80 final int rootLeft = root.getScrollX();
86 final int rootBottom = root.getScrollY() + root.getHeight()
    [all...]
  /frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/
DpiTestActivity.java 80 LinearLayout root = new LinearLayout(this); local
81 root.setOrientation(LinearLayout.VERTICAL);
87 addLabelToRoot(root, "Prescaled bitmap in drawable");
88 addChildToRoot(root, layout);
94 addLabelToRoot(root, "Autoscaled bitmap in drawable");
95 addChildToRoot(root, layout);
101 addLabelToRoot(root, "Prescaled resource drawable");
102 addChildToRoot(root, layout);
105 addLabelToRoot(root, "Inflated layout");
106 addChildToRoot(root, layout)
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertFileList.java 79 PreferenceScreen root = getPreferenceScreen(); local
80 for (int i = 0, n = root.getPreferenceCount(); i < n; i++) {
81 root.getPreference(i).setEnabled(enabled);
109 PreferenceScreen root = getPreferenceScreen(); local
110 root.removeAll();
122 root.addPreference(pref);
147 File root = Environment.getExternalStorageDirectory(); local
148 mRootMonitor = new FileObserver(root.getPath()) {
155 File download = new File(root, DOWNLOAD_DIR);
  /packages/apps/Tag/src/com/android/apps/tag/record/
ImageRecord.java 82 ViewGroup root = (ViewGroup) inflater.inflate( local
94 ((ImageView) root.findViewById(R.id.image)).setImageDrawable(info.loadIcon(pm));
95 ((TextView) root.findViewById(R.id.text)).setText(context.getString(R.string.photo));
97 root.setTag(new ImageRecordEditInfo());
98 return root;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParserTest.java 96 ElementDescriptor rootDescriptor = new ElementDescriptor("root", "", "", "",
150 MockXmlNode root = new MockXmlNode(null /* namespace */, "root", Node.ELEMENT_NODE, local
154 root.setPrefix(SdkConstants.NS_RESOURCES, "android");
157 ui.loadFromXmlNode(root);
  /bootable/diskinstaller/libdiskconfig/
diskconfig.c 93 load_partitions(cnode *root, struct disk_info *dinfo)
98 for (partnode = root->first_child; partnode; partnode = partnode->next) {
143 cnode *root = config_node("", ""); local
159 config_load_file(root, fn);
160 if (root->first_child == NULL) {
165 if (!(devroot = config_find(root, "device"))) {
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletFactory.java 54 RootDoc root = getRootDoc(visibility, sourcepath, packageNames); local
56 IApi api = converter.convertDocletRoot(name, root, visibility,
117 RootDocImpl root = comp.getRootDocImpl(docLocale, encoding, showAccess, local
121 return root;
  /development/ide/emacs/
android-host.el 33 ;; C-x a a android-adb-root
56 (define-key map (kbd "a") 'android-adb-root)
73 (defun android-adb-root ()
74 "Execute 'adb root'."
76 (android-adb-command "root"))
86 ;; Always force root and remount, this way sync always works even on
88 (android-adb-root)
  /external/clearsilver/java-jni/
HDF.java 15 HDF root; // If this is a child HDF node, points at the root node of field in class:HDF
16 // the tree. For root nodes this is null. A child node needs
17 // to hold a reference on the root to prevent the root from
26 root = null;
34 this.root = (parent.root != null) ? parent.root : parent;
41 // Only root nodes have ownership of the C HDF pointer, so only a roo
    [all...]
  /external/elfutils/libebl/
eblwstrtab.c 58 struct Ebl_WStrent *root; member in struct:Ebl_WStrtab
228 sep = searchstring (&st->root, newstr);
335 copystrings (st->root, &endp, &copylen);
  /external/emma/core/java12/com/vladium/emma/report/
ReportDataModel.java 51 final AllItem root = new AllItem (); local
64 packageItem = new PackageItem (root, packageName, packageVMName);
67 root.addChild (packageItem);
126 view = new ReportDataView (root);
162 ReportDataView (final IItem root)
164 m_root = root;
  /external/freetype/include/freetype/
ftglyph.h 96 /* The root glyph structure contains a given glyph image plus its */
140 /* root :: The root @FT_Glyph fields. */
162 FT_GlyphRec root; member in struct:FT_BitmapGlyphRec_
192 /* root :: The root @FT_Glyph fields. */
210 FT_GlyphRec root; member in struct:FT_OutlineGlyphRec_
    [all...]
ftrender.h 127 /* root :: The root @FT_Module_Class fields. */
146 FT_Module_Class root; member in struct:FT_Renderer_Class_
  /external/freetype/src/cff/
cffobjs.h 57 FT_SizeRec root; member in struct:CFF_SizeRec_
73 FT_GlyphSlotRec root; member in struct:CFF_GlyphSlotRec_
119 FT_DriverRec root; member in struct:CFF_DriverRec_
  /external/freetype/src/sfnt/
sfdriver.c 170 FT_Face root = &face->root; local
174 if ( root->num_glyphs < 0 )
176 else if ( ( FT_ULong ) root->num_glyphs < FT_UINT_MAX )
177 max_gid = ( FT_UInt ) root->num_glyphs;
180 FT_UINT_MAX, root->num_glyphs ));
249 FT_Memory memory = face->root.memory;
291 FT_Memory memory = face->root.memory;
  /external/libvpx/vpx_mem/memory_manager/include/
cavl_if.h 5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
86 AVL_HANDLE root; member in struct:__anon5325
174 ** take the less branch. bit 0 gives branch from root, and
181 /* Handles of nodes in path from root to current node (returned by *). */
  /external/webkit/JavaScriptCore/wtf/
TCPageMap.h 104 // Put 32 entries in the root and (2^BITS)/32 entries in each leaf.
210 Node* root_; // Root of radix tree
277 Node* root = reader(root_); local
279 if (!root->ptrs[i])
282 Node* n = reader(root->ptrs[i]);
298 Node* root = reader(root_); local
300 if (!root->ptrs[i])
303 visitor.visit(root->ptrs[i], sizeof(Node));
304 Node* n = reader(root->ptrs[i]);

Completed in 1284 milliseconds

1 2 34 5 6 7 8 91011>>